I have been unable to get my Pogoplug Pro to boot on any version 5 and up, starting with Kernel linux-5.4.101-oxnas-tld-1. Version Kernel linux-4.14.198-oxnas-tld-1 works just fine and I can always go back when I try a failed version at 5 and above. I can't for the life of me figure it out so I'm hoping I can get some help.
Begining with Kernel linux-5.4.101-oxnas-tld-1 the following is what I see. Everything seems the same but it just stops at "Starting kernel ..." and the light will stay solid green but Debian Bullseye never starts. I'm watching things via netconsole. Do I need to hookup serial console to better see what's going on? Thank you!
Begining with Kernel linux-5.4.101-oxnas-tld-1 the following is what I see. Everything seems the same but it just stops at "Starting kernel ..." and the light will stay solid green but Debian Bullseye never starts. I'm watching things via netconsole. Do I need to hookup serial console to better see what's going on? Thank you!
U-Boot 2015.10-tld-2 (Oct 21 2017 - 22:00:02 -0700)
OXNAS OX820
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
starting USB...
USB0: USB EHCI 1.00
scanning bus 0 for devices... 4 USB Device(s) found
scanning usb for storage devices... 2 Storage Device(s) found
Partition Map for USB device 0 -- Partition Type: DOS
Part Start Sector Num Sectors UUID Type
1 2048 625140400 f7e8b67e-01 83
Partition Map for USB device 1 -- Partition Type: DOS
Part Start Sector Num Sectors UUID Type
1 63 488392002 00000000-01 83
loading envs from usb 0 ...
** File not found /boot/uEnv.txt **
running scan_disk ...
Scan device usb
device usb 0:1
** File not found /boot/uImage **
device usb 1:1
1 bytes read in 292 ms (0 Bytes/s)
Found bootable drive on usb 1
loading uImage ...
5533400 bytes read in 533 ms (9.9 MiB/s)
loading uInitrd ...
6446956 bytes read in 593 ms (10.4 MiB/s)
loading DTB /boot/dts/ox820-pogoplug-pro.dtb ...
8688 bytes read in 253 ms (33.2 KiB/s)
## Booting kernel from Legacy Image at 60500000 ...
Image Name: Linux-5.4.179-oxnas-tld-1
Created: 2022-08-22 23:08:18 UTC
Image Type: ARM Linux Kernel Image (uncompressed)
Data Size: 5533336 Bytes = 5.3 MiB
Load Address: 60008000
Entry Point: 60008000
Verifying Checksum ... OK
## Loading init Ramdisk from Legacy Image at 60e00000 ...
Image Name: initramfs-5.4.179-oxnas-tld-1
Created: 2022-08-22 23:08:34 UTC
Image Type: ARM Linux RAMDisk Image (gzip compressed)
Data Size: 6446892 Bytes = 6.1 MiB
Load Address: 60000000
Entry Point: 60000000
Verifying Checksum ... OK
## Flattened Device Tree blob at 62c00000
Booting using the fdt blob at 0x62c00000
Starting kernel ...
U-Boot 2015.10-tld-2 (Oct 21 2017 - 22:00:02 -0700) OXNAS OX820 gcc (Debian 6.3.0-18) 6.3.0 20170516 GNU ld (GNU Binutils for Debian) 2.28 Hit any key to stop autoboot: 10 0 OX820> printenv printenv bootcmd=run bootcmd_uenv; run scan_disk; run set_bootargs; run bootcmd_exec; reset bootcmd_exec=run load_uimage; if run load_initrd; then if run load_dtb; then bootm 0x60500000 0x60e00000 0x62c00000; else bootm 0x60500000 0x60e00000; fi; else if run load_dtb; then bootm 0x60500000 - 0x62c00000; else bootm 0x60500000; fi; fi bootcmd_uenv=run uenv_load; if test $uenv_loaded -eq 1; then run uenv_import; fi bootdelay=10 bootdev=usb custom_params=zswap.enabled=1 device=0:1 devices=usb disks=0 1 2 3 dtb_file=/boot/dts/ox820-pogoplug-pro.dtb ethact=dwmac.40400000 ethaddr=00:25:31:xx:xx:xx(redacted) if_netconsole=ping $serverip ipaddr=10.1.1.196 load_dtb=echo loading DTB $dtb_file ...; load $bootdev $device 0x62c00000 $dtb_file load_initrd=echo loading uInitrd ...; load $bootdev $device 0x60e00000 /boot/uInitrd load_uimage=echo loading uImage ...; load $bootdev $device 0x60500000 /boot/uImage mainlineLinux=yes mtdids=nand0=41000000.nand mtdparts=mtdparts=41000000.nand:14m(boot),-(data) nc_ready=1 ncip=10.1.1.1 preboot=run preboot_nc 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 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 0x60500000 /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=10.1.1.1 set_bootargs=setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 $mtdparts $custom_params init=/bin/systemd start_netconsole=setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version; stderr=nc stdin=nc stdout=nc uenv_import=echo importing envs ...; env import -t 0x60510000 $filesize uenv_init_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 0; do run uenv_read_disk; done; done; uenv_read=echo loading envs from $devtype $disknum ...; if load $devtype $disknum:1 0x60500000 /boot/uEnv.txt; then setenv uenv_loaded 1; fi uenv_read_disk=if test $devtype -eq mmc; then if $devtype part; then run uenv_read; fi; else if $devtype part $disknum; then run uenv_read; fi; fi usb_custom_params=zswap.enabled=1 usb_ready_retry=15 usb_rootfstype=ext3