Welcome! Log In Create A New Profile

Advanced

Goflex net usb boot not working when hdd attached

Posted by ghettonas 
Goflex net usb boot not working when hdd attached
April 20, 2020 11:51AM
First off I want to thank you bodhi for providing us with this great project of yours. I am still in love with my goflex net, now running debian buster and uboot 2017 thanks to your excellent work.

I just have a minor issue with my setup. The box runs from an USB drive, but when I power it up with an hdd attached it doesn't work. The kernel is missing the right init params. Maybe there is aproblem with the device enumeration. The thumb drive uses one ext3 partition labels rootfs and the hdd is labeled data using ext4 as far as I remember.
The uboot is version 2017 with your environment defaults plus some minor changes.

Fw_printenv:
arcNumber=3089
bootcmd_exec=run load_uimage; if run load_initrd; then if run load_dtb; then bootm $load_uimage_addr $load_initrd_addr $load_dtb_addr; else bootm $load_uimage_addr $load_initrd_addr; fi; else if run load_dtb; then bootm $load_uimage_addr - $load_dtb_addr; else bootm $load_uimage_addr; fi; fi
bootcmd=run bootcmd_uenv; run scan_disk; run set_bootargs; run bootcmd_exec
bootcmd_uenv=run uenv_load; if test $uenv_loaded -eq 1; then run uenv_import; fi; sleep 3
bootdelay=10
bootdev=usb
device=0:1
devices=usb ide mmc
disks=0 1 2 3
dtb_file=/boot/dts/kirkwood-goflexnet.dtb
ethact=egiga0
ethaddr=00:10:75:26:6D:3A
if_netconsole=ping $serverip
ipaddr=192.168.1.111
led_error=orange blinking
led_exit=green off
led_init=green blinking
load_dtb_addr=0x1c00000
load_dtb=echo loading DTB $dtb_file ...; load $bootdev $device $load_dtb_addr $dtb_file
load_initrd_addr=0x1100000
load_initrd=echo loading uInitrd ...; load $bootdev $device $load_initrd_addr /boot/uInitrd
load_uimage_addr=0x800000
load_uimage=echo loading uImage ...; load $bootdev $device $load_uimage_addr /boot/uImage
mainlineLinux=yes
mtdids=nand0=orion_nand
mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
partition=nand0,2
preboot_nc=setenv nc_ready 0; for pingstat in 1 2 3 4 5; do; sleep 1; if run if_netconsole; then setenv nc_ready 1; fi; done; if test $nc_ready -eq 1; then run start_netconsole; fi
preboot=run preboot_nc
scan_disk=echo running scan_disk ...; scan_done=0; setenv scan_usb "usb start";  setenv scan_ide "ide reset";  setenv scan_mmc "mmc rescan"; for dev in $devices; do if test $scan_done -eq 0; then echo Scan device $dev; run scan_$dev; for disknum in $disks; do if test $scan_done -eq 0; then echo device $dev $disknum:1; if load $dev $disknum:1 $load_uimage_addr /boot/uImage 1; then scan_done=1; echo Found bootable drive on $dev $disknum; setenv device $disknum:1; setenv bootdev $dev; fi; fi; done; fi; done
serverip=192.168.1.101
set_bootargs=setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 $mtdparts $custom_params
start_netconsole=setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version;
stderr=serial
stdin=serial
stdout=serial
uenv_addr=0x810000
uenv_import=echo importing envs ...; env import -t $uenv_addr $filesize
uenv_init_devices=echo Initializing devices...; setenv init_usb "usb start";  setenv init_ide "ide reset";  setenv init_mmc "mmc rescan"; for devtype in $devices; do run init_$devtype; done
uenv_load=run uenv_init_devices; setenv uenv_loaded 0; for devtype in $devices; do for disknum in $disks; do if test $uenv_loaded -eq 0; then setenv device_type $devtype; setenv disk_number $disknum; run uenv_read; fi; done; done;
uenv_read=echo Loading envs from $device_type $disk_number...; if load $device_type  $disk_number:1 $uenv_addr /boot/uEnv.txt; then setenv uenv_loaded 1; echo ... envs loaded; fi
usb_ready_retry=15
usb_root=LABEL=rootfs

Without hdd attached:
U-Boot 2017.07-tld-1 (Sep 05 2017 - 00:17:19 -0700)
Seagate GoFlex Net

SoC:   Kirkwood 88F6281_A1
DRAM:  128 MiB
WARNING: Caches not enabled
NAND:  256 MiB
In:    serial
Out:   serial
Err:   serial
Net:   egiga0
88E1116 Initialized on egiga0
Using egiga0 device
host 192.168.1.101 is alive
Using egiga0 device
host 192.168.1.101 is alive
Using egiga0 device
host 192.168.1.101 is alive
Using egiga0 device
host 192.168.1.101 is alive
Using egiga0 device
host 192.168.1.101 is alive
Uncompressing Linux... done, booting the kernel.
[    0.000000][    T0] Booting Linux on physical CPU 0x0
[    0.000000][    T0] Linux version 5.2.9-kirkwood-tld-1 (root@tldDebian) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1)) #1 PREEMPT Sat Aug 17 15:00:56 PDT 2019
[    0.000000][    T0] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f
[    0.000000][    T0] CPU: VIVT data cache, VIVT instruction cache
[    0.000000][    T0] OF: fdt: Machine model: Seagate GoFlex Net
[    0.000000][    T0] printk: bootconsole [earlycon0] enabled
[    0.000000][    T0] Memory policy: Data cache writeback
[    0.000000][    T0] Built 1 zonelists, mobility grouping on.  Total pages: 32512
[    0.000000][    T0] Kernel command line: console=ttyS0,115200n8 earlyprintk root=/dev/sda1 rootdelay=10
[    0.000000][    T0] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000][    T0] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000][    T0] Memory: 114320K/131072K available (9216K kernel code, 868K rwdata, 3400K rodata, 1024K init, 301K bss, 16752K reserved, 0K cma-reserved)
[    0.000000][    T0] random: get_random_u32 called from cache_alloc_refill+0x38c/0x928 with crng_init=0
[    0.000000][    T0] rcu: Preemptible hierarchical RCU implementation.
[    0.000000][    T0] 	Tasks RCU enabled.
[    0.000000][    T0] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.000000][    T0] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000][    T0] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
[    0.000008][    T0] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns
[    0.008602][    T0] Switching to timer-based delay loop, resolution 5ns
[    0.015987][    T0] Console: colour dummy device 80x30
[    0.021236][    T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=2000000)
[    0.032560][    T0] pid_max: default: 32768 minimum: 301
[    0.038267][    T0] LSM: Security Framework initializing
[    0.043831][    T0] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.051238][    T0] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.059915][    T0] *** VALIDATE proc ***
[    0.064205][    T0] *** VALIDATE cgroup1 ***
[    0.068505][    T0] *** VALIDATE cgroup2 ***
[    0.072930][    T0] CPU: Testing write buffer coherency: ok
[    0.080325][    T1] Setting up static identity map for 0x100000 - 0x100058
[    0.087522][    T1] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3
[    0.093740][    T1] rcu: Hierarchical SRCU implementation.
[    0.102614][    T1] devtmpfs: initialized
[    0.112296][    T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.122962][    T1] futex hash table entries: 256 (order: -1, 3072 bytes)
[    0.130118][    T1] xor: measuring software checksum speed
[    0.228627][    T1]    arm4regs  :  1083.600 MB/sec
[    0.328629][    T1]    8regs     :   650.400 MB/sec
[    0.428627][    T1]    32regs    :   945.600 MB/sec
[    0.433531][    T1] xor: using function: arm4regs (1083.600 MB/sec)
[    0.439867][    T1] prandom: seed boundary self test passed
[    0.449698][    T1] prandom: 100 self tests passed
[    0.454519][    T1] pinctrl core: initialized pinctrl subsystem
[    0.461939][    T1] NET: Registered protocol family 16
[    0.467670][    T1] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.476147][    T1] audit: initializing netlink subsys (disabled)
[    0.483561][   T14] audit: type=2000 audit(0.470:1): state=initialized audit_enabled=0 res=1
[    0.492194][    T1] cpuidle: using governor ladder
[    0.497089][    T1] cpuidle: using governor menu
[    0.502313][    T1] Feroceon L2: Enabling L2
[    0.506640][    T1] Feroceon L2: Cache support initialised.
[    0.517950][    T1] No ATAGs?
[    2.568609][    C0] random: fast init done
[    6.483239][   T71] alg: No test for lzo-rle (lzo-rle-generic)
[    6.489803][   T73] alg: No test for lzo-rle (lzo-rle-scomp)
[    6.668939][    T1] raid6: int32x8  gen()   127 MB/s
[    6.839035][    T1] raid6: int32x8  xor()    86 MB/s
[    7.008863][    T1] raid6: int32x4  gen()   129 MB/s
[    7.178888][    T1] raid6: int32x4  xor()    83 MB/s
[    7.348824][    T1] raid6: int32x2  gen()   132 MB/s
[    7.518920][    T1] raid6: int32x2  xor()    94 MB/s
[    7.689169][    T1] raid6: int32x1  gen()   100 MB/s
[    7.858888][    T1] raid6: int32x1  xor()    68 MB/s
[    7.863873][    T1] raid6: using algorithm int32x2 gen() 132 MB/s
[    7.870011][    T1] raid6: .... xor() 94 MB/s, rmw enabled
[    7.875523][    T1] raid6: using intx1 recovery algorithm
[    7.881221][    T1] vgaarb: loaded
[    7.885147][    T1] SCSI subsystem initialized
[    7.890148][    T1] usbcore: registered new interface driver usbfs
[    7.896416][    T1] usbcore: registered new interface driver hub
[    7.902573][    T1] usbcore: registered new device driver usb
[    7.908519][    T1] pps_core: LinuxPPS API ver. 1 registered
[    7.914228][    T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    7.924139][    T1] PTP clock support registered
[    7.930130][    T1] clocksource: Switched to clocksource orion_clocksource
[    8.974451][    T1] VFS: Disk quotas dquot_6.6.0
[    8.979178][    T1] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    8.996831][    T1] NET: Registered protocol family 2
[    9.002798][    T1] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes)
[    9.011289][    T1] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[    9.018991][    T1] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
[    9.026133][    T1] TCP: Hash tables configured (established 1024 bind 1024)
[    9.033356][    T1] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    9.039929][    T1] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    9.047178][    T1] NET: Registered protocol family 1
[    9.052940][    T1] RPC: Registered named UNIX socket transport module.
[    9.059586][    T1] RPC: Registered udp transport module.
[    9.065095][    T1] RPC: Registered tcp transport module.
[    9.070543][    T1] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    9.077712][    T1] PCI: CLS 0 bytes, default 32
[    9.082775][    T1] NetWinder Floating Point Emulator V0.97 (double precision)
[    9.091211][    T1] Initialise system trusted keyrings
[    9.096410][    T1] Key type blacklist registered
[    9.101411][    T1] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[    9.108674][    T1] zbud: loaded
[    9.113085][    T1] NFS: Registering the id_resolver key type
[    9.118879][    T1] Key type id_resolver registered
[    9.123898][    T1] Key type id_legacy registered
[    9.128636][    T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    9.136093][    T1] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    9.143489][    T1] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    9.151538][    T1] fuse: init (API version 7.31)
[    9.156648][    T1] orangefs_debugfs_init: called with debug mask: :none: :0:
[    9.164029][    T1] orangefs_init: module version upstream loaded
[    9.170173][    T1] SGI XFS with ACLs, security attributes, realtime, scrub, no debug enabled
[    9.181921][    T1] async_tx: api initialized (async)
[    9.187008][    T1] Key type asymmetric registered
[    9.191887][    T1] Asymmetric key parser 'x509' registered
[    9.197535][    T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    9.207133][    T1] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver
[    9.217309][    T1] mv_xor f1060800.xor: Marvell shared XOR driver
[    9.280967][    T1] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    9.291135][    T1] mv_xor f1060900.xor: Marvell shared XOR driver
[    9.350972][    T1] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    9.361304][    T1] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[    9.369620][    T1] printk: console [ttyS0] disabled
[    9.374754][    T1] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 25, base_baud = 12500000) is a 16550A
[    9.384549][    T1] printk: console [ttyS0] enabled
[    9.384549][    T1] printk: console [ttyS0] enabled
[    9.394387][    T1] printk: bootconsole [earlycon0] disabled
[    9.394387][    T1] printk: bootconsole [earlycon0] disabled
[    9.413563][    T1] loop: module loaded
[    9.417994][    T1] sata_mv f1080000.sata: slots 32 ports 2
[    9.426468][    T1] scsi host0: sata_mv
[    9.430970][    T1] scsi host1: sata_mv
[    9.435141][    T1] ata1: SATA max UDMA/133 irq 32
[    9.439956][    T1] ata2: SATA max UDMA/133 irq 32
[    9.446027][    T1] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xda
[    9.453215][    T1] nand: Micron MT29F2G08AAD
[    9.457597][    T1] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[    9.465934][    T1] Scanning device for bad blocks
[    9.531454][    T1] Bad eraseblock 569 at 0x000004720000
[    9.544627][    T1] Bad eraseblock 643 at 0x000005060000
[    9.556432][    T1] Bad eraseblock 704 at 0x000005800000
[    9.705004][    T1] 4 fixed-partitions partitions found on MTD device orion_nand
[    9.712480][    T1] Creating 4 MTD partitions on "orion_nand":
[    9.718378][    T1] 0x000000000000-0x000000100000 : "u-boot"
[    9.725441][    T1] 0x000000100000-0x000000500000 : "uImage"
[    9.732487][    T1] 0x000000500000-0x000002500000 : "pogoplug"
[    9.739748][    T1] 0x000002500000-0x00000fd00000 : "root"
[    9.748526][    T1] libphy: Fixed MDIO Bus: probed
[    9.754225][    T1] libphy: orion_mdio_bus: probed
[    9.760402][    T1] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
[    9.768446][    T1] mv643xx_eth_port mv643xx_eth_port.0: DMA mask not set
[    9.775349][  T112] ata1: SATA link down (SStatus 0 SControl F300)
[   10.121719][  T114] ata2: SATA link down (SStatus 0 SControl F300)
[   10.500779][    T1] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:10:75:26:6d:3a
[   10.510389][    T1] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   10.517688][    T1] ehci-pci: EHCI PCI platform driver
[   10.522938][    T1] ehci-orion: EHCI orion driver
[   10.527865][    T1] orion-ehci f1050000.ehci: EHCI Host Controller
[   10.534136][    T1] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1
[   10.542723][    T1] orion-ehci f1050000.ehci: irq 29, io mem 0xf1050000
[   10.570171][    T1] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00
[   10.577192][    T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[   10.586223][    T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   10.594200][    T1] usb usb1: Product: EHCI Host Controller
[   10.599804][    T1] usb usb1: Manufacturer: Linux 5.2.9-kirkwood-tld-1 ehci_hcd
[   10.607166][    T1] usb usb1: SerialNumber: f1050000.ehci
[   10.613208][    T1] hub 1-0:1.0: USB hub found
[   10.617718][    T1] hub 1-0:1.0: 1 port detected
[   10.623134][    T1] usbcore: registered new interface driver usb-storage
[   10.630304][    T1] mousedev: PS/2 mouse device common for all mice
[   10.990167][   T15] usb 1-1: new high-speed USB device number 2 using orion-ehci
[   11.195602][   T15] usb 1-1: New USB device found, idVendor=18a5, idProduct=0243, bcdDevice=11.00
[   11.204548][   T15] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.212443][   T15] usb 1-1: Product: STORE N GO
[   11.217101][   T15] usb 1-1: Manufacturer: Verbatim
[   11.222022][   T15] usb 1-1: SerialNumber: AAPL9J8T502LGI6T
[   11.229039][   T15] usb-storage 1-1:1.0: USB Mass Storage device detected
[   11.236330][   T15] scsi host2: usb-storage 1-1:1.0
[   11.690166][    T1] rtc-mv f1010300.rtc: internal RTC not ticking
[   11.696458][    T1] i2c /dev entries driver
[   11.701334][    T1] device-mapper: uevent: version 1.0.3
[   11.706964][    T1] device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@redhat.com
[   11.716599][    T1] device-mapper: multipath round-robin: version 1.2.0 loaded
[   11.723935][    T1] device-mapper: multipath queue-length: version 0.2.0 loaded
[   11.731330][    T1] device-mapper: multipath service-time: version 0.3.0 loaded
[   11.738745][    T1] device-mapper: dm-log-userspace: version 1.3.0 loaded
[   11.745594][    T1] device-mapper: raid: Loading target version 1.14.0
[   11.754386][    T1] hidraw: raw HID events driver (C) Jiri Kosina
[   11.760903][    T1] drop_monitor: Initializing network drop monitor service
[   11.768212][    T1] NET: Registered protocol family 17
[   11.773655][    T1] Key type dns_resolver registered
[   11.779471][    T1] registered taskstats version 1
[   11.784327][    T1] Loading compiled-in X.509 certificates
[   11.789913][    T1] zswap: loaded using pool lzo/zbud
[   11.810277][    T1] Key type big_key registered
[   11.818203][    T1] Key type encrypted registered
[   11.825025][    T1] hctosys: unable to open rtc device (rtc0)
[   11.831413][    T1] Waiting 10 sec before mounting root device...
[   12.394088][   T23] scsi 2:0:0:0: Direct-Access     Verbatim STORE N GO       1100 PQ: 0 ANSI: 6
[   12.404905][    T7] sd 2:0:0:0: [sda] 31285248 512-byte logical blocks: (16.0 GB/14.9 GiB)
[   12.414137][    T7] sd 2:0:0:0: [sda] Write Protect is off
[   12.420513][    T7] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   12.436520][    T7]  sda: sda1
[   12.443638][    T7] sd 2:0:0:0: [sda] Attached SCSI removable disk
[   22.250230][    T1] md: Waiting for all devices to be available before autodetect
[   22.257752][    T1] md: If you don't use raid, use raid=noautodetect
[   22.264962][    T1] md: Autodetecting RAID arrays.
[   22.269777][    T1] md: autorun ...
[   22.273349][    T1] md: ... autorun DONE.
[   22.278911][    T1] EXT4-fs (sda1): mounting ext3 file system using the ext4 subsystem
[   22.288579][    T1] EXT4-fs (sda1): INFO: recovery required on readonly filesystem
[   22.296290][    T1] EXT4-fs (sda1): write access will be enabled during recovery
[   22.415370][    T1] EXT4-fs (sda1): recovery complete
[   22.432142][    T1] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   22.440637][    T1] VFS: Mounted root (ext3 filesystem) readonly on device 8:1.
[   22.466837][    T1] devtmpfs: mounted
[   22.473597][    T1] Freeing unused kernel memory: 1024K
[   22.479431][    T1] Checked W+X mappings: passed, no W+X pages found
[   22.485861][    T1] Run /sbin/init as init process
INIT: version 2.93 booting
[info] Using makefile-style concurrent boot in runlevel S.
ERROR: could not open /proc/stat: No such file or directory
findfs: unable to resolve 'LABEL=rootfs'
[ ok ] Starting hotplug events dispatcher: systemd-udevd.
[ ok ] Synthesizing the initial hotplug events (subsystems)...done.
[ ok ] Synthesizing the initial hotplug events (devices)...[   25.083113][  T299] systemd-udevd[299]: Using default interface naming scheme 'v240'.
done.
[....] Waiting for /dev to be fully populated...[   25.278413][  T299] systemd-udevd[299]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
[   25.382296][  T318] watchdog: f1020300.watchdog-timer: driver supplied timeout (4294967295) out of range
[   25.483247][  T318] watchdog: f1020300.watchdog-timer: falling back to default timeout (21)
[   25.554411][  T295] usbcore: registered new interface driver uas
[   25.641955][  T318] orion_wdt: Initial timeout 21 sec
[   25.750086][  T300] sd 2:0:0:0: Attached scsi generic sg0 type 0
[   25.834189][  T319] marvell-cesa f1030000.crypto: CESA device successfully registered
[   25.913577][  T319] systemd-udevd[319]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
done.
[ ok ] Setting hostname to 'nas'...done.
[warn] Not activating swap on swapfile. ... (warning).
[   27.180943][    C0] random: crng init done
[   27.238868][  T523] EXT4-fs (sda1): re-mounted. Opts: (null)
[....] Will now check root file system:fsck from util-linux 2.33.1
[/sbin/fsck.ext3 (1) -- /] fsck.ext3 -y -C0 /dev/sda1 
e2fsck 1.44.5 (15-Dec-2018)
rootfs: clean, 41035/979200 files, 517130/3910400 blocks
. ok 
[   27.587404][  T549] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[info] Will now check all file systems.
fsck from util-linux 2.33.1
Checking all file systems.
LABEL=rootfs is mounted
[ ok ] Done checking file systems. A log is being saved in /var/log/fsck/checkfs if that location is writable..
[ ok ] Cleaning up temporary files....
[....] Will now mount local filesystems:mount: /mnt/hdd: can't find UUID=795705e2-65a5-4c47-afed-a8acdd58978f.
mount: /mnt/hdd1: can't find UUID=6c83b6c1-17b3-412d-b6e4-ac78a1984c64.
 failed!
[....] Will now activate swapfile swap:swapon: /swapfile: found signature [pagesize=4096, signature=swap]
swapon: /swapfile: pagesize=4096, swapsize=536870912, devsize=536870912
swapon /swapfile
[   30.200181][  T858] Adding 524284k swap on /swapfile.  Priority:-2 extents:18 across:2748864k FS
done.
[ ok ] Checking minimum space in /tmp...done.
[ ok ] Cleaning up temporary files....
[ ok ] Starting Setting kernel variables: sysctl.
[ ok ] Initializing random number generator...done.
[....] Configuring network interfaces...Internet Systems Consortium DHCP Client 4.4.1
Copyright 2004-2018 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/eth0/00:10:75:26:6d:3a
Sending on   LPF/eth0/00:10:75:26:6d:3a
Sending on   Socket/fallback
DHCPREQUEST for 192.168.1.111 on eth0 to 255.255.255.255 port 67
[   35.381689][    C0] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 1000 Mb/s, full duplex, flow control disabled
DHCPREQUEST for 192.168.1.111 on eth0 to 255.255.255.255 port 67
DHCPACK of 192.168.1.111 from 192.168.1.1
bound to 192.168.1.111 -- renewal in 857 seconds.
[   39.639377][ T1085] NET: Registered protocol family 10
[   39.646542][ T1085] Segment Routing with IPv6
done.
[ ok ] Starting RPC port mapper daemon: rpcbind.
[ ok ] Starting NFS common utilities: statd idmapd.
[ ok ] Cleaning up temporary files....
INIT: Entering runlevel: 2
[info] Using makefile-style concurrent boot in runlevel 2.
[....] Starting busybox' syslogd implementation : syslogdStarting /sbin/syslogd...
1303 (syslogd)
. ok 
[....] Starting busybox' klogd implementation : klogdStarting /sbin/klogd...
1330 (klogd)
. ok 
[ ok ] Starting system message bus: dbus.
[ ok ] Starting Avahi mDNS/DNS-SD Daemon: avahi-daemon.
[ ok ] Starting NFS common utilities: statd idmapd.
[ ok ] Exporting directories for NFS kernel daemon....
[....] Starting NFS kernel daemon: nfsd[   46.288813][ T1470] NFSD: Using UMH upcall client tracking operations.
[   46.295499][ T1470] NFSD: starting 90-second grace period (net f000001c)
[ ok td.
[FAIL] Starting nginx: nginx failed!
[ ok ] Starting NTP server: ntpd.
[....] Starting PHP 7.3 FastCGI Process Manager: php-fpm7.3mkdir: created directory '/run/php'
mode of '/run/php' retained as 0755 (rwxr-xr-x)
changed ownership of '/run/php' from root:root to www-data:www-data
. ok 
[....] Starting ftp server: proftpd1970-01-01 01:00:49,381 nas proftpd[1601]: processing configuration directory '/etc/proftpd/conf.d/'
. ok 
[ ok ] Starting OpenBSD Secure Shell server: sshd.
[ ok ] Running local boot scripts (/etc/rc.local).
[FAIL] startpar: service(s) returned failure: nginx ... failed!

Debian GNU/Linux 10 nas ttyS0

With hdd attached
U-Boot 2017.07-tld-1 (Sep 05 2017 - 00:17:19 -0700)
Seagate GoFlex Net

SoC:   Kirkwood 88F6281_A1
DRAM:  128 MiB
WARNING: Caches not enabled
NAND:  256 MiB
In:    serial
Out:   serial
Err:   serial
Net:   egiga0
88E1116 Initialized on egiga0
Using egiga0 device
host 192.168.1.101 is alive
Using egiga0 device
host 192.168.1.101 is alive
Using egiga0 device
host 192.168.1.101 is alive
Using egiga0 device
host 192.168.1.101 is alive
Using egiga0 device
host 192.168.1.101 is alive
Uncompressing Linux... done, booting the kernel.
[    0.000000][    T0] Booting Linux on physical CPU 0x0
[    0.000000][    T0] Linux version 5.2.9-kirkwood-tld-1 (root@tldDebian) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1)) #1 PREEMPT Sat Aug 17 15:00:56 PDT 2019
[    0.000000][    T0] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f
[    0.000000][    T0] CPU: VIVT data cache, VIVT instruction cache
[    0.000000][    T0] OF: fdt: Machine model: Seagate GoFlex Net
[    0.000000][    T0] printk: bootconsole [earlycon0] enabled
[    0.000000][    T0] Memory policy: Data cache writeback
[    0.000000][    T0] Built 1 zonelists, mobility grouping on.  Total pages: 32512
[    0.000000][    T0] Kernel command line: console=ttyS0,115200n8 earlyprintk root=/dev/sda1 rootdelay=10
[    0.000000][    T0] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000][    T0] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000][    T0] Memory: 114320K/131072K available (9216K kernel code, 868K rwdata, 3400K rodata, 1024K init, 301K bss, 16752K reserved, 0K cma-reserved)
[    0.000000][    T0] random: get_random_u32 called from cache_alloc_refill+0x38c/0x928 with crng_init=0
[    0.000000][    T0] rcu: Preemptible hierarchical RCU implementation.
[    0.000000][    T0] 	Tasks RCU enabled.
[    0.000000][    T0] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.000000][    T0] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000][    T0] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
[    0.000008][    T0] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns
[    0.008602][    T0] Switching to timer-based delay loop, resolution 5ns
[    0.015987][    T0] Console: colour dummy device 80x30
[    0.021236][    T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=2000000)
[    0.032560][    T0] pid_max: default: 32768 minimum: 301
[    0.038267][    T0] LSM: Security Framework initializing
[    0.043831][    T0] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.051238][    T0] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.059916][    T0] *** VALIDATE proc ***
[    0.064205][    T0] *** VALIDATE cgroup1 ***
[    0.068505][    T0] *** VALIDATE cgroup2 ***
[    0.072930][    T0] CPU: Testing write buffer coherency: ok
[    0.080324][    T1] Setting up static identity map for 0x100000 - 0x100058
[    0.087522][    T1] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3
[    0.093739][    T1] rcu: Hierarchical SRCU implementation.
[    0.102613][    T1] devtmpfs: initialized
[    0.112282][    T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.122953][    T1] futex hash table entries: 256 (order: -1, 3072 bytes)
[    0.130108][    T1] xor: measuring software checksum speed
[    0.228627][    T1]    arm4regs  :  1083.600 MB/sec
[    0.328627][    T1]    8regs     :   650.400 MB/sec
[    0.428626][    T1]    32regs    :   945.600 MB/sec
[    0.433540][    T1] xor: using function: arm4regs (1083.600 MB/sec)
[    0.439873][    T1] prandom: seed boundary self test passed
[    0.449698][    T1] prandom: 100 self tests passed
[    0.454519][    T1] pinctrl core: initialized pinctrl subsystem
[    0.461937][    T1] NET: Registered protocol family 16
[    0.467668][    T1] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.476147][    T1] audit: initializing netlink subsys (disabled)
[    0.483569][   T14] audit: type=2000 audit(0.470:1): state=initialized audit_enabled=0 res=1
[    0.492203][    T1] cpuidle: using governor ladder
[    0.497097][    T1] cpuidle: using governor menu
[    0.502321][    T1] Feroceon L2: Enabling L2
[    0.506649][    T1] Feroceon L2: Cache support initialised.
[    0.517958][    T1] No ATAGs?
[    2.568609][    C0] random: fast init done
[    6.483561][   T71] alg: No test for lzo-rle (lzo-rle-generic)
[    6.490121][   T73] alg: No test for lzo-rle (lzo-rle-scomp)
[    6.668943][    T1] raid6: int32x8  gen()   127 MB/s
[    6.839037][    T1] raid6: int32x8  xor()    86 MB/s
[    7.008985][    T1] raid6: int32x4  gen()   129 MB/s
[    7.178889][    T1] raid6: int32x4  xor()    83 MB/s
[    7.348787][    T1] raid6: int32x2  gen()   132 MB/s
[    7.518917][    T1] raid6: int32x2  xor()    94 MB/s
[    7.689170][    T1] raid6: int32x1  gen()   100 MB/s
[    7.858888][    T1] raid6: int32x1  xor()    68 MB/s
[    7.863873][    T1] raid6: using algorithm int32x2 gen() 132 MB/s
[    7.870011][    T1] raid6: .... xor() 94 MB/s, rmw enabled
[    7.875523][    T1] raid6: using intx1 recovery algorithm
[    7.881222][    T1] vgaarb: loaded
[    7.885154][    T1] SCSI subsystem initialized
[    7.890157][    T1] usbcore: registered new interface driver usbfs
[    7.896424][    T1] usbcore: registered new interface driver hub
[    7.902583][    T1] usbcore: registered new device driver usb
[    7.908527][    T1] pps_core: LinuxPPS API ver. 1 registered
[    7.914236][    T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    7.924147][    T1] PTP clock support registered
[    7.930142][    T1] clocksource: Switched to clocksource orion_clocksource
[    8.974528][    T1] VFS: Disk quotas dquot_6.6.0
[    8.979248][    T1] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    8.996888][    T1] NET: Registered protocol family 2
[    9.002845][    T1] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes)
[    9.011333][    T1] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[    9.019035][    T1] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
[    9.026176][    T1] TCP: Hash tables configured (established 1024 bind 1024)
[    9.033399][    T1] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    9.039973][    T1] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    9.047222][    T1] NET: Registered protocol family 1
[    9.052985][    T1] RPC: Registered named UNIX socket transport module.
[    9.059629][    T1] RPC: Registered udp transport module.
[    9.065135][    T1] RPC: Registered tcp transport module.
[    9.070578][    T1] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    9.077747][    T1] PCI: CLS 0 bytes, default 32
[    9.082813][    T1] NetWinder Floating Point Emulator V0.97 (double precision)
[    9.091238][    T1] Initialise system trusted keyrings
[    9.096441][    T1] Key type blacklist registered
[    9.101445][    T1] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[    9.108702][    T1] zbud: loaded
[    9.113128][    T1] NFS: Registering the id_resolver key type
[    9.118921][    T1] Key type id_resolver registered
[    9.123932][    T1] Key type id_legacy registered
[    9.128671][    T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    9.136128][    T1] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    9.143524][    T1] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    9.151576][    T1] fuse: init (API version 7.31)
[    9.156683][    T1] orangefs_debugfs_init: called with debug mask: :none: :0:
[    9.164063][    T1] orangefs_init: module version upstream loaded
[    9.170209][    T1] SGI XFS with ACLs, security attributes, realtime, scrub, no debug enabled
[    9.181957][    T1] async_tx: api initialized (async)
[    9.187042][    T1] Key type asymmetric registered
[    9.191923][    T1] Asymmetric key parser 'x509' registered
[    9.197572][    T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    9.207169][    T1] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver
[    9.217347][    T1] mv_xor f1060800.xor: Marvell shared XOR driver
[    9.280989][    T1] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    9.291133][    T1] mv_xor f1060900.xor: Marvell shared XOR driver
[    9.350977][    T1] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    9.361319][    T1] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[    9.369638][    T1] printk: console [ttyS0] disabled
[    9.374772][    T1] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 25, base_baud = 12500000) is a 16550A
[    9.384565][    T1] printk: console [ttyS0] enabled
[    9.384565][    T1] printk: console [ttyS0] enabled
[    9.394406][    T1] printk: bootconsole [earlycon0] disabled
[    9.394406][    T1] printk: bootconsole [earlycon0] disabled
[    9.413597][    T1] loop: module loaded
[    9.418024][    T1] sata_mv f1080000.sata: slots 32 ports 2
[    9.426490][    T1] scsi host0: sata_mv
[    9.430998][    T1] scsi host1: sata_mv
[    9.435169][    T1] ata1: SATA max UDMA/133 irq 32
[    9.439982][    T1] ata2: SATA max UDMA/133 irq 32
[    9.446053][    T1] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xda
[    9.453240][    T1] nand: Micron MT29F2G08AAD
[    9.457623][    T1] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[    9.465960][    T1] Scanning device for bad blocks
[    9.531492][    T1] Bad eraseblock 569 at 0x000004720000
[    9.544684][    T1] Bad eraseblock 643 at 0x000005060000
[    9.556464][    T1] Bad eraseblock 704 at 0x000005800000
[    9.705013][    T1] 4 fixed-partitions partitions found on MTD device orion_nand
[    9.712488][    T1] Creating 4 MTD partitions on "orion_nand":
[    9.718386][    T1] 0x000000000000-0x000000100000 : "u-boot"
[    9.725445][    T1] 0x000000100000-0x000000500000 : "uImage"
[    9.732489][    T1] 0x000000500000-0x000002500000 : "pogoplug"
[    9.739750][    T1] 0x000002500000-0x00000fd00000 : "root"
[    9.748538][    T1] libphy: Fixed MDIO Bus: probed
[    9.754237][    T1] libphy: orion_mdio_bus: probed
[    9.760390][    T1] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
[    9.768434][    T1] mv643xx_eth_port mv643xx_eth_port.0: DMA mask not set
[    9.775341][  T112] ata1: SATA link down (SStatus 0 SControl F300)
[   10.290296][  T114] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl F300)
[   10.301857][  T114] ata2.00: ATA-8: WDC WD20NPVT-00Z2TT0, 01.01A01, max UDMA/133
[   10.309290][  T114] ata2.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[   10.321509][  T114] ata2.00: configured for UDMA/133
[   10.337017][   T23] scsi 1:0:0:0: Direct-Access     ATA      WDC WD20NPVT-00Z 1A01 PQ: 0 ANSI: 5
[   10.346865][    T7] sd 1:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[   10.355738][    T7] sd 1:0:0:0: [sda] 4096-byte physical blocks
[   10.361830][    T7] sd 1:0:0:0: [sda] Write Protect is off
[   10.367474][    T7] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   10.447206][    T7]  sda: sda1
[   10.451857][    T7] sd 1:0:0:0: [sda] Attached SCSI disk
[   10.500804][    T1] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:10:75:26:6d:3a
[   10.510428][    T1] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   10.517706][    T1] ehci-pci: EHCI PCI platform driver
[   10.522956][    T1] ehci-orion: EHCI orion driver
[   10.527897][    T1] orion-ehci f1050000.ehci: EHCI Host Controller
[   10.534164][    T1] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1
[   10.542763][    T1] orion-ehci f1050000.ehci: irq 29, io mem 0xf1050000
[   10.570181][    T1] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00
[   10.577204][    T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[   10.586240][    T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   10.594217][    T1] usb usb1: Product: EHCI Host Controller
[   10.599821][    T1] usb usb1: Manufacturer: Linux 5.2.9-kirkwood-tld-1 ehci_hcd
[   10.607183][    T1] usb usb1: SerialNumber: f1050000.ehci
[   10.613219][    T1] hub 1-0:1.0: USB hub found
[   10.617727][    T1] hub 1-0:1.0: 1 port detected
[   10.623137][    T1] usbcore: registered new interface driver usb-storage
[   10.630307][    T1] mousedev: PS/2 mouse device common for all mice
[   10.990179][   T15] usb 1-1: new high-speed USB device number 2 using orion-ehci
[   11.195890][   T15] usb 1-1: New USB device found, idVendor=18a5, idProduct=0243, bcdDevice=11.00
[   11.204836][   T15] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.212730][   T15] usb 1-1: Product: STORE N GO
[   11.217380][   T15] usb 1-1: Manufacturer: Verbatim
[   11.222300][   T15] usb 1-1: SerialNumber: AAPL9J8T502LGI6T
[   11.229329][   T15] usb-storage 1-1:1.0: USB Mass Storage device detected
[   11.236627][   T15] scsi host2: usb-storage 1-1:1.0
[   11.690177][    T1] rtc-mv f1010300.rtc: internal RTC not ticking
[   11.696473][    T1] i2c /dev entries driver
[   11.701340][    T1] device-mapper: uevent: version 1.0.3
[   11.706962][    T1] device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@redhat.com
[   11.716602][    T1] device-mapper: multipath round-robin: version 1.2.0 loaded
[   11.723934][    T1] device-mapper: multipath queue-length: version 0.2.0 loaded
[   11.731329][    T1] device-mapper: multipath service-time: version 0.3.0 loaded
[   11.738747][    T1] device-mapper: dm-log-userspace: version 1.3.0 loaded
[   11.745596][    T1] device-mapper: raid: Loading target version 1.14.0
[   11.754394][    T1] hidraw: raw HID events driver (C) Jiri Kosina
[   11.760892][    T1] drop_monitor: Initializing network drop monitor service
[   11.768208][    T1] NET: Registered protocol family 17
[   11.773659][    T1] Key type dns_resolver registered
[   11.779488][    T1] registered taskstats version 1
[   11.784336][    T1] Loading compiled-in X.509 certificates
[   11.789922][    T1] zswap: loaded using pool lzo/zbud
[   11.810116][    T1] Key type big_key registered
[   11.818147][    T1] Key type encrypted registered
[   11.824982][    T1] hctosys: unable to open rtc device (rtc0)
[   11.831373][    T1] Waiting 10 sec before mounting root device...
[   12.394748][    T7] scsi 2:0:0:0: Direct-Access     Verbatim STORE N GO       1100 PQ: 0 ANSI: 6
[   12.405566][   T23] sd 2:0:0:0: [sdb] 31285248 512-byte logical blocks: (16.0 GB/14.9 GiB)
[   12.414798][   T23] sd 2:0:0:0: [sdb] Write Protect is off
[   12.421173][   T23] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   12.437556][   T23]  sdb: sdb1
[   12.444801][   T23] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[   22.250233][    T1] md: Waiting for all devices to be available before autodetect
[   22.257752][    T1] md: If you don't use raid, use raid=noautodetect
[   22.265004][    T1] md: Autodetecting RAID arrays.
[   22.269820][    T1] md: autorun ...
[   22.273394][    T1] md: ... autorun DONE.
[   22.488377][    T1] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   22.496897][    T1] VFS: Mounted root (ext4 filesystem) readonly on device 8:1.
[   22.528772][    T1] devtmpfs: error mounting -2
[   22.536290][    T1] Freeing unused kernel memory: 1024K
[   22.542138][    T1] Checked W+X mappings: passed, no W+X pages found
[   22.548521][    T1] Run /sbin/init as init process
[   22.574841][    T1] Run /etc/init as init process
[   22.579789][    T1] Run /bin/init as init process
[   22.584813][    T1] Run /bin/sh as init process
[   22.589382][    T1] Kernel panic - not syncing: No working init found.  Try passing init= option to kernel. See Linux Documentation/admin-guide/init.rst for guidance.
[   22.604316][    T1] CPU: 0 PID: 1 Comm: swapper Not tainted 5.2.9-kirkwood-tld-1 #1
[   22.612001][    T1] Hardware name: Marvell Kirkwood (Flattened Device Tree)
[   22.619023][    T1] [<c010f6ac>] (unwind_backtrace) from [<c010bb00>] (show_stack+0x10/0x14)
[   22.627513][    T1] [<c010bb00>] (show_stack) from [<c0119fa0>] (panic+0xe0/0x30c)
[   22.635133][    T1] [<c0119fa0>] (panic) from [<c09dcfb0>] (kernel_init+0xd8/0x10c)
[   22.642827][    T1] [<c09dcfb0>] (kernel_init) from [<c01010e0>] (ret_from_fork+0x14/0x34)
[   22.651129][    T1] Exception stack(0xc7881fb0 to 0xc7881ff8)
[   22.656904][    T1] 1fa0:                                     00000000 00000000 00000000 00000000
[   22.665818][    T1] 1fc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[   22.674727][    T1] 1fe0: 00000000 00000000 00000000 00000000 00000013 00000000
[   22.682081][    T1] ---[ end Kernel panic - not syncing: No working init found.  Try passing init= option to kernel. See Linux Documentation/admin-guide/init.rst for guidance. ]---

I'm out of ideas at the moment.
Re: Goflex net usb boot not working when hdd attached
April 20, 2020 05:15PM
ghettonas,


> I just have a minor issue with my setup. The box
> runs from an USB drive, but when I power it up
> with an hdd attached it doesn't work.

This is the problem with uImage that has the DTB appended to it. You must have created this rootfs, either before installing new u-boot, or did a wrong step. So we need to reverse that step.

Boot with USB only. Log in.

cd /boot
cp -a uImage uImage.gfnet.with.dtb
cp -a uImage.orig uImage
sync

And reboot. Log in and check bootargs

cat /proc/cmdline

If you see the root device shows the following, then it is OK to plug in the HDD.
root=LABEL=rootfs

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Goflex net usb boot not working when hdd attached
April 21, 2020 10:28AM
Thanks bodhi,

it's working now.

root@nas:~# cat /proc/cmdline
console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)

Your guess is right. I was afraid of killing my uboot without having a serial connection as a fallback, so i first updated the rootfs.

I now have a working netconsole and an established serial connection. Netconsole shows the uboot log, i have a tty and the kernel starts netconsole again from /etc/initramfs-tools/modules. The serial connection omits the uboot log and i can not interact, but shows a verbose kernel log.
Is there a way to access the uboot shell from both connections?

Also back in the days i had a rescue system in the nand. Do you know if this still works? I'm not sure if it's worth the trouble.

For the sake of completeness i leave my netconsole and serial log.

netconsole:
U-Boot 2017.07-tld-1 (Sep 05 2017 - 00:17:19 -0700)
Seagate GoFlex Net
gcc (Debian 6.3.0-18) 6.3.0 20170516
GNU ld (GNU Binutils for Debian) 2.28
Hit any key to stop autoboot:  0 
Initializing devices...
starting USB...
USB0:   USB EHCI 1.00
scanning bus 0 for devices... 2 USB Device(s) found
       scanning usb for storage devices... 
Use USB retry period from the environment: 15 second(s)
1 Storage Device(s) found

Reset IDE: Bus 0: not available  Bus 1: OK 
  Device 1: Model: WDC WD20NPVT-00Z2TT0 Firm: 01.01A01 Ser#:  WD-WX31E13AZY91
            Type: Hard Disk
            Supports 48-bit addressing
            Capacity: 1907729.0 MB = 1863.0 GB (3907029168 x 512)
Unknown command 'mmc' - try 'help'
Loading envs from usb 0...
0 bytes read in 738 ms (0 Bytes/s)
... envs loaded
importing envs ...
running scan_disk ...
Scan device usb
device usb 0:1
1 bytes read in 631 ms (0 Bytes/s)
Found bootable drive on usb 0
loading uImage ...
4963680 bytes read in 920 ms (5.1 MiB/s)
loading uInitrd ...
9788435 bytes read in 748 ms (12.5 MiB/s)
loading DTB /boot/dts/kirkwood-goflexnet.dtb ...
11445 bytes read in 1522 ms (6.8 KiB/s)
## Booting kernel from Legacy Image at 00800000 ...
   Image Name:   Linux-5.2.9-kirkwood-tld-1
   Created:      2019-08-25   2:22:31 UTC
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    4963616 Bytes = 4.7 MiB
   Load Address: 00008000
   Entry Point:  00008000
   Verifying Checksum ... OK
## Loading init Ramdisk from Legacy Image at 01100000 ...
   Image Name:   initramfs-5.2.9-kirkwood-tld-1
   Created:      2020-04-19  13:19:22 UTC
   Image Type:   ARM Linux RAMDisk Image (gzip compressed)
   Data Size:    9788371 Bytes = 9.3 MiB
   Load Address: 00000000
   Entry Point:  00000000
   Verifying Checksum ... OK
## Flattened Device Tree blob at 01c00000
   Booting using the fdt blob at 0x1c00000


Starting kernel ...
[    0.000000][    T0] Booting Linux on physical CPU 0x0
[    0.000000][    T0] Linux version 5.2.9-kirkwood-tld-1 (root@tldDebian) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1)) #1 PREEMPT Sat Aug 17 15:00:56 PDT 2019
[    0.000000][    T0] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f
[    0.000000][    T0] CPU: VIVT data cache, VIVT instruction cache
[    0.000000][    T0] Linux version 5.2.9-kirkwood-tld-1 (root@tldDebian) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1)) #1 PREEMPT Sat Aug 17 15:00:56 PDT 2019
[    0.000000][    T0] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f
[    0.000000][    T0] CPU: VIVT data cache, VIVT instruction cache
[    0.000000][    T0] OF: fdt: Machine model: Seagate GoFlex Net
[    0.000000][    T0] OF: fdt: Machine model: Seagate GoFlex Net
[    0.000000][    T0] Memory policy: Data cache writeback
[    0.000000][    T0] Built 1 zonelists, mobility grouping on.  Total pages: 32512
[    0.000000][    T0] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
[    0.000000][    T0] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000][    T0] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000][    T0] Memory: 104760K/131072K available (9216K kernel code, 868K rwdata, 3400K rodata, 1024K init, 301K bss, 26312K reserved, 0K cma-reserved)
[    0.000000][    T0] random: get_random_u32 called from cache_alloc_refill+0x38c/0x928 with crng_init=0
[    0.000000][    T0] rcu: Preemptible hierarchical RCU implementation.
[    0.000000][    T0] 	Tasks RCU enabled.
[    0.000000][    T0] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.000000][    T0] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000][    T0] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
[    0.000000][    T0] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000][    T0] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000][    T0] Memory: 104760K/131072K available (9216K kernel code, 868K rwdata, 3400K rodata, 1024K init, 301K bss, 26312K reserved, 0K cma-reserved)
[    0.000000][    T0] random: get_random_u32 called from cache_alloc_refill+0x38c/0x928 with crng_init=0
[    0.000000][    T0] 	Tasks RCU enabled.
[    0.000000][    T0] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.000000][    T0] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000][    T0] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
[    0.000000][    T0] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
[    0.000009][    T0] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns
[    0.000048][    T0] Switching to timer-based delay loop, resolution 5ns
[    0.000806][    T0] Console: colour dummy device 80x30
[    0.000857][    T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=2000000)
[    0.000884][    T0] pid_max: default: 32768 minimum: 301
[    0.001256][    T0] LSM: Security Framework initializing
[    0.001446][    T0] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.001473][    T0] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.002341][    T0] *** VALIDATE proc ***
[    0.002607][    T0] *** VALIDATE cgroup1 ***
[    0.002632][    T0] *** VALIDATE cgroup2 ***
[    0.002732][    T0] CPU: Testing write buffer coherency: ok
[    0.004488][    T1] Setting up static identity map for 0x100000 - 0x100058
[    0.004790][    T1] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3
[    0.005090][    T1] rcu: Hierarchical SRCU implementation.
[    0.008388][    T1] devtmpfs: initialized
[    0.000009][    T0] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns
[    0.000048][    T0] Switching to timer-based delay loop, resolution 5ns
[    0.000806][    T0] Console: colour dummy device 80x30
[    0.000857][    T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=2000000)
[    0.000884][    T0] pid_max: default: 32768 minimum: 301
[    0.001473][    T0] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.002341][    T0] *** VALIDATE proc ***
[    0.002607][    T0] *** VALIDATE cgroup1 ***
[    0.002632][    T0] *** VALIDATE cgroup2 ***
[    0.002732][    T0] CPU: Testing write buffer coherency: ok
[    0.004488][    T1] Setting up static identity map for 0x100000 - 0x100058
[    0.004790][    T1] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3
[    0.005090][    T1] rcu: Hierarchical SRCU implementation.
[    0.008388][    T1] devtmpfs: initialized
[    0.014038][    T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.014071][    T1] futex hash table entries: 256 (order: -1, 3072 bytes)
[    0.014319][    T1] xor: measuring software checksum speed
[    0.110117][    T1]    arm4regs  :  1083.200 MB/sec
[    0.210076][    T1]    8regs     :   650.400 MB/sec
[    0.310076][    T1]    32regs    :   916.400 MB/sec
[    0.310095][    T1] xor: using function: arm4regs (1083.200 MB/sec)
[    0.310115][    T1] prandom: seed boundary self test passed
[    0.314313][    T1] prandom: 100 self tests passed
[    0.314324][    T1] pinctrl core: initialized pinctrl subsystem
[    0.315783][    T1] NET: Registered protocol family 16
[    0.316359][    T1] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.317188][    T1] audit: initializing netlink subsys (disabled)
[    0.318450][   T14] audit: type=2000 audit(0.310:1): state=initialized audit_enabled=0 res=1
[    0.014038][    T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.014071][    T1] futex hash table entries: 256 (order: -1, 3072 bytes)
[    0.014319][    T1] xor: measuring software checksum speed
[    0.210076][    T1]    8regs     :   650.400 MB/sec
[    0.310076][    T1]    32regs    :   916.400 MB/sec
[    0.314313][    T1] prandom: 100 self tests passed
[    0.314324][    T1] pinctrl core: initialized pinctrl subsystem
[    0.315783][    T1] NET: Registered protocol family 16
[    0.316359][    T1] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.317188][    T1] audit: initializing netlink subsys (disabled)
[    0.318450][   T14] audit: type=2000 audit(0.310:1): state=initialized audit_enabled=0 res=1
[    0.318576][    T1] cpuidle: using governor ladder
[    0.318576][    T1] cpuidle: using governor ladder
[    0.318656][    T1] cpuidle: using governor menu
[    0.319202][    T1] Feroceon L2: Enabling L2
[    0.319254][    T1] Feroceon L2: Cache support initialised.
[    0.324947][    T1] No ATAGs?
[    2.560056][    C0] random: fast init done
[    6.283356][   T71] alg: No test for lzo-rle (lzo-rle-generic)
[    6.283722][   T73] alg: No test for lzo-rle (lzo-rle-scomp)
[    6.460500][    T1] raid6: int32x8  gen()   127 MB/s
[    6.630462][    T1] raid6: int32x8  xor()    86 MB/s
[    6.800328][    T1] raid6: int32x4  gen()   129 MB/s
[    6.970329][    T1] raid6: int32x4  xor()    83 MB/s
[    7.140197][    T1] raid6: int32x2  gen()   132 MB/s
[    7.310363][    T1] raid6: int32x2  xor()    94 MB/s
[    7.480611][    T1] raid6: int32x1  gen()   100 MB/s
[    7.650331][    T1] raid6: int32x1  xor()    68 MB/s
[    7.650342][    T1] raid6: using algorithm int32x2 gen() 132 MB/s
[    7.650351][    T1] raid6: .... xor() 94 MB/s, rmw enabled
[    7.650359][    T1] raid6: using intx1 recovery algorithm
[    7.650627][    T1] vgaarb: loaded
[    0.318656][    T1] cpuidle: using governor menu
[    0.319202][    T1] Feroceon L2: Enabling L2
[    2.560056][    C0] random: fast init done
[    6.283356][   T71] alg: No test for lzo-rle (lzo-rle-generic)
[    6.283722][   T73] alg: No test for lzo-rle (lzo-rle-scomp)
[    6.460500][    T1] raid6: int32x8  gen()   127 MB/s
[    6.630462][    T1] raid6: int32x8  xor()    86 MB/s
[    6.970329][    T1] raid6: int32x4  xor()    83 MB/s
[    7.140197][    T1] raid6: int32x2  gen()   132 MB/s
[    7.310363][    T1] raid6: int32x2  xor()    94 MB/s
[    7.480611][    T1] raid6: int32x1  gen()   100 MB/s
[    7.650331][    T1] raid6: int32x1  xor()    68 MB/s
[    7.650342][    T1] raid6: using algorithm int32x2 gen() 132 MB/s
[    7.651159][    T1] SCSI subsystem initialized
[    7.651676][    T1] usbcore: registered new interface driver usbfs
[    7.651751][    T1] usbcore: registered new interface driver hub
[    7.651839][    T1] usbcore: registered new device driver usb
[    7.652023][    T1] pps_core: LinuxPPS API ver. 1 registered
[    7.652035][    T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    7.652063][    T1] PTP clock support registered
[    7.653400][    T1] clocksource: Switched to clocksource orion_clocksource
[    8.690869][    T1] VFS: Disk quotas dquot_6.6.0
[    8.690965][    T1] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    8.700889][    T1] NET: Registered protocol family 2
[    8.701735][    T1] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes)
[    8.701770][    T1] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[    8.701794][    T1] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
[    8.701815][    T1] TCP: Hash tables configured (established 1024 bind 1024)
[    8.701918][    T1] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    7.651676][    T1] usbcore: registered new interface driver usbfs
[    7.651751][    T1] usbcore: registered new interface driver hub
[    7.651839][    T1] usbcore: registered new device driver usb
[    7.652023][    T1] pps_core: LinuxPPS API ver. 1 registered
[    7.652035][    T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    7.652063][    T1] PTP clock support registered
[    7.653400][    T1] clocksource: Switched to clocksource orion_clocksource
[    8.690869][    T1] VFS: Disk quotas dquot_6.6.0
[    8.690965][    T1] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    8.700889][    T1] NET: Registered protocol family 2
[    8.701735][    T1] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes)
[    8.701770][    T1] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[    8.701794][    T1] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
[    8.701918][    T1] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    8.701945][    T1] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    8.701945][    T1] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    8.702174][    T1] NET: Registered protocol family 1
[    8.702839][    T1] RPC: Registered named UNIX socket transport module.
[    8.702853][    T1] RPC: Registered udp transport module.
[    8.702862][    T1] RPC: Registered tcp transport module.
[    8.702871][    T1] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    8.702886][    T1] PCI: CLS 0 bytes, default 32
[    8.703135][    T1] Trying to unpack rootfs image as initramfs...
[    9.563965][    T1] Freeing initrd memory: 9560K
[    9.564154][    T1] NetWinder Floating Point Emulator V0.97 (double precision)
[    9.565417][    T1] Initialise system trusted keyrings
[    9.565486][    T1] Key type blacklist registered
[    9.565717][    T1] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[    9.565821][    T1] zbud: loaded
[    9.566968][    T1] NFS: Registering the id_resolver key type
[    9.567002][    T1] Key type id_resolver registered
[    9.567012][    T1] Key type id_legacy registered
[    9.567033][    T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    8.702839][    T1] RPC: Registered named UNIX socket transport module.
[    8.702853][    T1] RPC: Registered udp transport module.
[    8.702862][    T1] RPC: Registered tcp transport module.
[    8.702871][    T1] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    8.702886][    T1] PCI: CLS 0 bytes, default 32
[    8.703135][    T1] Trying to unpack rootfs image as initramfs...
[    9.564154][    T1] NetWinder Floating Point Emulator V0.97 (double precision)
[    9.565417][    T1] Initialise system trusted keyrings
[    9.565486][    T1] Key type blacklist registered
[    9.565717][    T1] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[    9.566968][    T1] NFS: Registering the id_resolver key type
[    9.567002][    T1] Key type id_resolver registered
[    9.567012][    T1] Key type id_legacy registered
[    9.567050][    T1] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    9.567346][    T1] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    9.567588][    T1] fuse: init (API version 7.31)
[    9.567992][    T1] orangefs_debugfs_init: called with debug mask: :none: :0:
[    9.568184][    T1] orangefs_init: module version upstream loaded
[    9.568197][    T1] SGI XFS with ACLs, security attributes, realtime, scrub, no debug enabled
[    9.585798][    T1] async_tx: api initialized (async)
[    9.585823][    T1] Key type asymmetric registered
[    9.585832][    T1] Asymmetric key parser 'x509' registered
[    9.585908][    T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    9.587371][    T1] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver
[    9.589405][    T1] mv_xor f1060800.xor: Marvell shared XOR driver
[    9.644224][    T1] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    9.646247][    T1] mv_xor f1060900.xor: Marvell shared XOR driver
[    9.704232][    T1] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    9.567588][    T1] fuse: init (API version 7.31)
[    9.567992][    T1] orangefs_debugfs_init: called with debug mask: :none: :0:
[    9.568197][    T1] SGI XFS with ACLs, security attributes, realtime, scrub, no debug enabled
[    9.585798][    T1] async_tx: api initialized (async)
[    9.585823][    T1] Key type asymmetric registered
[    9.585832][    T1] Asymmetric key parser 'x509' registered
[    9.585908][    T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    9.587371][    T1] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver
[    9.589405][    T1] mv_xor f1060800.xor: Marvell shared XOR driver
[    9.644224][    T1] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    9.646247][    T1] mv_xor f1060900.xor: Marvell shared XOR driver
[    9.704232][    T1] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    9.706502][    T1] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[    9.707757][    T1] printk: console [ttyS0] disabled
[    9.707833][    T1] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 25, base_baud = 12500000) is a 16550A
[   10.462348][    T1] printk: console [ttyS0] enabled
[   10.475039][    T1] loop: module loaded
[   10.479469][    T1] sata_mv f1080000.sata: slots 32 ports 2
[   10.487934][    T1] scsi host0: sata_mv
[   10.492391][    T1] scsi host1: sata_mv
[   10.496627][    T1] ata1: SATA max UDMA/133 irq 32
[   10.501441][    T1] ata2: SATA max UDMA/133 irq 32
[   10.507486][    T1] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xda
[   10.514675][    T1] nand: Micron MT29F2G08AAD
[   10.519056][    T1] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[   10.527391][    T1] Scanning device for bad blocks
[   10.592897][    T1] Bad eraseblock 569 at 0x000004720000
[   10.606083][    T1] Bad eraseblock 643 at 0x000005060000
[   10.617889][    T1] Bad eraseblock 704 at 0x000005800000
[   10.766386][    T1] 4 cmdlinepart partitions found on MTD device orion_nand
[    9.706502][    T1] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[    9.707757][    T1] printk: console [ttyS0] disabled
[    9.707833][    T1] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 25, base_baud = 12500000) is a 16550A
[   10.462348][    T1] printk: console [ttyS0] enabled
[   10.479469][    T1] sata_mv f1080000.sata: slots 32 ports 2
[   10.487934][    T1] scsi host0: sata_mv
[   10.492391][    T1] scsi host1: sata_mv
[   10.496627][    T1] ata1: SATA max UDMA/133 irq 32
[   10.501441][    T1] ata2: SATA max UDMA/133 irq 32
[   10.507486][    T1] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xda
[   10.514675][    T1] nand: Micron MT29F2G08AAD
[   10.519056][    T1] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[   10.527391][    T1] Scanning device for bad blocks
[   10.592897][    T1] Bad eraseblock 569 at 0x000004720000
[   10.606083][    T1] Bad eraseblock 643 at 0x000005060000
[   10.773425][    T1] Creating 4 MTD partitions on "orion_nand":
[   10.779323][    T1] 0x000000000000-0x000000100000 : "u-boot"
[   10.786374][    T1] 0x000000100000-0x000000500000 : "uImage"
[   10.793379][    T1] 0x000000500000-0x000002500000 : "rootfs"
[   10.800468][    T1] 0x000002500000-0x000010000000 : "data"
[   10.809255][    T1] libphy: Fixed MDIO Bus: probed
[   10.814954][    T1] libphy: orion_mdio_bus: probed
[   10.834549][    T1] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
[   10.842133][  T112] ata1: SATA link down (SStatus 0 SControl F300)
[   10.848910][    T1] mv643xx_eth_port mv643xx_eth_port.0: DMA mask not set
[   11.363559][  T114] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl F300)
[   11.375115][  T114] ata2.00: ATA-8: WDC WD20NPVT-00Z2TT0, 01.01A01, max UDMA/133
[   11.382547][  T114] ata2.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[   11.394767][  T114] ata2.00: configured for UDMA/133
[   11.410282][   T23] scsi 1:0:0:0: Direct-Access     ATA      WDC WD20NPVT-00Z 1A01 PQ: 0 ANSI: 5
[   10.809255][    T1] libphy: Fixed MDIO Bus: probed
[   10.814954][    T1] libphy: orion_mdio_bus: probed
[   10.834549][    T1] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
[   10.842133][  T112] ata1: SATA link down (SStatus 0 SControl F300)
[   10.848910][    T1] mv643xx_eth_port mv643xx_eth_port.0: DMA mask not set
[   11.375115][  T114] ata2.00: ATA-8: WDC WD20NPVT-00Z2TT0, 01.01A01, max UDMA/133
[   11.382547][  T114] ata2.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[   11.394767][  T114] ata2.00: configured for UDMA/133
[   11.410282][   T23] scsi 1:0:0:0: Direct-Access     ATA      WDC WD20NPVT-00Z 1A01 PQ: 0 ANSI: 5
[   11.420142][    T7] sd 1:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[   11.420142][    T7] sd 1:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[   11.429013][    T7] sd 1:0:0:0: [sda] 4096-byte physical blocks
[   11.435104][    T7] sd 1:0:0:0: [sda] Write Protect is off
[   11.440747][    T7] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   11.521229][    T7]  sda: sda1
[   11.525917][    T7] sd 1:0:0:0: [sda] Attached SCSI disk
[   11.574091][    T1] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:10:75:26:6d:3a
[   11.583711][    T1] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   11.590990][    T1] ehci-pci: EHCI PCI platform driver
[   11.596248][    T1] ehci-orion: EHCI orion driver
[   11.601189][    T1] orion-ehci f1050000.ehci: EHCI Host Controller
[   11.607455][    T1] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1
[   11.616051][    T1] orion-ehci f1050000.ehci: irq 29, io mem 0xf1050000
[   11.643440][    T1] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00
[   11.650465][    T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[   11.659498][    T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.429013][    T7] sd 1:0:0:0: [sda] 4096-byte physical blocks
[   11.435104][    T7] sd 1:0:0:0: [sda] Write Protect is off
[   11.521229][    T7]  sda: sda1
[   11.574091][    T1] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:10:75:26:6d:3a
[   11.583711][    T1] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   11.590990][    T1] ehci-pci: EHCI PCI platform driver
[   11.596248][    T1] ehci-orion: EHCI orion driver
[   11.601189][    T1] orion-ehci f1050000.ehci: EHCI Host Controller
[   11.607455][    T1] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1
[   11.616051][    T1] orion-ehci f1050000.ehci: irq 29, io mem 0xf1050000
[   11.643440][    T1] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00
[   11.650465][    T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[   11.659498][    T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.667474][    T1] usb usb1: Product: EHCI Host Controller
[   11.667474][    T1] usb usb1: Product: EHCI Host Controller
[   11.673079][    T1] usb usb1: Manufacturer: Linux 5.2.9-kirkwood-tld-1 ehci_hcd
[   11.680440][    T1] usb usb1: SerialNumber: f1050000.ehci
[   11.686473][    T1] hub 1-0:1.0: USB hub found
[   11.690984][    T1] hub 1-0:1.0: 1 port detected
[   11.696402][    T1] usbcore: registered new interface driver usb-storage
[   11.703570][    T1] mousedev: PS/2 mouse device common for all mice
[   12.063437][   T15] usb 1-1: new high-speed USB device number 2 using orion-ehci
[   12.268930][   T15] usb 1-1: New USB device found, idVendor=18a5, idProduct=0243, bcdDevice=11.00
[   12.277875][   T15] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   12.285770][   T15] usb 1-1: Product: STORE N GO
[   12.290428][   T15] usb 1-1: Manufacturer: Verbatim
[   12.295349][   T15] usb 1-1: SerialNumber: AAPL9J8T502LGI6T
[   12.302367][   T15] usb-storage 1-1:1.0: USB Mass Storage device detected
[   12.309660][   T15] scsi host2: usb-storage 1-1:1.0
[   12.723434][    T1] rtc-mv f1010300.rtc: internal RTC not ticking
[   11.680440][    T1] usb usb1: SerialNumber: f1050000.ehci
[   11.686473][    T1] hub 1-0:1.0: USB hub found
[   11.690984][    T1] hub 1-0:1.0: 1 port detected
[   12.309660][   T15] scsi host2: usb-storage 1-1:1.0
[   12.723434][    T1] rtc-mv f1010300.rtc: internal RTC not ticking
[   12.729723][    T1] i2c /dev entries driver
[   12.729723][    T1] i2c /dev entries driver
[   12.734596][    T1] device-mapper: uevent: version 1.0.3
[   12.740223][    T1] device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@redhat.com
[   12.749854][    T1] device-mapper: multipath round-robin: version 1.2.0 loaded
[   12.757184][    T1] device-mapper: multipath queue-length: version 0.2.0 loaded
[   12.764578][    T1] device-mapper: multipath service-time: version 0.3.0 loaded
[   12.771995][    T1] device-mapper: dm-log-userspace: version 1.3.0 loaded
[   12.778844][    T1] device-mapper: raid: Loading target version 1.14.0
[   12.787641][    T1] hidraw: raw HID events driver (C) Jiri Kosina
[   12.794145][    T1] drop_monitor: Initializing network drop monitor service
[   12.801465][    T1] NET: Registered protocol family 17
[   12.806912][    T1] Key type dns_resolver registered
[   12.812715][    T1] registered taskstats version 1
[   12.817571][    T1] Loading compiled-in X.509 certificates
[   12.823170][    T1] zswap: loaded using pool lzo/zbud
[   12.921647][    T1] Key type big_key registered
[   12.968881][    T1] Key type encrypted registered
[   12.734596][    T1] device-mapper: uevent: version 1.0.3
[   12.740223][    T1] device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@redhat.com
[   12.749854][    T1] device-mapper: multipath round-robin: version 1.2.0 loaded
[   12.757184][    T1] device-mapper: multipath queue-length: version 0.2.0 loaded
[   12.764578][    T1] device-mapper: multipath service-time: version 0.3.0 loaded
[   12.771995][    T1] device-mapper: dm-log-userspace: version 1.3.0 loaded
[   12.778844][    T1] device-mapper: raid: Loading target version 1.14.0
[   12.787641][    T1] hidraw: raw HID events driver (C) Jiri Kosina
[   12.794145][    T1] drop_monitor: Initializing network drop monitor service
[   12.801465][    T1] NET: Registered protocol family 17
[   12.806912][    T1] Key type dns_resolver registered
[   12.812715][    T1] registered taskstats version 1
[   12.817571][    T1] Loading compiled-in X.509 certificates
[   12.823170][    T1] zswap: loaded using pool lzo/zbud
[   12.921647][    T1] Key type big_key registered
[   12.968881][    T1] Key type encrypted registered
[   12.975679][    T1] hctosys: unable to open rtc device (rtc0)
[   12.984894][    T1] Freeing unused kernel memory: 1024K
[   12.994065][    T1] Checked W+X mappings: passed, no W+X pages found
[   13.000453][    T1] Run /init as init process
[   13.509069][    T7] scsi 2:0:0:0: Direct-Access     Verbatim STORE N GO       1100 PQ: 0 ANSI: 6
[   13.536377][   T23] sd 2:0:0:0: [sdb] 31285248 512-byte logical blocks: (16.0 GB/14.9 GiB)
[   13.556876][   T23] sd 2:0:0:0: [sdb] Write Protect is off
[   13.577572][   T23] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   13.615881][   T23]  sdb: sdb1
[   13.627996][   T23] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[   14.145525][  T164] usbcore: registered new interface driver uas
[   14.628637][  T179] netpoll: netconsole: local port 6666
[   14.634160][  T179] netpoll: netconsole: local IPv4 address 192.168.1.111
[   14.640981][  T179] netpoll: netconsole: interface 'eth0'
[   14.647713][  T179] netpoll: netconsole: remote port 6666
[   14.653137][  T179] netpoll: netconsole: remote IPv4 address 192.168.1.101
[   12.984894][    T1] Freeing unused kernel memory: 1024K
[   12.994065][    T1] Checked W+X mappings: passed, no W+X pages found
[   13.000453][    T1] Run /init as init process
[   13.536377][   T23] sd 2:0:0:0: [sdb] 31285248 512-byte logical blocks: (16.0 GB/14.9 GiB)
[   13.556876][   T23] sd 2:0:0:0: [sdb] Write Protect is off
[   13.577572][   T23] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   13.615881][   T23]  sdb: sdb1
[   13.627996][   T23] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[   14.145525][  T164] usbcore: registered new interface driver uas
[   14.634160][  T179] netpoll: netconsole: local IPv4 address 192.168.1.111
[   14.640981][  T179] netpoll: netconsole: interface 'eth0'
[   14.647713][  T179] netpoll: netconsole: remote port 6666
[   14.653137][  T179] netpoll: netconsole: remote IPv4 address 192.168.1.101
[   14.660071][  T179] netpoll: netconsole: remote ethernet address ff:ff:ff:ff:ff:ff
[   14.660071][  T179] netpoll: netconsole: remote ethernet address ff:ff:ff:ff:ff:ff
[   14.667695][  T179] netpoll: netconsole: device eth0 not up yet, forcing it
[   18.351498][    C0] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 1000 Mb/s, full duplex, flow control disabled
[   19.751820][  T179] printk: console [netcon0] enabled
[   19.756999][  T179] netconsole: network logging started
[   14.667695][  T179] netpoll: netconsole: device eth0 not up yet, forcing it
[   18.351498][    C0] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 1000 Mb/s, full duplex, flow control disabled
[   19.751820][  T179] printk: console [netcon0] enabled
[   19.756999][  T179] netconsole: network logging started
[   30.015240][  T195] EXT4-fs (sdb1): mounting ext3 file system using the ext4 subsystem
[   30.062686][  T195] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
[   31.828967][    C0] random: crng init done
[   33.157392][  T381] systemd-udevd[381]: Using default interface naming scheme 'v240'.
[   33.302743][  T381] systemd-udevd[381]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
[   33.302743][  T381] systemd-udevd[381]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
[   33.430888][  T409] watchdog: f1020300.watchdog-timer: driver supplied timeout (4294967295) out of range
[   33.550391][  T409] watchdog: f1020300.watchdog-timer: falling back to default timeout (21)
[   33.584492][  T382] sd 1:0:0:0: Attached scsi generic sg0 type 0
[   33.685724][  T382] sd 2:0:0:0: Attached scsi generic sg1 type 0
[   33.730751][  T409] orion_wdt: Initial timeout 21 sec
[   33.730751][  T409] orion_wdt: Initial timeout 21 sec
[   33.806815][  T408] marvell-cesa f1030000.crypto: CESA device successfully registered
[   33.980114][  T401] systemd-udevd[401]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
[   35.366987][  T617] EXT4-fs (sdb1): re-mounted. Opts: errors=remount-ro
[   37.262548][  T888] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   37.262548][  T888] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   38.333450][  T935] Adding 524284k swap on /swapfile.  Priority:-2 extents:18 across:2748864k FS
[   45.276096][ T1162] NET: Registered protocol family 10
[   45.283507][ T1162] Segment Routing with IPv6
[   45.283507][ T1162] Segment Routing with IPv6
[   51.992919][ T1547] NFSD: Using UMH upcall client tracking operations.
[   51.999667][ T1547] NFSD: starting 90-second grace period (net f000001c)
Re: Goflex net usb boot not working when hdd attached
April 21, 2020 10:28AM
serial connection:
U-Boot 2017.07-tld-1 (Sep 05 2017 - 00:17:19 -0700)
Seagate GoFlex Net

SoC:   Kirkwood 88F6281_A1
DRAM:  128 MiB
WARNING: Caches not enabled
NAND:  256 MiB
In:    serial
Out:   serial
Err:   serial
Net:   egiga0
88E1116 Initialized on egiga0
Using egiga0 device
host 192.168.1.101 is alive
Using egiga0 device
host 192.168.1.101 is alive
Using egiga0 device
host 192.168.1.101 is alive
Using egiga0 device
host 192.168.1.101 is alive
Using egiga0 device
host 192.168.1.101 is alive
Uncompressing Linux... done, booting the kernel.
[    0.000000][    T0] Booting Linux on physical CPU 0x0
[    0.000000][    T0] Linux version 5.2.9-kirkwood-tld-1 (root@tldDebian) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1)) #1 PREEMPT Sat Aug 17 15:00:56 PDT 2019
[    0.000000][    T0] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f
[    0.000000][    T0] CPU: VIVT data cache, VIVT instruction cache
[    0.000000][    T0] OF: fdt: Machine model: Seagate GoFlex Net
[    0.000000][    T0] Memory policy: Data cache writeback
[    0.000000][    T0] Built 1 zonelists, mobility grouping on.  Total pages: 32512
[    0.000000][    T0] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
[    0.000000][    T0] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000][    T0] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000][    T0] Memory: 104760K/131072K available (9216K kernel code, 868K rwdata, 3400K rodata, 1024K init, 301K bss, 26312K reserved, 0K cma-reserved)
[    0.000000][    T0] random: get_random_u32 called from cache_alloc_refill+0x38c/0x928 with crng_init=0
[    0.000000][    T0] rcu: Preemptible hierarchical RCU implementation.
[    0.000000][    T0] 	Tasks RCU enabled.
[    0.000000][    T0] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.000000][    T0] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000][    T0] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
[    0.000009][    T0] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns
[    0.000048][    T0] Switching to timer-based delay loop, resolution 5ns
[    0.000806][    T0] Console: colour dummy device 80x30
[    0.000857][    T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=2000000)
[    0.000884][    T0] pid_max: default: 32768 minimum: 301
[    0.001256][    T0] LSM: Security Framework initializing
[    0.001446][    T0] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.001473][    T0] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.002341][    T0] *** VALIDATE proc ***
[    0.002607][    T0] *** VALIDATE cgroup1 ***
[    0.002632][    T0] *** VALIDATE cgroup2 ***
[    0.002732][    T0] CPU: Testing write buffer coherency: ok
[    0.004488][    T1] Setting up static identity map for 0x100000 - 0x100058
[    0.004790][    T1] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3
[    0.005090][    T1] rcu: Hierarchical SRCU implementation.
[    0.008388][    T1] devtmpfs: initialized
[    0.014038][    T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.014071][    T1] futex hash table entries: 256 (order: -1, 3072 bytes)
[    0.014319][    T1] xor: measuring software checksum speed
[    0.110117][    T1]    arm4regs  :  1083.200 MB/sec
[    0.210076][    T1]    8regs     :   650.400 MB/sec
[    0.310076][    T1]    32regs    :   916.400 MB/sec
[    0.310095][    T1] xor: using function: arm4regs (1083.200 MB/sec)
[    0.310115][    T1] prandom: seed boundary self test passed
[    0.314313][    T1] prandom: 100 self tests passed
[    0.314324][    T1] pinctrl core: initialized pinctrl subsystem
[    0.315783][    T1] NET: Registered protocol family 16
[    0.316359][    T1] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.317188][    T1] audit: initializing netlink subsys (disabled)
[    0.318450][   T14] audit: type=2000 audit(0.310:1): state=initialized audit_enabled=0 res=1
[    0.318576][    T1] cpuidle: using governor ladder
[    0.318656][    T1] cpuidle: using governor menu
[    0.319202][    T1] Feroceon L2: Enabling L2
[    0.319254][    T1] Feroceon L2: Cache support initialised.
[    0.324947][    T1] No ATAGs?
[    2.560056][    C0] random: fast init done
[    6.283356][   T71] alg: No test for lzo-rle (lzo-rle-generic)
[    6.283722][   T73] alg: No test for lzo-rle (lzo-rle-scomp)
[    6.460500][    T1] raid6: int32x8  gen()   127 MB/s
[    6.630462][    T1] raid6: int32x8  xor()    86 MB/s
[    6.800328][    T1] raid6: int32x4  gen()   129 MB/s
[    6.970329][    T1] raid6: int32x4  xor()    83 MB/s
[    7.140197][    T1] raid6: int32x2  gen()   132 MB/s
[    7.310363][    T1] raid6: int32x2  xor()    94 MB/s
[    7.480611][    T1] raid6: int32x1  gen()   100 MB/s
[    7.650331][    T1] raid6: int32x1  xor()    68 MB/s
[    7.650342][    T1] raid6: using algorithm int32x2 gen() 132 MB/s
[    7.650351][    T1] raid6: .... xor() 94 MB/s, rmw enabled
[    7.650359][    T1] raid6: using intx1 recovery algorithm
[    7.650627][    T1] vgaarb: loaded
[    7.651159][    T1] SCSI subsystem initialized
[    7.651676][    T1] usbcore: registered new interface driver usbfs
[    7.651751][    T1] usbcore: registered new interface driver hub
[    7.651839][    T1] usbcore: registered new device driver usb
[    7.652023][    T1] pps_core: LinuxPPS API ver. 1 registered
[    7.652035][    T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    7.652063][    T1] PTP clock support registered
[    7.653400][    T1] clocksource: Switched to clocksource orion_clocksource
[    8.690869][    T1] VFS: Disk quotas dquot_6.6.0
[    8.690965][    T1] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    8.700889][    T1] NET: Registered protocol family 2
[    8.701735][    T1] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes)
[    8.701770][    T1] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[    8.701794][    T1] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
[    8.701815][    T1] TCP: Hash tables configured (established 1024 bind 1024)
[    8.701918][    T1] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    8.701945][    T1] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    8.702174][    T1] NET: Registered protocol family 1
[    8.702839][    T1] RPC: Registered named UNIX socket transport module.
[    8.702853][    T1] RPC: Registered udp transport module.
[    8.702862][    T1] RPC: Registered tcp transport module.
[    8.702871][    T1] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    8.702886][    T1] PCI: CLS 0 bytes, default 32
[    8.703135][    T1] Trying to unpack rootfs image as initramfs...
[    9.563965][    T1] Freeing initrd memory: 9560K
[    9.564154][    T1] NetWinder Floating Point Emulator V0.97 (double precision)
[    9.565417][    T1] Initialise system trusted keyrings
[    9.565486][    T1] Key type blacklist registered
[    9.565717][    T1] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[    9.565821][    T1] zbud: loaded
[    9.566968][    T1] NFS: Registering the id_resolver key type
[    9.567002][    T1] Key type id_resolver registered
[    9.567012][    T1] Key type id_legacy registered
[    9.567033][    T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    9.567050][    T1] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    9.567346][    T1] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    9.567588][    T1] fuse: init (API version 7.31)
[    9.567992][    T1] orangefs_debugfs_init: called with debug mask: :none: :0:
[    9.568184][    T1] orangefs_init: module version upstream loaded
[    9.568197][    T1] SGI XFS with ACLs, security attributes, realtime, scrub, no debug enabled
[    9.585798][    T1] async_tx: api initialized (async)
[    9.585823][    T1] Key type asymmetric registered
[    9.585832][    T1] Asymmetric key parser 'x509' registered
[    9.585908][    T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    9.587371][    T1] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver
[    9.589405][    T1] mv_xor f1060800.xor: Marvell shared XOR driver
[    9.644224][    T1] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    9.646247][    T1] mv_xor f1060900.xor: Marvell shared XOR driver
[    9.704232][    T1] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    9.706502][    T1] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[    9.707757][    T1] printk: console [ttyS0] disabled
[    9.707833][    T1] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 25, base_baud = 12500000) is a 16550A
[   10.462348][    T1] printk: console [ttyS0] enabled
[   10.475039][    T1] loop: module loaded
[   10.479469][    T1] sata_mv f1080000.sata: slots 32 ports 2
[   10.487934][    T1] scsi host0: sata_mv
[   10.492391][    T1] scsi host1: sata_mv
[   10.496627][    T1] ata1: SATA max UDMA/133 irq 32
[   10.501441][    T1] ata2: SATA max UDMA/133 irq 32
[   10.507486][    T1] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xda
[   10.514675][    T1] nand: Micron MT29F2G08AAD
[   10.519056][    T1] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[   10.527391][    T1] Scanning device for bad blocks
[   10.592897][    T1] Bad eraseblock 569 at 0x000004720000
[   10.606083][    T1] Bad eraseblock 643 at 0x000005060000
[   10.617889][    T1] Bad eraseblock 704 at 0x000005800000
[   10.766386][    T1] 4 cmdlinepart partitions found on MTD device orion_nand
[   10.773425][    T1] Creating 4 MTD partitions on "orion_nand":
[   10.779323][    T1] 0x000000000000-0x000000100000 : "u-boot"
[   10.786374][    T1] 0x000000100000-0x000000500000 : "uImage"
[   10.793379][    T1] 0x000000500000-0x000002500000 : "rootfs"
[   10.800468][    T1] 0x000002500000-0x000010000000 : "data"
[   10.809255][    T1] libphy: Fixed MDIO Bus: probed
[   10.814954][    T1] libphy: orion_mdio_bus: probed
[   10.834549][    T1] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
[   10.842133][  T112] ata1: SATA link down (SStatus 0 SControl F300)
[   10.848910][    T1] mv643xx_eth_port mv643xx_eth_port.0: DMA mask not set
[   11.363559][  T114] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl F300)
[   11.375115][  T114] ata2.00: ATA-8: WDC WD20NPVT-00Z2TT0, 01.01A01, max UDMA/133
[   11.382547][  T114] ata2.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[   11.394767][  T114] ata2.00: configured for UDMA/133
[   11.410282][   T23] scsi 1:0:0:0: Direct-Access     ATA      WDC WD20NPVT-00Z 1A01 PQ: 0 ANSI: 5
[   11.420142][    T7] sd 1:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[   11.429013][    T7] sd 1:0:0:0: [sda] 4096-byte physical blocks
[   11.435104][    T7] sd 1:0:0:0: [sda] Write Protect is off
[   11.440747][    T7] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   11.521229][    T7]  sda: sda1
[   11.525917][    T7] sd 1:0:0:0: [sda] Attached SCSI disk
[   11.574091][    T1] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:10:75:26:6d:3a
[   11.583711][    T1] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   11.590990][    T1] ehci-pci: EHCI PCI platform driver
[   11.596248][    T1] ehci-orion: EHCI orion driver
[   11.601189][    T1] orion-ehci f1050000.ehci: EHCI Host Controller
[   11.607455][    T1] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1
[   11.616051][    T1] orion-ehci f1050000.ehci: irq 29, io mem 0xf1050000
[   11.643440][    T1] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00
[   11.650465][    T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[   11.659498][    T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.667474][    T1] usb usb1: Product: EHCI Host Controller
[   11.673079][    T1] usb usb1: Manufacturer: Linux 5.2.9-kirkwood-tld-1 ehci_hcd
[   11.680440][    T1] usb usb1: SerialNumber: f1050000.ehci
[   11.686473][    T1] hub 1-0:1.0: USB hub found
[   11.690984][    T1] hub 1-0:1.0: 1 port detected
[   11.696402][    T1] usbcore: registered new interface driver usb-storage
[   11.703570][    T1] mousedev: PS/2 mouse device common for all mice
[   12.063437][   T15] usb 1-1: new high-speed USB device number 2 using orion-ehci
[   12.268930][   T15] usb 1-1: New USB device found, idVendor=18a5, idProduct=0243, bcdDevice=11.00
[   12.277875][   T15] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   12.285770][   T15] usb 1-1: Product: STORE N GO
[   12.290428][   T15] usb 1-1: Manufacturer: Verbatim
[   12.295349][   T15] usb 1-1: SerialNumber: AAPL9J8T502LGI6T
[   12.302367][   T15] usb-storage 1-1:1.0: USB Mass Storage device detected
[   12.309660][   T15] scsi host2: usb-storage 1-1:1.0
[   12.723434][    T1] rtc-mv f1010300.rtc: internal RTC not ticking
[   12.729723][    T1] i2c /dev entries driver
[   12.734596][    T1] device-mapper: uevent: version 1.0.3
[   12.740223][    T1] device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@redhat.com
[   12.749854][    T1] device-mapper: multipath round-robin: version 1.2.0 loaded
[   12.757184][    T1] device-mapper: multipath queue-length: version 0.2.0 loaded
[   12.764578][    T1] device-mapper: multipath service-time: version 0.3.0 loaded
[   12.771995][    T1] device-mapper: dm-log-userspace: version 1.3.0 loaded
[   12.778844][    T1] device-mapper: raid: Loading target version 1.14.0
[   12.787641][    T1] hidraw: raw HID events driver (C) Jiri Kosina
[   12.794145][    T1] drop_monitor: Initializing network drop monitor service
[   12.801465][    T1] NET: Registered protocol family 17
[   12.806912][    T1] Key type dns_resolver registered
[   12.812715][    T1] registered taskstats version 1
[   12.817571][    T1] Loading compiled-in X.509 certificates
[   12.823170][    T1] zswap: loaded using pool lzo/zbud
[   12.921647][    T1] Key type big_key registered
[   12.968881][    T1] Key type encrypted registered
[   12.975679][    T1] hctosys: unable to open rtc device (rtc0)
[   12.984894][    T1] Freeing unused kernel memory: 1024K
[   12.994065][    T1] Checked W+X mappings: passed, no W+X pages found
[   13.000453][    T1] Run /init as init process
Loading, please wait...
Starting version 241
[   13.509069][    T7] scsi 2:0:0:0: Direct-Access     Verbatim STORE N GO       1100 PQ: 0 ANSI: 6
[   13.536377][   T23] sd 2:0:0:0: [sdb] 31285248 512-byte logical blocks: (16.0 GB/14.9 GiB)
[   13.556876][   T23] sd 2:0:0:0: [sdb] Write Protect is off
[   13.577572][   T23] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   13.615881][   T23]  sdb: sdb1
[   13.627996][   T23] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[   14.145525][  T164] usbcore: registered new interface driver uas
Begin: Loading essential drivers ... [   14.628637][  T179] netpoll: netconsole: local port 6666
[   14.634160][  T179] netpoll: netconsole: local IPv4 address 192.168.1.111
[   14.640981][  T179] netpoll: netconsole: interface 'eth0'
[   14.647713][  T179] netpoll: netconsole: remote port 6666
[   14.653137][  T179] netpoll: netconsole: remote IPv4 address 192.168.1.101
[   14.660071][  T179] netpoll: netconsole: remote ethernet address ff:ff:ff:ff:ff:ff
[   14.667695][  T179] netpoll: netconsole: device eth0 not up yet, forcing it
[   18.351498][    C0] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 1000 Mb/s, full duplex, flow control disabled
[    0.000000][    T0] Booting Linux on physical CPU 0x0
[    0.000000][    T0] Linux version 5.2.9-kirkwood-tld-1 (root@tldDebian) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1)) #1 PREEMPT Sat Aug 17 15:00:56 PDT 2019
[    0.000000][    T0] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f
[    0.000000][    T0] CPU: VIVT data cache, VIVT instruction cache
[    0.000000][    T0] OF: fdt: Machine model: Seagate GoFlex Net
[    0.000000][    T0] Memory policy: Data cache writeback
[    0.000000][    T0] Built 1 zonelists, mobility grouping on.  Total pages: 32512
[    0.000000][    T0] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
[    0.000000][    T0] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000][    T0] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000][    T0] Memory: 104760K/131072K available (9216K kernel code, 868K rwdata, 3400K rodata, 1024K init, 301K bss, 26312K reserved, 0K cma-reserved)
[    0.000000][    T0] random: get_random_u32 called from cache_alloc_refill+0x38c/0x928 with crng_init=0
[    0.000000][    T0] rcu: Preemptible hierarchical RCU implementation.
[    0.000000][    T0] 	Tasks RCU enabled.
[    0.000000][    T0] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.000000][    T0] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000][    T0] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
[    0.000009][    T0] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns
[    0.000048][    T0] Switching to timer-based delay loop, resolution 5ns
[    0.000806][    T0] Console: colour dummy device 80x30
[    0.000857][    T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=2000000)
[    0.000884][    T0] pid_max: default: 32768 minimum: 301
[    0.001256][    T0] LSM: Security Framework initializing
[    0.001446][    T0] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.001473][    T0] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.002341][    T0] *** VALIDATE proc ***
[    0.002607][    T0] *** VALIDATE cgroup1 ***
[    0.002632][    T0] *** VALIDATE cgroup2 ***
[    0.002732][    T0] CPU: Testing write buffer coherency: ok
[    0.004488][    T1] Setting up static identity map for 0x100000 - 0x100058
[    0.004790][    T1] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3
[    0.005090][    T1] rcu: Hierarchical SRCU implementation.
[    0.008388][    T1] devtmpfs: initialized
[    0.014038][    T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.014071][    T1] futex hash table entries: 256 (order: -1, 3072 bytes)
[    0.014319][    T1] xor: measuring software checksum speed
[    0.110117][    T1]    arm4regs  :  1083.200 MB/sec
[    0.210076][    T1]    8regs     :   650.400 MB/sec
[    0.310076][    T1]    32regs    :   916.400 MB/sec
[    0.310095][    T1] xor: using function: arm4regs (1083.200 MB/sec)
[    0.310115][    T1] prandom: seed boundary self test passed
[    0.314313][    T1] prandom: 100 self tests passed
[    0.314324][    T1] pinctrl core: initialized pinctrl subsystem
[    0.315783][    T1] NET: Registered protocol family 16
[    0.316359][    T1] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.317188][    T1] audit: initializing netlink subsys (disabled)
[    0.318450][   T14] audit: type=2000 audit(0.310:1): state=initialized audit_enabled=0 res=1
[    0.318576][    T1] cpuidle: using governor ladder
[    0.318656][    T1] cpuidle: using governor menu
[    0.319202][    T1] Feroceon L2: Enabling L2
[    0.319254][    T1] Feroceon L2: Cache support initialised.
[    0.324947][    T1] No ATAGs?
[    2.560056][    C0] random: fast init done
[    6.283356][   T71] alg: No test for lzo-rle (lzo-rle-generic)
[    6.283722][   T73] alg: No test for lzo-rle (lzo-rle-scomp)
[    6.460500][    T1] raid6: int32x8  gen()   127 MB/s
[    6.630462][    T1] raid6: int32x8  xor()    86 MB/s
[    6.800328][    T1] raid6: int32x4  gen()   129 MB/s
[    6.970329][    T1] raid6: int32x4  xor()    83 MB/s
[    7.140197][    T1] raid6: int32x2  gen()   132 MB/s
[    7.310363][    T1] raid6: int32x2  xor()    94 MB/s
[    7.480611][    T1] raid6: int32x1  gen()   100 MB/s
[    7.650331][    T1] raid6: int32x1  xor()    68 MB/s
[    7.650342][    T1] raid6: using algorithm int32x2 gen() 132 MB/s
[    7.650351][    T1] raid6: .... xor() 94 MB/s, rmw enabled
[    7.650359][    T1] raid6: using intx1 recovery algorithm
[    7.650627][    T1] vgaarb: loaded
[    7.651159][    T1] SCSI subsystem initialized
[    7.651676][    T1] usbcore: registered new interface driver usbfs
[    7.651751][    T1] usbcore: registered new interface driver hub
[    7.651839][    T1] usbcore: registered new device driver usb
[    7.652023][    T1] pps_core: LinuxPPS API ver. 1 registered
[    7.652035][    T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    7.652063][    T1] PTP clock support registered
[    7.653400][    T1] clocksource: Switched to clocksource orion_clocksource
[    8.690869][    T1] VFS: Disk quotas dquot_6.6.0
[    8.690965][    T1] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    8.700889][    T1] NET: Registered protocol family 2
[    8.701735][    T1] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes)
[    8.701770][    T1] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[    8.701794][    T1] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
[    8.701815][    T1] TCP: Hash tables configured (established 1024 bind 1024)
[    8.701918][    T1] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    8.701945][    T1] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    8.702174][    T1] NET: Registered protocol family 1
[    8.702839][    T1] RPC: Registered named UNIX socket transport module.
[    8.702853][    T1] RPC: Registered udp transport module.
[    8.702862][    T1] RPC: Registered tcp transport module.
[    8.702871][    T1] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    8.702886][    T1] PCI: CLS 0 bytes, default 32
[    8.703135][    T1] Trying to unpack rootfs image as initramfs...
[    9.563965][    T1] Freeing initrd memory: 9560K
[    9.564154][    T1] NetWinder Floating Point Emulator V0.97 (double precision)
[    9.565417][    T1] Initialise system trusted keyrings
[    9.565486][    T1] Key type blacklist registered
[    9.565717][    T1] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[    9.565821][    T1] zbud: loaded
[    9.566968][    T1] NFS: Registering the id_resolver key type
[    9.567002][    T1] Key type id_resolver registered
[    9.567012][    T1] Key type id_legacy registered
[    9.567033][    T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    9.567050][    T1] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    9.567346][    T1] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    9.567588][    T1] fuse: init (API version 7.31)
[    9.567992][    T1] orangefs_debugfs_init: called with debug mask: :none: :0:
[    9.568184][    T1] orangefs_init: module version upstream loaded
[    9.568197][    T1] SGI XFS with ACLs, security attributes, realtime, scrub, no debug enabled
[    9.585798][    T1] async_tx: api initialized (async)
[    9.585823][    T1] Key type asymmetric registered
[    9.585832][    T1] Asymmetric key parser 'x509' registered
[    9.585908][    T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    9.587371][    T1] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver
[    9.589405][    T1] mv_xor f1060800.xor: Marvell shared XOR driver
[    9.644224][    T1] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    9.646247][    T1] mv_xor f1060900.xor: Marvell shared XOR driver
[    9.704232][    T1] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    9.706502][    T1] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[    9.707757][    T1] printk: console [ttyS0] disabled
[    9.707833][    T1] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 25, base_baud = 12500000) is a 16550A
[   10.462348][    T1] printk: console [ttyS0] enabled
[   10.475039][    T1] loop: module loaded
[   10.479469][    T1] sata_mv f1080000.sata: slots 32 ports 2
[   10.487934][    T1] scsi host0: sata_mv
[   10.492391][    T1] scsi host1: sata_mv
[   10.496627][    T1] ata1: SATA max UDMA/133 irq 32
[   10.501441][    T1] ata2: SATA max UDMA/133 irq 32
[   10.507486][    T1] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xda
[   10.514675][    T1] nand: Micron MT29F2G08AAD
[   10.519056][    T1] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[   10.527391][    T1] Scanning device for bad blocks
[   10.592897][    T1] Bad eraseblock 569 at 0x000004720000
[   10.606083][    T1] Bad eraseblock 643 at 0x000005060000
[   10.617889][    T1] Bad eraseblock 704 at 0x000005800000
[   10.766386][    T1] 4 cmdlinepart partitions found on MTD device orion_nand
[   10.773425][    T1] Creating 4 MTD partitions on "orion_nand":
[   10.779323][    T1] 0x000000000000-0x000000100000 : "u-boot"
[   10.786374][    T1] 0x000000100000-0x000000500000 : "uImage"
[   10.793379][    T1] 0x000000500000-0x000002500000 : "rootfs"
[   10.800468][    T1] 0x000002500000-0x000010000000 : "data"
[   10.809255][    T1] libphy: Fixed MDIO Bus: probed
[   10.814954][    T1] libphy: orion_mdio_bus: probed
[   10.834549][    T1] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
[   10.842133][  T112] ata1: SATA link down (SStatus 0 SControl F300)
[   10.848910][    T1] mv643xx_eth_port mv643xx_eth_port.0: DMA mask not set
[   11.363559][  T114] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl F300)
[   11.375115][  T114] ata2.00: ATA-8: WDC WD20NPVT-00Z2TT0, 01.01A01, max UDMA/133
[   11.382547][  T114] ata2.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[   11.394767][  T114] ata2.00: configured for UDMA/133
[   11.410282][   T23] scsi 1:0:0:0: Direct-Access     ATA      WDC WD20NPVT-00Z 1A01 PQ: 0 ANSI: 5
[   11.420142][    T7] sd 1:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[   11.429013][    T7] sd 1:0:0:0: [sda] 4096-byte physical blocks
[   11.435104][    T7] sd 1:0:0:0: [sda] Write Protect is off
[   11.440747][    T7] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   11.521229][    T7]  sda: sda1
[   11.525917][    T7] sd 1:0:0:0: [sda] Attached SCSI disk
[   11.574091][    T1] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:10:75:26:6d:3a
[   11.583711][    T1] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   11.590990][    T1] ehci-pci: EHCI PCI platform driver
[   11.596248][    T1] ehci-orion: EHCI orion driver
[   11.601189][    T1] orion-ehci f1050000.ehci: EHCI Host Controller
[   11.607455][    T1] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1
[   11.616051][    T1] orion-ehci f1050000.ehci: irq 29, io mem 0xf1050000
[   11.643440][    T1] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00
[   11.650465][    T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[   11.659498][    T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.667474][    T1] usb usb1: Product: EHCI Host Controller
[   11.673079][    T1] usb usb1: Manufacturer: Linux 5.2.9-kirkwood-tld-1 ehci_hcd
[   11.680440][    T1] usb usb1: SerialNumber: f1050000.ehci
[   11.686473][    T1] hub 1-0:1.0: USB hub found
[   11.690984][    T1] hub 1-0:1.0: 1 port detected
[   11.696402][    T1] usbcore: registered new interface driver usb-storage
[   11.703570][    T1] mousedev: PS/2 mouse device common for all mice
[   12.063437][   T15] usb 1-1: new high-speed USB device number 2 using orion-ehci
[   12.268930][   T15] usb 1-1: New USB device found, idVendor=18a5, idProduct=0243, bcdDevice=11.00
[   12.277875][   T15] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   12.285770][   T15] usb 1-1: Product: STORE N GO
[   12.290428][   T15] usb 1-1: Manufacturer: Verbatim
[   12.295349][   T15] usb 1-1: SerialNumber: AAPL9J8T502LGI6T
[   12.302367][   T15] usb-storage 1-1:1.0: USB Mass Storage device detected
[   12.309660][   T15] scsi host2: usb-storage 1-1:1.0
[   12.723434][    T1] rtc-mv f1010300.rtc: internal RTC not ticking
[   12.729723][    T1] i2c /dev entries driver
[   12.734596][    T1] device-mapper: uevent: version 1.0.3
[   12.740223][    T1] device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@redhat.com
[   12.749854][    T1] device-mapper: multipath round-robin: version 1.2.0 loaded
[   12.757184][    T1] device-mapper: multipath queue-length: version 0.2.0 loaded
[   12.764578][    T1] device-mapper: multipath service-time: version 0.3.0 loaded
[   12.771995][    T1] device-mapper: dm-log-userspace: version 1.3.0 loaded
[   12.778844][    T1] device-mapper: raid: Loading target version 1.14.0
[   12.787641][    T1] hidraw: raw HID events driver (C) Jiri Kosina
[   12.794145][    T1] drop_monitor: Initializing network drop monitor service
[   12.801465][    T1] NET: Registered protocol family 17
[   12.806912][    T1] Key type dns_resolver registered
[   12.812715][    T1] registered taskstats version 1
[   12.817571][    T1] Loading compiled-in X.509 certificates
[   12.823170][    T1] zswap: loaded using pool lzo/zbud
[   12.921647][    T1] Key type big_key registered
[   12.968881][    T1] Key type encrypted registered
[   12.975679][    T1] hctosys: unable to open rtc device (rtc0)
[   12.984894][    T1] Freeing unused kernel memory: 1024K
[   12.994065][    T1] Checked W+X mappings: passed, no W+X pages found
[   13.000453][    T1] Run /init as init process
[   13.509069][    T7] scsi 2:0:0:0: Direct-Access     Verbatim STORE N GO       1100 PQ: 0 ANSI: 6
[   13.536377][   T23] sd 2:0:0:0: [sdb] 31285248 512-byte logical blocks: (16.0 GB/14.9 GiB)
[   13.556876][   T23] sd 2:0:0:0: [sdb] Write Protect is off
[   13.577572][   T23] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   13.615881][   T23]  sdb: sdb1
[   13.627996][   T23] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[   14.145525][  T164] usbcore: registered new interface driver uas
[   14.628637][  T179] netpoll: netconsole: local port 6666
[   14.634160][  T179] netpoll: netconsole: local IPv4 address 192.168.1.111
[   14.640981][  T179] netpoll: netconsole: interface 'eth0'
[   14.647713][  T179] netpoll: netconsole: remote port 6666
[   14.653137][  T179] netpoll: netconsole: remote IPv4 address 192.168.1.101
[   14.660071][  T179] netpoll: netconsole: remote ethernet address ff:ff:ff:ff:ff:ff
[   14.667695][  T179] netpoll: netconsole: device eth0 not up yet, forcing it
[   18.351498][    C0] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 1000 Mb/s, full duplex, flow control disabled
[   19.751820][  T179] printk: console [netcon0] enabled
[   19.756999][  T179] netconsole: network logging started
done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... done.
Begin: Will now check root file system ... fsck from util-linux 2.33.1
[/sbin/fsck.ext3 (1) -- /dev/sdb1] fsck.ext3 -a -C0 /dev/sdb1 
rootfs: clean, 41039/979200 files, 518376/3910400 blocks
done.
[   30.015240][  T195] EXT4-fs (sdb1): mounting ext3 file system using the ext4 subsystem
[   30.062686][  T195] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
done.
Begin: Running /scripts/local-bottom ... done.
Begin: Running /scripts/init-bottom ... done.
INIT: version 2.93 booting
[info] Using makefile-style concurrent boot in runlevel S.
[   31.828967][    C0] random: crng init done
[ ok ] Starting hotplug events dispatcher: systemd-udevd.
[ ok ] Synthesizing the initial hotplug events (subsystems)...done.
[ ok ] Synthesizing the initial hotplug events (devices)...done.
[....] Waiting for /dev to be fully populated...[   33.157392][  T381] systemd-udevd[381]: Using default interface naming scheme 'v240'.
[   33.302743][  T381] systemd-udevd[381]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
[   33.430888][  T409] watchdog: f1020300.watchdog-timer: driver supplied timeout (4294967295) out of range
[   33.550391][  T409] watchdog: f1020300.watchdog-timer: falling back to default timeout (21)
[   33.584492][  T382] sd 1:0:0:0: Attached scsi generic sg0 type 0
[   33.685724][  T382] sd 2:0:0:0: Attached scsi generic sg1 type 0
[   33.730751][  T409] orion_wdt: Initial timeout 21 sec
[   33.806815][  T408] marvell-cesa f1030000.crypto: CESA device successfully registered
[   33.980114][  T401] systemd-udevd[401]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
done.
[ ok ] Setting hostname to 'nas'...done.
[warn] Not activating swap on swapfile. ... (warning).
[   35.366987][  T617] EXT4-fs (sdb1): re-mounted. Opts: errors=remount-ro
[info] Will now check all file systems.
fsck from util-linux 2.33.1
Checking all file systems.
LABEL=rootfs is mounted
[....] Done checking file systems. A log is being saved in /var/log/fsck/checkfs[ ok hat location is writable..
[ ok ] Cleaning up temporary files....
[....] Will now mount local filesystems:[   37.262548][  T888] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
mount: /mnt/hdd1: can't find UUID=6c83b6c1-17b3-412d-b6e4-ac78a1984c64.
 failed!
[....] Will now activate swapfile swap:swapon: /swapfile: found signature [pagesize=4096, signature=swap]
swapon: /swapfile: pagesize=4096, swapsize=536870912, devsize=536870912
swapon /swapfile
[   38.333450][  T935] Adding 524284k swap on /swapfile.  Priority:-2 extents:18 across:2748864k FS
done.
[ ok ] Checking minimum space in /tmp...done.
[ ok ] Cleaning up temporary files....
[ ok ] Starting Setting kernel variables: sysctl.
[ ok ] Initializing random number generator...done.
[....] Configuring network interfaces...Internet Systems Consortium DHCP Client 4.4.1
Copyright 2004-2018 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/eth0/00:10:75:26:6d:3a
Sending on   LPF/eth0/00:10:75:26:6d:3a
Sending on   Socket/fallback
DHCPREQUEST for 192.168.1.111 on eth0 to 255.255.255.255 port 67
DHCPACK of 192.168.1.111 from 192.168.1.1
bound to 192.168.1.111 -- renewal in 859 seconds.
[   45.276096][ T1162] NET: Registered protocol family 10
[   45.283507][ T1162] Segment Routing with IPv6
done.
[ ok ] Starting RPC port mapper daemon: rpcbind.
[ ok ] Starting NFS common utilities: statd idmapd.
[ ok ] Cleaning up temporary files....
INIT: Entering runlevel: 2
[info] Using makefile-style concurrent boot in runlevel 2.
[....] Starting busybox' syslogd implementation : syslogdStarting /sbin/syslogd...
1380 (syslogd)
. ok 
[....] Starting busybox' klogd implementation : klogdStarting /sbin/klogd...
1407 (klogd)
. ok 
[ ok ] Starting system message bus: dbus.
[ ok ] Starting Avahi mDNS/DNS-SD Daemon: avahi-daemon.
[ ok ] Starting NFS common utilities: statd idmapd.
[ ok ] Exporting directories for NFS kernel daemon....
[....] Starting NFS kernel daemon: nfsd[   51.992919][ T1547] NFSD: Using UMH upcall client tracking operations.
[   51.999667][ T1547] NFSD: starting 90-second grace period (net f000001c)
[ ok td.
[ ok ] Starting nginx: nginx.
[ ok ] Starting NTP server: ntpd.
[....] Starting PHP 7.3 FastCGI Process Manager: php-fpm7.3mkdir: created directory '/run/php'
mode of '/run/php' retained as 0755 (rwxr-xr-x)
changed ownership of '/run/php' from root:root to www-data:www-data
. ok 
[....] Starting ftp server: proftpd1970-01-01 01:00:57,381 nas proftpd[1680]: processing configuration directory '/etc/proftpd/conf.d/'
. ok 
[ ok ] Starting OpenBSD Secure Shell server: sshd.
[ ok ] Running local boot scripts (/etc/rc.local).

Debian GNU/Linux 10 nas ttyS0

nas login:
Re: Goflex net usb boot not working when hdd attached
April 21, 2020 05:06PM
ghettonas,

Cool!

Quote

I now have a working netconsole and an established serial connection. Netconsole shows the uboot log, i have a tty and the kernel starts netconsole again from /etc/initramfs-tools/modules. The serial connection omits the uboot log and i can not interact, but shows a verbose kernel log.
Is there a way to access the uboot shell from both connections?

Yes. What you see is u-boot routing input/ouput alternatively to both console. Because your serial console server box IP address is the same as netconsole server IP address. So you want to open 2 terminals at the same time, one for serial console, and one for netconsole. Then you will be able to see both, and be able to interrupt the countdown.

Or if you want to use only one terminal for serial and not using netconsole then you need to disable netconsole temporarily. Either by changing the u-boot serverip env, or change the IP of the serial console server box.


Quote

Also back in the days i had a rescue system in the nand. Do you know if this still works? I'm not sure if it's worth the trouble.

It should work, but you will need to restore a few u-boot envs that will activate rescue system. Not sure if it will worth it. If this box is always local in your home, then there is no need for that (you can always use serial console, netconsole, or just create a new USB rootfs, to recuse the box). If this box is or will be remote then rescue system is very useful.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Author:

Subject:


Spam prevention:
Please, enter the code that you see below in the input field. This is for blocking bots that try to post this form automatically. If the code is hard to read, then just try to guess it right. If you enter the wrong code, a new image is created and you get another chance to enter it right.
Message: