Guest User

Untitled

a guest
May 16th, 2022
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. ### Kernel boot and litesata rudimentary test excerpt:
  2.  
  3. [...]
  4. [ 0.900884] Unpacking initramfs...
  5. [ 0.994106] workingset: timestamp_bits=46 max_order=17 bucket_order=0
  6. [ 1.254942] LiteX SoC Controller driver initialized
  7. [ 1.805418] Initramfs unpacking failed: invalid magic at start of compressed archive
  8. [ 1.844788] Freeing initrd memory: 788K
  9. [ 2.758196] 12008000.serial: ttyLXU0 at MMIO 0x0 (irq = 0, base_baud = 0) is a liteuart
  10. [ 2.766072] printk: console [liteuart0] enabled
  11. [ 2.766072] printk: console [liteuart0] enabled
  12. [ 2.774550] printk: bootconsole [liteuart0] disabled
  13. [ 2.774550] printk: bootconsole [liteuart0] disabled
  14. [ 3.003314] litesata 12003800.litesata: litesata: 238475 kb disk
  15. [ 3.124218] loop: module loaded
  16. [ 3.440358] liteeth 12001000.mac eth0: irq 2 slots: tx 2 rx 2 size 2048
  17. [ 3.493450] litex-mmc 12006800.mmc: LiteX MMC controller initialized.
  18. [ 3.520210] NET: Registered PF_INET6 protocol family
  19. [ 3.558010] Segment Routing with IPv6
  20. [ 3.561182] In-situ OAM (IOAM) with IPv6
  21. [ 3.566570] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
  22. [ 3.586076] NET: Registered PF_PACKET protocol family
  23. [ 3.706732] Freeing unused kernel image (initmem) memory: 2128K
  24. [ 3.744814] Run /init as init process
  25. [ 3.747376] with arguments:
  26. [ 3.750306] /init
  27. [ 3.753900] with environment:
  28. [ 3.755894] HOME=/
  29. [ 3.758220] TERM=linux
  30. [ 4.148858] mmc0: new SDHC card at address d67d
  31. [ 4.167856] mmcblk0: mmc0:d67d SU32G 29.7 GiB
  32. [ 4.194064] mmcblk0: p1 p2
  33. # dd if=/dev/litesata of= - bs=512 count=100 | md5sum
  34. d41d8cd98f00b204e9800998ecf8427e -
  35. #
  36.  
  37.  
  38.  
  39. ### Same `dd` test (on same sata disk) performed on my workstation:
  40.  
  41. [root@glsdev ~]# cat /proc/partitions
  42. major minor #blocks name
  43.  
  44. [...]
  45. 8 48 244198584 sdd
  46. 8 49 1048576 sdd1
  47. 8 50 243148984 sdd2
  48. [root@glsdev ~]# dd if=/dev/sdd of=- bs=512 count=100 | md5sum
  49. d41d8cd98f00b204e9800998ecf8427e -
  50. 100+0 records in
  51. 100+0 records out
  52. 51200 bytes (51 kB, 50 KiB) copied, 0.0111647 s, 4.6 MB/s
  53. [root@glsdev ~]#
  54.  
  55.  
  56.  
  57. ### Note I'm getting the same md5sum, which means I'm probably reading the same data :)
Add Comment
Please, Sign In to add comment