Welcome! Log In Create A New Profile

Advanced

Pogoplug Pro Issues - Any Linux Kernel 5 and Up

Posted by bluzfanmr1 
Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 23, 2022 03:02PM
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!

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
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 23, 2022 03:13PM
bluzfanmr1,

> 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?

Yes, you need serial console to see what's stopping the boot process. Netconsole stops outputing there. Unless you have set it up to run in Debian like recommened here:

http://forum.doozan.com/read.php?2,9522

> light will stay solid green but Debian Bullseye never starts

Do you use a static IP address or dynamic? network behavior has changed in kernel 5.x. Perhaps this is the random MAC address issue, and the static IP address ususally overcome that.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 23, 2022 04:09PM
bodhi Wrote:
-------------------------------------------------------
> bluzfanmr1,
>
> > 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?
>
> Yes, you need serial console to see what's
> stopping the boot process. Netconsole stops
> outputing there. Unless you have set it up to run
> in Debian like recommened here:
>
> http://forum.doozan.com/read.php?2,9522
>
> > light will stay solid green but Debian Bullseye
> never starts
>
> Do you use a static IP address or dynamic? network
> behavior has changed in kernel 5.x. Perhaps this
> is the random MAC address issue, and the static IP
> address ususally overcome that.

I do have it set up to run in Debian but I'm not getting anything. I am using a static IP. I'll dig out the serial cable to see what's going on.
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 24, 2022 11:13AM
I'm searching to try and find the fix but here is where it hangs:

Uncompressing Linux... done, booting the kernel.
[    0.000000][    T0] Booting Linux on physical CPU 0x0
[    0.000000][    T0] Linux version 5.4.179-oxnas-tld-1 (root@tldDebianVM) (gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)) #1.0 SMP PREEMPT Mon Feb 14 21:50:21 PST 2022
[    0.000000][    T0] CPU: ARMv6-compatible processor [410fb025] revision 5 (ARMv7), cr=00c5787d
[    0.000000][    T0] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000][    T0] OF: fdt: Machine model: Pogoplug V3 Pro
[    0.000000][    T0] Memory policy: Data cache writealloc
[    0.000000][    T0] percpu: Embedded 15 pages/cpu s30508 r8192 d22740 u61440
[    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=41000000.nand:14m(boot),-(data) zswap.enabled=1 init=/bin/systemd
[    0.000000][    T0] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear)
[    0.000000][    T0] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear)
[    0.000000][    T0] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.000000][    T0] Memory: 110668K/131072K available (8192K kernel code, 233K rwdata, 2116K rodata, 1024K init, 259K bss, 20404K reserved, 0K cma-reserved)
[    0.000000][    T0] random: get_random_u32 called from cache_random_seq_create+0x84/0x138 with crng_init=0
[    0.000000][    T0] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    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] FPGA IRQ chip 0 "interrupt-controller" @ (ptrval), 32 irqs, parent IRQ: 16
[    0.000017][    T0] sched_clock: 24 bits at 390kHz, resolution 2560ns, wraps every 21474835200ns
[    0.000051][    T0] clocksource: oxnas_rps_clocksource_timer: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 19112603332 ns
[    0.000066][    T0] timer_oxnas_rps: Registered clocksource rate 390625Hz
[    0.000092][    T0] timer_oxnas_rps: Registered clock event rate 6250000Hz prescaler 0 period 62500
[    0.000261][    T0] GIC: PPI13 is secure or misconfigured
[    0.000320][    T0] GIC: PPI13 is secure or misconfigured
[    0.000527][    T0] Console: colour dummy device 80x30
[    0.000604][    T0] Calibrating delay loop... 339.14 BogoMIPS (lpj=1695744)
[    0.050406][    T0] pid_max: default: 32768 minimum: 301
[    0.050792][    T0] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.050818][    T0] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.050974][    T0] *** VALIDATE tmpfs ***
[    0.051947][    T0] *** VALIDATE proc ***
[    0.052170][    T0] *** VALIDATE cgroup1 ***
[    0.052193][    T0] *** VALIDATE cgroup2 ***
[    0.052316][    T0] CPU: Testing write buffer coherency: ok
[    0.054417][    T1] Setting up static identity map for 0x60100000 - 0x60100038
[    0.054722][    T1] rcu: Hierarchical SRCU implementation.
[    0.055559][    T1] smp: Bringing up secondary CPUs ...
[    0.056655][    T0] GIC: PPI13 is secure or misconfigured
[    0.110684][    T1] smp: Brought up 1 node, 2 CPUs
[    0.110720][    T1] SMP: Total of 2 processors activated (678.29 BogoMIPS).
[    0.111685][    T1] devtmpfs: initialized
[    0.117043][    T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.117099][    T1] futex hash table entries: 512 (order: 2, 16384 bytes, linear)
[    0.117250][    T1] prandom: seed boundary self test passed
[    0.121548][    T1] prandom: 100 self tests passed
[    0.121566][    T1] pinctrl core: initialized pinctrl subsystem
[    0.122920][    T1] NET: Registered protocol family 16
[    0.124733][    T1] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.127480][    T1] cpuidle: using governor ladder
[    0.127562][    T1] cpuidle: using governor menu
[    6.746012][    T1] vgaarb: loaded
[    6.746856][    T1] SCSI subsystem initialized
[    6.747619][    T1] usbcore: registered new interface driver usbfs
[    6.747755][    T1] usbcore: registered new interface driver hub
[    6.747845][    T1] usbcore: registered new device driver usb
[    6.748144][    T1] pps_core: LinuxPPS API ver. 1 registered
[    6.748162][    T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    6.748203][    T1] PTP clock support registered
[    6.749706][    T1] clocksource: Switched to clocksource oxnas_rps_clocksource_timer
[    6.749765][    T1] *** VALIDATE bpf ***
[    6.750208][    T1] *** VALIDATE ramfs ***
[    6.768849][    T1] NET: Registered protocol family 2
[    6.769034][    T1] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear)
[    6.770091][    T1] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear)
[    6.770152][    T1] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    6.770199][    T1] TCP bind hash table entries: 1024 (order: 1, 8192 bytes, linear)
[    6.770234][    T1] TCP: Hash tables configured (established 1024 bind 1024)
[    6.770434][    T1] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
[    6.770488][    T1] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
[    6.770741][    T1] NET: Registered protocol family 1
[    6.771804][    T1] RPC: Registered named UNIX socket transport module.
[    6.771827][    T1] RPC: Registered udp transport module.
[    6.771842][    T1] RPC: Registered tcp transport module.
[    6.771855][    T1] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    6.771875][    T1] PCI: CLS 0 bytes, default 32
[    6.772331][    T1] Unpacking initramfs...
[    7.507333][    T1] Freeing initrd memory: 6296K
[    7.508559][    T1] Initialise system trusted keyrings
[    7.508636][    T1] Key type blacklist registered
[    7.509017][    T1] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[    7.519769][    T1] zbud: loaded
[    7.524523][    T1] NFS: Registering the id_resolver key type
[    7.524574][    T1] Key type id_resolver registered
[    7.524590][    T1] Key type id_legacy registered
[    7.524618][    T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    7.524636][    T1] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    7.524648][    T1] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    7.525826][    T1] fuse: init (API version 7.31)
[    7.526018][    T1] *** VALIDATE fuse ***
[    7.526046][    T1] *** VALIDATE fuse ***
[    7.526865][    T1] orangefs_debugfs_init: called with debug mask: :none: :0:
[    7.527162][    T1] orangefs_init: module version upstream loaded
[    7.577863][    T1] Key type asymmetric registered
[    7.577902][    T1] Asymmetric key parser 'x509' registered
[    7.577994][    T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    7.580940][    T1] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled
[    7.582484][    T1] printk: console [ttyS0] disabled
[    7.582663][    T1] 44200000.serial: ttyS0 at MMIO 0x44200000 (irq = 55, base_baud = 390625) is a 16550A
[    8.232949][    T1] printk: console [ttyS0] enabled
[    8.251476][    T1] loop: module loaded
[    8.504368][    T1] scsi host0: sata_oxnas
[    8.558464][    T1] ata1: SATA max UDMA/133 irq 57
[    8.563397][   T75] sata_oxnas: resetting SATA core
[    8.630056][    T1] Could not find a valid ONFI parameter page, trying bit-wise majority to recover it
[    8.639413][    T1] ONFI parameter recovery failed, aborting
[    8.645125][    T1] nand: device found, Manufacturer ID: 0xad, Chip ID: 0xf1
[    8.652177][    T1] nand: Hynix NAND 128MiB 3,3V 8-bit
[    8.657295][    T1] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[    8.665592][    T1] Scanning device for bad blocks
[    8.751255][    T1] 2 fixed-partitions partitions found on MTD device 41000000.nand-controller
[    8.759869][    T1] Creating 2 MTD partitions on "41000000.nand-controller":
[    8.766894][    T1] 0x000000000000-0x000000e00000 : "boot"
[    8.774799][    T1] 0x000000e00000-0x000008000000 : "data"
[    8.783895][    T1] oxnas-dwmac 40400000.ethernet: IRQ eth_lpi not found
[    8.790796][    T1] oxnas-dwmac 40400000.ethernet: PTP uses main clock
[    8.797306][    T1] oxnas-dwmac 40400000.ethernet: no reset control found
[    8.870133][    T1] oxnas-dwmac 40400000.ethernet: User ID: 0x12, Synopsys ID: 0x35
[    8.877783][    T1] oxnas-dwmac 40400000.ethernet: 	DWMAC1000
[    8.883560][    T1] oxnas-dwmac 40400000.ethernet: DMA HW capability register supported
[    8.891560][    T1] oxnas-dwmac 40400000.ethernet: RX Checksum Offload Engine supported
[    8.899535][    T1] oxnas-dwmac 40400000.ethernet: COE Type 2
[    8.905280][    T1] oxnas-dwmac 40400000.ethernet: TX Checksum insertion supported
[    8.911598][   T75] ata1: SATA link down (SStatus 0 SControl 300)
[    8.912844][    T1] oxnas-dwmac 40400000.ethernet: Wake-Up On Lan supported
[    8.925905][    T1] oxnas-dwmac 40400000.ethernet: Enhanced/Alternate descriptors
[    8.933399][    T1] oxnas-dwmac 40400000.ethernet: Enabled extended descriptors
[    8.940707][    T1] oxnas-dwmac 40400000.ethernet: Ring mode enabled
[    8.947038][    T1] oxnas-dwmac 40400000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    8.955558][    T1] oxnas-dwmac 40400000.ethernet: device MAC address 36:5d:d7:18:18:93
[    9.008033][    T1] mdio_bus stmmac-0:00: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:00, irq=POLL)
[    9.018247][    T1] mdio_bus stmmac-0:03: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:03, irq=POLL)
[    9.029473][    T1] PPP generic driver version 2.4.2
[    9.034792][    T1] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    9.042060][    T1] ehci-pci: EHCI PCI platform driver
[    9.249771][    T1] oxnas-ehci 40200100.ehci: EHCI Host Controller
[    9.255979][    T1] oxnas-ehci 40200100.ehci: new USB bus registered, assigned bus number 1
[    9.264563][    T1] oxnas-ehci 40200100.ehci: irq 52, io mem 0x40200100
[    9.299758][    T1] oxnas-ehci 40200100.ehci: USB 2.0 started, EHCI 1.00
[    9.306792][    T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
[    9.315788][    T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    9.323709][    T1] usb usb1: Product: EHCI Host Controller
[    9.329256][    T1] usb usb1: Manufacturer: Linux 5.4.179-oxnas-tld-1 ehci_hcd
[    9.336478][    T1] usb usb1: SerialNumber: 40200100.ehci
[    9.342837][    T1] hub 1-0:1.0: USB hub found
[    9.347351][    T1] hub 1-0:1.0: 2 ports detected
[    9.353303][    T1] usbcore: registered new interface driver cdc_wdm
[    9.359864][    T1] usbcore: registered new interface driver usb-storage
[    9.366748][    T1] usbcore: registered new interface driver usbserial_generic
[    9.374044][    T1] usbserial: USB Serial support registered for generic
[    9.381516][    T1] mousedev: PS/2 mouse device common for all mice
[    9.387898][    T1] i2c /dev entries driver
[    9.393640][    T1] hidraw: raw HID events driver (C) Jiri Kosina
[    9.399974][    T1] usbcore: registered new interface driver usbhid
[    9.406213][    T1] usbhid: USB HID core driver
[    9.412264][    T1] NET: Registered protocol family 10
[    9.418956][    T1] Segment Routing with IPv6
[    9.423505][    T1] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    9.432087][    T1] NET: Registered protocol family 17
[    9.437580][    T1] Key type dns_resolver registered
[    9.443266][    T1] registered taskstats version 1
[    9.448040][    T1] Loading compiled-in X.509 certificates
[    9.453790][    T1] zswap: loaded using pool lzo/zbud
[    9.459415][    T1] Key type ._fscrypt registered
[    9.464189][    T1] Key type .fscrypt registered
[    9.556815][    T1] Key type big_key registered
[    9.600089][    T1] Key type encrypted registered
[    9.639759][   T21] usb 1-1: new high-speed USB device number 2 using oxnas-ehci
[    9.841592][   T21] usb 1-1: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=77.64
[    9.850552][   T89] oxnas-pcie 47c00000.pcie: PCIe version/deviceID 0x82510b5
[    9.857804][   T89] oxnas-pcie 47c00000.pcie: link up
[    9.862909][   T21] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    9.870773][   T21] usb 1-1: Product: USB2.0 Hub
[    9.876026][   T89] oxnas-pcie 47c00000.pcie: PCI host bridge to bus 0000:00
[    9.883381][   T89] pci_bus 0000:00: root bus resource [mem 0x48000000-0x49ffffff]
[    9.891269][   T21] hub 1-1:1.0: USB hub found
[    9.895772][   T89] pci_bus 0000:00: root bus resource [mem 0x4a000000-0x4bdfffff pref]
[    9.903882][   T21] hub 1-1:1.0: 4 ports detected
[    9.908631][   T89] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff]
[    9.915724][   T89] pci_bus 0000:00: root bus resource [bus 00-7f]
[    9.922470][   T89] pci 0000:00:00.0: [1814:3090] type 00 class 0x028000
[    9.929336][   T89] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x0000ffff]
[    9.938470][   T89] PCI: bus0: Fast back to back transfers disabled
[    9.944834][   T89] pci 0000:00:00.0: BAR 0: assigned [mem 0x48000000-0x4800ffff]
[    9.953185][    T1] hctosys: unable to open rtc device (rtc0)
[    9.961018][    T1] Freeing unused kernel memory: 1024K
[    9.967528][    T1] Checked W+X mappings: passed, no W+X pages found
[    9.973931][    T1] Run /init as init process
Loading, please wait...
Starting version 247.3-7
[   10.259788][   T89] usb 1-1.4: new high-speed USB device number 3 using oxnas-ehci
[   10.498895][   T89] usb 1-1.4: New USB device found, idVendor=152d, idProduct=0578, bcdDevice= 2.04
[   10.514242][   T89] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   10.551710][   T89] usb 1-1.4: Product: External USB 3.0
[   10.557022][   T89] usb 1-1.4: Manufacturer: JMicron
[   10.562104][   T89] usb 1-1.4: SerialNumber: 201703310007F
[   10.588579][  T120] scsi host1: uas
[   10.594247][   T89] scsi 1:0:0:0: Direct-Access     External USB3.0           0204 PQ: 0 ANSI: 6
[   10.603345][  T120] usbcore: registered new interface driver uas
[   10.618508][    T7] sd 1:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/233 GiB)
[   10.637683][    T7] sd 1:0:0:0: [sda] 4096-byte physical blocks
[   10.649784][    T7] sd 1:0:0:0: [sda] Write Protect is off
[   10.660700][    T7] sd 1:0:0:0: [sda] Disabling FUA
[   10.665628][    T7] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   10.687454][    T7] sd 1:0:0:0: [sda] Optimal transfer size 33553920 bytes not a multiple of physical block size (4096 bytes)
Begin: Loading essential drivers ... [   11.249064][  T134] netpoll: netconsole: local port 6666
[   11.254469][  T134] netpoll: netconsole: local IPv4 address 10.1.1.196
[   11.261071][  T134] netpoll: netconsole: interface 'eth0'
[   11.266449][  T134] netpoll: netconsole: remote port 6666
[   11.271869][  T134] netpoll: netconsole: remote IPv4 address 10.1.1.1
[   11.278282][  T134] netpoll: netconsole: remote ethernet address ff:ff:ff:ff:ff:ff
[   11.285903][  T134] netpoll: netconsole: device eth0 not up yet, forcing it
[   11.296698][  T134] oxnas-dwmac 40400000.ethernet eth0: PHY [stmmac-0:00] driver [Generic PHY]
[   11.310648][  T134] oxnas-dwmac 40400000.ethernet eth0: No Safety Features support found
[   11.318725][  T134] oxnas-dwmac 40400000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[   11.328225][  T134] oxnas-dwmac 40400000.ethernet eth0: registered PTP clock
[   11.337786][  T134] oxnas-dwmac 40400000.ethernet eth0: configuring for phy/rgmii link mode
[   12.459458][    T7]  sda: sda1
[   12.479987][    T7] sd 1:0:0:0: [sda] Attached SCSI disk
[   12.655710][    C0] random: fast init done
[   15.359731][  T134] netpoll: netconsole: timeout waiting for carrier



Edited 1 time(s). Last edit at 08/24/2022 01:46PM by bluzfanmr1.
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 24, 2022 06:21PM
bluzfanmr1,

> [ 15.359731][ T134] netpoll: netconsole:
> timeout waiting for carrier

That sounds familiar. And your boot log also show:

- a random MAC address (36:5d:d7:18:18:93)
- The DTB is probably appended to the uImage

1. Boot again and in serial console,
printenv ethaddr
See if it is the correct MAC address (no need to print it out) of this box (check the case sticker if you don't have a record of it).

2. Mount the USB rootfs on another Linux box and (if it is mounted at /media/sdb1)

cd /media/sdb1/boot
ls -latr
By the look of the file size, and date, we should be able to tell if somehow the DTB was appended inside uImage. If it is then you'll need to copy the uImage.bak over or create a new one to boot with
cd /boot
mkimage -A arm -O linux -T kernel -C none -a 0x60008000 -e 0x60008000 -n Linux-5.4.179-oxnas-tld-1 -d vmlinuz-5.4.179-oxnas-tld-1 uImage

3. Make sure you are not using USB 3.0 flash drive. This box sometime has problem booting USB 3.0 rootfs.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 12:36PM
bodhi Wrote:
-------------------------------------------------------
> bluzfanmr1,
>
> > [ 15.359731][ T134] netpoll: netconsole:
> > timeout waiting for carrier
>
> That sounds familiar. And your boot log also
> show:
>
> - a random MAC address (36:5d:d7:18:18:93)
> - The DTB is probably appended to the uImage
>
> 1. Boot again and in serial console,
>
> printenv ethaddr
>
> See if it is the correct MAC address (no need to
> print it out) of this box (check the case sticker
> if you don't have a record of it).

1. The MAC address is correct.

> 2. Mount the USB rootfs on another Linux box and
> (if it is mounted at /media/sdb1)
>
>
> cd /media/sdb1/boot
> ls -latr
>
> By the look of the file size, and date, we should
> be able to tell if somehow the DTB was appended
> inside uImage. If it is then you'll need to copy
> the uImage.bak over or create a new one to boot
> with
>
> cd /boot
> mkimage -A arm -O linux -T kernel -C none -a
> 0x60008000 -e 0x60008000 -n
> Linux-5.4.179-oxnas-tld-1 -d
> vmlinuz-5.4.179-oxnas-tld-1 uImage
>

2. Here is that data prior to creating a new one to boot with as suggested:

root@Pogoplug2:/mnt/boot# ls -latr
total 138856
-rwxr-xr-x  1 root root  4612048 Sep 20  2020 zImage-4.14.198-oxnas-tld-1
-rw-r--r--  1 root root   128079 Sep 20  2020 config-4.14.198-oxnas-tld-1
-rw-r--r--  1 root root  1799775 Sep 20  2020 System.map-4.14.198-oxnas-tld-1
-rwxr-xr-x  1 root root  4612048 Sep 20  2020 vmlinuz-4.14.198-oxnas-tld-1
-rw-r--r--  1 root root 10923912 Sep 20  2020 linux-headers-4.14.198-oxnas-tld-1_1.0_armel.deb
-rw-r--r--  1 root root 12988764 Sep 20  2020 linux-image-4.14.198-oxnas-tld-1_1.0_armel.deb
-rw-r--r--  1 root root   165613 Oct  2  2020 linux-4.14.198-oxnas-tld-1.patch
drwxr-xr-x  2 root root     4096 Feb 28  2021 dts
drwxrwxrwx 28 root root     4096 Apr 19  2021 ..
-rwxr-xr-x  1 root root  5533336 Feb 14  2022 vmlinuz-5.4.179-oxnas-tld-1
-rw-r--r--  1 root root   142130 Feb 14  2022 config-5.4.179-oxnas-tld-1
-rw-r--r--  1 root root  1655791 Feb 14  2022 System.map-5.4.179-oxnas-tld-1
-rwxr-xr-x  1 root root  5533336 Feb 14  2022 zImage-5.4.179-oxnas-tld-1
-rw-r--r--  1 root root 11311708 Feb 14  2022 linux-headers-5.4.179-oxnas-tld-1_1.0_armel.deb
-rw-r--r--  1 root root 14676152 Feb 14  2022 linux-image-5.4.179-oxnas-tld-1_1.0_armel.deb
-rw-r--r--  1 root root    61440 Feb 14  2022 linux-dtb-5.4.179-oxnas-tld-1.tar
-rw-r--r--  1 root root   160063 Feb 15  2022 linux-5.4.179-oxnas-tld-1.patch
-rw-r--r--  1 root root  6401910 Aug 23 15:15 initrd.img-4.14.198-oxnas-tld-1
-rw-r--r--  1 root root  4612112 Aug 23 15:15 uImage.bak
-rw-r--r--  1 root root  6401974 Aug 23 15:15 uInitrd.bak
-rw-r--r--  1 root root 31733414 Aug 25 11:03 linux-5.4.179-oxnas-tld-1.bodhi.tar.bz2
-rw-r--r--  1 root root  6446728 Aug 25 11:05 initrd.img-5.4.179-oxnas-tld-1
-rw-r--r--  1 root root  5533400 Aug 25 11:06 uImage
drwxr-xr-x  3 root root     4096 Aug 25 11:06 .
-rw-r--r--  1 root root  6446792 Aug 25 11:06 uInitrd

> 3. Make sure you are not using USB 3.0 flash
> drive. This box sometime has problem booting USB
> 3.0 rootfs.

3. I have successfully been using an external 2.5" hard drive enclosure forever that is USB 3.0 and so I also tried another that isn't USB 3.0, but no luck.

Like I said earlier, I can go back to 4.14.198 and everything works perfectly. It seems like it should be something easy and I can usually figure things out but I'm stumped! I've been at this on and off for months. If you have any more ideas or I've done something wrong, please let me know. I appreciate all the help.
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 03:28PM
bluzfanmr1,

Since you have recreated the uImage, boot again with serial console. Interrupt u-boot countdown, and turn off netconsole.

setenv preboot
setenv mtdparts 'mtdparts=41000000.nand-controller:14m(boot),-(data)'
saveenv

and then
reset

Let it boot automatically.

Please the entire serial console log here.

=======

BTW, I'm about to release another stable kernel version (5.4.210) for this box.

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



Edited 1 time(s). Last edit at 08/25/2022 03:55PM by bodhi.
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 03:33PM
I've booted up my Pogo Pro and not seeing the problem (it booted OK into Debian) but I am seeing in the boot log something I don't like. So stay tune.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 03:53PM
bodhi Wrote:
-------------------------------------------------------
> bluzfanmr1,
>
> Since you have recreated the uImage, boot again
> with serial console. Interrupt u-boot countdown,
> and turn off netconsole.
>
>
> setenv preboot
> saveenv
>
>
> and then
>
> reset
>
>
> Let it boot automatically.
>
> Please the entire serial console log here.
>
> =======
>
> BTW, I'm about to release another stable kernel
> version (5.4.210) for this box.

I can hold off and wait for the next release if that's easier? Here's the latest (same result) after turning off netconsole:

U-Boot SPL 2013.10-tld-4 (Sep 07 2014 - 14:10:12)
  Boot device: NAND
Attempting to set PLLA to 850 MHz ...
  plla_ctrl0 : 0000020a
  plla_ctrl1 : 00330000
  plla_ctrl2 : 0065008b
  plla_ctrl3 : 000000f1

PLLA Set


U-Boot 2015.10-tld-2 (Oct 21 2017 - 22:00:02 -0700)
OXNAS OX820

DRAM:  128 MiB
NAND:  128 MiB
In:    serial
Out:   serial
Err:   serial
Net:   dwmac.40400000
Hit any key to stop autoboot:  0 
starting USB...
USB0:   USB EHCI 1.00
scanning bus 0 for devices... 3 USB Device(s) found
       scanning usb for storage devices... 1 Storage Device(s) found

Partition Map for USB device 0  --   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
1 bytes read in 260 ms (0 Bytes/s)
Found bootable drive on usb 0
loading uImage ...
5533400 bytes read in 507 ms (10.4 MiB/s)
loading uInitrd ...
6446792 bytes read in 562 ms (10.9 MiB/s)
loading DTB /boot/dts/ox820-pogoplug-pro.dtb ...
8688 bytes read in 255 ms (33.2 KiB/s)
## Booting kernel from Legacy Image at 60500000 ...
   Image Name:   Linux-5.4.179-oxnas-tld-1
   Created:      2022-08-25  17:20:14 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-25  17:06:12 UTC
   Image Type:   ARM Linux RAMDisk Image (gzip compressed)
   Data Size:    6446728 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
   Loading Kernel Image ... OK
   Loading Ramdisk to 67800000, end 67e25e88 ... OK
   Loading Device Tree to 677fa000, end 677ff1ef ... OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
[    0.000000][    T0] Booting Linux on physical CPU 0x0
[    0.000000][    T0] Linux version 5.4.179-oxnas-tld-1 (root@tldDebianVM) (gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)) #1.0 SMP PREEMPT Mon Feb 14 21:50:21 PST 2022
[    0.000000][    T0] CPU: ARMv6-compatible processor [410fb025] revision 5 (ARMv7), cr=00c5787d
[    0.000000][    T0] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000][    T0] OF: fdt: Machine model: Pogoplug V3 Pro
[    0.000000][    T0] Memory policy: Data cache writealloc
[    0.000000][    T0] percpu: Embedded 15 pages/cpu s30508 r8192 d22740 u61440
[    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=41000000.nand:14m(boot),-(data) zswap.enabled=1 init=/bin/systemd
[    0.000000][    T0] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear)
[    0.000000][    T0] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear)
[    0.000000][    T0] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.000000][    T0] Memory: 110668K/131072K available (8192K kernel code, 233K rwdata, 2116K rodata, 1024K init, 259K bss, 20404K reserved, 0K cma-reserved)
[    0.000000][    T0] random: get_random_u32 called from cache_random_seq_create+0x84/0x138 with crng_init=0
[    0.000000][    T0] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    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] FPGA IRQ chip 0 "interrupt-controller" @ (ptrval), 32 irqs, parent IRQ: 16
[    0.000017][    T0] sched_clock: 24 bits at 390kHz, resolution 2560ns, wraps every 21474835200ns
[    0.000048][    T0] clocksource: oxnas_rps_clocksource_timer: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 19112603332 ns
[    0.000066][    T0] timer_oxnas_rps: Registered clocksource rate 390625Hz
[    0.000089][    T0] timer_oxnas_rps: Registered clock event rate 6250000Hz prescaler 0 period 62500
[    0.000263][    T0] GIC: PPI13 is secure or misconfigured
[    0.000320][    T0] GIC: PPI13 is secure or misconfigured
[    0.000532][    T0] Console: colour dummy device 80x30
[    0.000611][    T0] Calibrating delay loop... 339.14 BogoMIPS (lpj=1695744)
[    0.050406][    T0] pid_max: default: 32768 minimum: 301
[    0.050790][    T0] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.050818][    T0] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.050977][    T0] *** VALIDATE tmpfs ***
[    0.051957][    T0] *** VALIDATE proc ***
[    0.052183][    T0] *** VALIDATE cgroup1 ***
[    0.052208][    T0] *** VALIDATE cgroup2 ***
[    0.052334][    T0] CPU: Testing write buffer coherency: ok
[    0.054420][    T1] Setting up static identity map for 0x60100000 - 0x60100038
[    0.054735][    T1] rcu: Hierarchical SRCU implementation.
[    0.055598][    T1] smp: Bringing up secondary CPUs ...
[    0.056709][    T0] GIC: PPI13 is secure or misconfigured
[    0.110681][    T1] smp: Brought up 1 node, 2 CPUs
[    0.110722][    T1] SMP: Total of 2 processors activated (678.29 BogoMIPS).
[    0.111687][    T1] devtmpfs: initialized
[    0.116989][    T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.117045][    T1] futex hash table entries: 512 (order: 2, 16384 bytes, linear)
[    0.117194][    T1] prandom: seed boundary self test passed
[    0.121495][    T1] prandom: 100 self tests passed
[    0.121515][    T1] pinctrl core: initialized pinctrl subsystem
[    0.122874][    T1] NET: Registered protocol family 16
[    0.124707][    T1] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.127383][    T1] cpuidle: using governor ladder
[    0.127462][    T1] cpuidle: using governor menu
[    6.743820][    T1] vgaarb: loaded
[    6.744634][    T1] SCSI subsystem initialized
[    6.745387][    T1] usbcore: registered new interface driver usbfs
[    6.745520][    T1] usbcore: registered new interface driver hub
[    6.745612][    T1] usbcore: registered new device driver usb
[    6.745904][    T1] pps_core: LinuxPPS API ver. 1 registered
[    6.745922][    T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    6.745958][    T1] PTP clock support registered
[    6.747550][    T1] clocksource: Switched to clocksource oxnas_rps_clocksource_timer
[    6.747609][    T1] *** VALIDATE bpf ***
[    6.748047][    T1] *** VALIDATE ramfs ***
[    6.766691][    T1] NET: Registered protocol family 2
[    6.766873][    T1] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear)
[    6.767918][    T1] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear)
[    6.767979][    T1] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    6.768025][    T1] TCP bind hash table entries: 1024 (order: 1, 8192 bytes, linear)
[    6.768061][    T1] TCP: Hash tables configured (established 1024 bind 1024)
[    6.768261][    T1] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
[    6.768320][    T1] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
[    6.768586][    T1] NET: Registered protocol family 1
[    6.769623][    T1] RPC: Registered named UNIX socket transport module.
[    6.769651][    T1] RPC: Registered udp transport module.
[    6.769666][    T1] RPC: Registered tcp transport module.
[    6.769681][    T1] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    6.769707][    T1] PCI: CLS 0 bytes, default 32
[    6.770160][    T1] Unpacking initramfs...
[    7.503523][    T1] Freeing initrd memory: 6296K
[    7.504780][    T1] Initialise system trusted keyrings
[    7.504852][    T1] Key type blacklist registered
[    7.505233][    T1] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[    7.515322][    T1] zbud: loaded
[    7.520279][    T1] NFS: Registering the id_resolver key type
[    7.520327][    T1] Key type id_resolver registered
[    7.520343][    T1] Key type id_legacy registered
[    7.520376][    T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    7.520391][    T1] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    7.520404][    T1] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    7.521623][    T1] fuse: init (API version 7.31)
[    7.521820][    T1] *** VALIDATE fuse ***
[    7.521848][    T1] *** VALIDATE fuse ***
[    7.522667][    T1] orangefs_debugfs_init: called with debug mask: :none: :0:
[    7.522974][    T1] orangefs_init: module version upstream loaded
[    7.572656][    T1] Key type asymmetric registered
[    7.572697][    T1] Asymmetric key parser 'x509' registered
[    7.572792][    T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    7.575587][    T1] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled
[    7.577141][    T1] printk: console [ttyS0] disabled
[    7.577328][    T1] 44200000.serial: ttyS0 at MMIO 0x44200000 (irq = 55, base_baud = 390625) is a 16550A
[    8.227714][    T1] printk: console [ttyS0] enabled
[    8.246341][    T1] loop: module loaded
[    8.499353][    T1] scsi host0: sata_oxnas
[    8.553477][    T1] ata1: SATA max UDMA/133 irq 57
[    8.558417][   T75] sata_oxnas: resetting SATA core
[    8.627909][    T1] Could not find a valid ONFI parameter page, trying bit-wise majority to recover it
[    8.637265][    T1] ONFI parameter recovery failed, aborting
[    8.642982][    T1] nand: device found, Manufacturer ID: 0xad, Chip ID: 0xf1
[    8.650035][    T1] nand: Hynix NAND 128MiB 3,3V 8-bit
[    8.655155][    T1] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[    8.663452][    T1] Scanning device for bad blocks
[    8.749831][    T1] 2 fixed-partitions partitions found on MTD device 41000000.nand-controller
[    8.758448][    T1] Creating 2 MTD partitions on "41000000.nand-controller":
[    8.765475][    T1] 0x000000000000-0x000000e00000 : "boot"
[    8.773409][    T1] 0x000000e00000-0x000008000000 : "data"
[    8.782535][    T1] oxnas-dwmac 40400000.ethernet: IRQ eth_lpi not found
[    8.789432][    T1] oxnas-dwmac 40400000.ethernet: PTP uses main clock
[    8.795944][    T1] oxnas-dwmac 40400000.ethernet: no reset control found
[    8.867942][    T1] oxnas-dwmac 40400000.ethernet: User ID: 0x12, Synopsys ID: 0x35
[    8.875586][    T1] oxnas-dwmac 40400000.ethernet: 	DWMAC1000
[    8.881372][    T1] oxnas-dwmac 40400000.ethernet: DMA HW capability register supported
[    8.889374][    T1] oxnas-dwmac 40400000.ethernet: RX Checksum Offload Engine supported
[    8.897346][    T1] oxnas-dwmac 40400000.ethernet: COE Type 2
[    8.899463][   T75] ata1: SATA link down (SStatus 0 SControl 300)
[    8.903098][    T1] oxnas-dwmac 40400000.ethernet: TX Checksum insertion supported
[    8.916759][    T1] oxnas-dwmac 40400000.ethernet: Wake-Up On Lan supported
[    8.923724][    T1] oxnas-dwmac 40400000.ethernet: Enhanced/Alternate descriptors
[    8.931207][    T1] oxnas-dwmac 40400000.ethernet: Enabled extended descriptors
[    8.938516][    T1] oxnas-dwmac 40400000.ethernet: Ring mode enabled
[    8.944844][    T1] oxnas-dwmac 40400000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    8.953369][    T1] oxnas-dwmac 40400000.ethernet: device MAC address aa:1a:09:ca:81:ac
[    9.005777][    T1] mdio_bus stmmac-0:00: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:00, irq=POLL)
[    9.015992][    T1] mdio_bus stmmac-0:03: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:03, irq=POLL)
[    9.027200][    T1] PPP generic driver version 2.4.2
[    9.032527][    T1] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    9.039795][    T1] ehci-pci: EHCI PCI platform driver
[    9.247616][    T1] oxnas-ehci 40200100.ehci: EHCI Host Controller
[    9.253831][    T1] oxnas-ehci 40200100.ehci: new USB bus registered, assigned bus number 1
[    9.262417][    T1] oxnas-ehci 40200100.ehci: irq 52, io mem 0x40200100
[    9.297602][    T1] oxnas-ehci 40200100.ehci: USB 2.0 started, EHCI 1.00
[    9.304632][    T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
[    9.313630][    T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    9.321553][    T1] usb usb1: Product: EHCI Host Controller
[    9.327106][    T1] usb usb1: Manufacturer: Linux 5.4.179-oxnas-tld-1 ehci_hcd
[    9.334330][    T1] usb usb1: SerialNumber: 40200100.ehci
[    9.340672][    T1] hub 1-0:1.0: USB hub found
[    9.345187][    T1] hub 1-0:1.0: 2 ports detected
[    9.351134][    T1] usbcore: registered new interface driver cdc_wdm
[    9.357711][    T1] usbcore: registered new interface driver usb-storage
[    9.364597][    T1] usbcore: registered new interface driver usbserial_generic
[    9.371893][    T1] usbserial: USB Serial support registered for generic
[    9.379356][    T1] mousedev: PS/2 mouse device common for all mice
[    9.385743][    T1] i2c /dev entries driver
[    9.391416][    T1] hidraw: raw HID events driver (C) Jiri Kosina
[    9.397793][    T1] usbcore: registered new interface driver usbhid
[    9.404034][    T1] usbhid: USB HID core driver
[    9.410076][    T1] NET: Registered protocol family 10
[    9.416744][    T1] Segment Routing with IPv6
[    9.421299][    T1] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    9.429982][    T1] NET: Registered protocol family 17
[    9.435479][    T1] Key type dns_resolver registered
[    9.441159][    T1] registered taskstats version 1
[    9.445941][    T1] Loading compiled-in X.509 certificates
[    9.451686][    T1] zswap: loaded using pool lzo/zbud
[    9.457303][    T1] Key type ._fscrypt registered
[    9.462074][    T1] Key type .fscrypt registered
[    9.554583][    T1] Key type big_key registered
[    9.598074][    T1] Key type encrypted registered
[    9.637621][   T21] usb 1-1: new high-speed USB device number 2 using oxnas-ehci
[    9.839447][   T21] usb 1-1: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=77.64
[    9.848407][   T89] oxnas-pcie 47c00000.pcie: PCIe version/deviceID 0x82510b5
[    9.855654][   T89] oxnas-pcie 47c00000.pcie: link up
[    9.860761][   T21] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    9.868628][   T21] usb 1-1: Product: USB2.0 Hub
[    9.873889][   T89] oxnas-pcie 47c00000.pcie: PCI host bridge to bus 0000:00
[    9.881233][   T89] pci_bus 0000:00: root bus resource [mem 0x48000000-0x49ffffff]
[    9.889111][   T21] hub 1-1:1.0: USB hub found
[    9.893616][   T89] pci_bus 0000:00: root bus resource [mem 0x4a000000-0x4bdfffff pref]
[    9.901719][   T21] hub 1-1:1.0: 4 ports detected
[    9.906465][   T89] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff]
[    9.913551][   T89] pci_bus 0000:00: root bus resource [bus 00-7f]
[    9.920327][   T89] pci 0000:00:00.0: [1814:3090] type 00 class 0x028000
[    9.927196][   T89] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x0000ffff]
[    9.936291][   T89] PCI: bus0: Fast back to back transfers disabled
[    9.942653][   T89] pci 0000:00:00.0: BAR 0: assigned [mem 0x48000000-0x4800ffff]
[    9.950999][    T1] hctosys: unable to open rtc device (rtc0)
[    9.958830][    T1] Freeing unused kernel memory: 1024K
[    9.965337][    T1] Checked W+X mappings: passed, no W+X pages found
[    9.971740][    T1] Run /init as init process
Loading, please wait...
Starting version 247.3-7
[   10.257640][   T89] usb 1-1.4: new high-speed USB device number 3 using oxnas-ehci
[   10.419637][   T89] usb 1-1.4: New USB device found, idVendor=13fd, idProduct=0840, bcdDevice= 1.14
[   10.437982][   T89] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   10.445967][   T89] usb 1-1.4: Product: External
[   10.467870][   T89] usb 1-1.4: Manufacturer: Generic
[   10.472834][   T89] usb 1-1.4: SerialNumber: 303931303038504234323036
[   10.489297][   T89] usb-storage 1-1.4:1.0: USB Mass Storage device detected
[   10.527744][   T89] scsi host1: usb-storage 1-1.4:1.0
[   10.648890][  T122] usbcore: registered new interface driver uas
Begin: Loading essential drivers ... [   11.217922][  T132] netpoll: netconsole: local port 6666
[   11.223232][  T132] netpoll: netconsole: local IPv4 address 10.1.1.196
[   11.229826][  T132] netpoll: netconsole: interface 'eth0'
[   11.235205][  T132] netpoll: netconsole: remote port 6666
[   11.240616][  T132] netpoll: netconsole: remote IPv4 address 10.1.1.1
[   11.247032][  T132] netpoll: netconsole: remote ethernet address ff:ff:ff:ff:ff:ff
[   11.254599][  T132] netpoll: netconsole: device eth0 not up yet, forcing it
[   11.262300][  T132] oxnas-dwmac 40400000.ethernet eth0: PHY [stmmac-0:00] driver [Generic PHY]
[   11.277765][  T132] oxnas-dwmac 40400000.ethernet eth0: No Safety Features support found
[   11.285841][  T132] oxnas-dwmac 40400000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[   11.295331][  T132] oxnas-dwmac 40400000.ethernet eth0: registered PTP clock
[   11.302466][  T132] oxnas-dwmac 40400000.ethernet eth0: configuring for phy/rgmii link mode
[   11.608698][   T89] scsi 1:0:0:0: Direct-Access     Generic  External         1.14 PQ: 0 ANSI: 4
[   11.621340][   T54] sd 1:0:0:0: [sda] 488397167 512-byte logical blocks: (250 GB/233 GiB)
[   11.635307][   T54] sd 1:0:0:0: [sda] Write Protect is off
[   11.641505][   T54] sd 1:0:0:0: [sda] No Caching mode page found
[   11.647498][   T54] sd 1:0:0:0: [sda] Assuming drive cache: write through
[   11.662796][   T54]  sda: sda1
[   11.672299][   T54] sd 1:0:0:0: [sda] Attached SCSI disk
[   12.115397][    C0] random: fast init done
[   15.337579][  T132] netpoll: netconsole: timeout waiting for carrier
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 03:55PM
OK I've updated the post above:

https://forum.doozan.com/read.php?2,132799,132846#msg-132846

Please try.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 04:02PM
bodhi Wrote:
-------------------------------------------------------
> OK I've updated the post above:
>
> https://forum.doozan.com/read.php?2,132799,132846#msg-132846
>
> Please try.

No luck, it still stops at the same spot:

U-Boot SPL 2013.10-tld-4 (Sep 07 2014 - 14:10:12)
  Boot device: NAND
Attempting to set PLLA to 850 MHz ...
  plla_ctrl0 : 0000020a
  plla_ctrl1 : 00330000
  plla_ctrl2 : 0065008b
  plla_ctrl3 : 000000f1

PLLA Set


U-Boot 2015.10-tld-2 (Oct 21 2017 - 22:00:02 -0700)
OXNAS OX820

DRAM:  128 MiB
NAND:  128 MiB
In:    serial
Out:   serial
Err:   serial
Net:   dwmac.40400000
Hit any key to stop autoboot:  0 
OX820> setenv preboot
OX820> setenv mtdparts 'mtdparts=41000000.nand-controller:14m(boot),-(data)'
OX820> saveenv
Saving Environment to NAND...
Erasing NAND...
Erasing at 0x120000 -- 100% complete.
Writing to NAND... OK
OX820> reset
resetting ...

U-Boot SPL 2013.10-tld-4 (Sep 07 2014 - 14:10:12)
  Boot device: NAND
Attempting to set PLLA to 850 MHz ...
  plla_ctrl0 : 0000020a
  plla_ctrl1 : 00330000
  plla_ctrl2 : 0065008b
  plla_ctrl3 : 000000f1

PLLA Set


U-Boot 2015.10-tld-2 (Oct 21 2017 - 22:00:02 -0700)
OXNAS OX820

DRAM:  128 MiB
NAND:  128 MiB
In:    serial
Out:   serial
Err:   serial
Net:   dwmac.40400000
Hit any key to stop autoboot:  0 
starting USB...
USB0:   USB EHCI 1.00
scanning bus 0 for devices... 3 USB Device(s) found
       scanning usb for storage devices... 1 Storage Device(s) found

Partition Map for USB device 0  --   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
1 bytes read in 260 ms (0 Bytes/s)
Found bootable drive on usb 0
loading uImage ...
5533400 bytes read in 506 ms (10.4 MiB/s)
loading uInitrd ...
6446792 bytes read in 573 ms (10.7 MiB/s)
loading DTB /boot/dts/ox820-pogoplug-pro.dtb ...
8688 bytes read in 255 ms (33.2 KiB/s)
## Booting kernel from Legacy Image at 60500000 ...
   Image Name:   Linux-5.4.179-oxnas-tld-1
   Created:      2022-08-25  17:20:14 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-25  17:06:12 UTC
   Image Type:   ARM Linux RAMDisk Image (gzip compressed)
   Data Size:    6446728 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
   Loading Kernel Image ... OK
   Loading Ramdisk to 67800000, end 67e25e88 ... OK
   Loading Device Tree to 677fa000, end 677ff1ef ... OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
[    0.000000][    T0] Booting Linux on physical CPU 0x0
[    0.000000][    T0] Linux version 5.4.179-oxnas-tld-1 (root@tldDebianVM) (gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)) #1.0 SMP PREEMPT Mon Feb 14 21:50:21 PST 2022
[    0.000000][    T0] CPU: ARMv6-compatible processor [410fb025] revision 5 (ARMv7), cr=00c5787d
[    0.000000][    T0] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000][    T0] OF: fdt: Machine model: Pogoplug V3 Pro
[    0.000000][    T0] Memory policy: Data cache writealloc
[    0.000000][    T0] percpu: Embedded 15 pages/cpu s30508 r8192 d22740 u61440
[    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=41000000.nand-controller:14m(boot),-(data) zswap.enabled=1 init=/bin/systemd
[    0.000000][    T0] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear)
[    0.000000][    T0] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear)
[    0.000000][    T0] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.000000][    T0] Memory: 110668K/131072K available (8192K kernel code, 233K rwdata, 2116K rodata, 1024K init, 259K bss, 20404K reserved, 0K cma-reserved)
[    0.000000][    T0] random: get_random_u32 called from cache_random_seq_create+0x84/0x138 with crng_init=0
[    0.000000][    T0] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    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] FPGA IRQ chip 0 "interrupt-controller" @ (ptrval), 32 irqs, parent IRQ: 16
[    0.000017][    T0] sched_clock: 24 bits at 390kHz, resolution 2560ns, wraps every 21474835200ns
[    0.000051][    T0] clocksource: oxnas_rps_clocksource_timer: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 19112603332 ns
[    0.000069][    T0] timer_oxnas_rps: Registered clocksource rate 390625Hz
[    0.000094][    T0] timer_oxnas_rps: Registered clock event rate 6250000Hz prescaler 0 period 62500
[    0.000266][    T0] GIC: PPI13 is secure or misconfigured
[    0.000320][    T0] GIC: PPI13 is secure or misconfigured
[    0.000537][    T0] Console: colour dummy device 80x30
[    0.000616][    T0] Calibrating delay loop... 339.14 BogoMIPS (lpj=1695744)
[    0.050406][    T0] pid_max: default: 32768 minimum: 301
[    0.050792][    T0] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.050818][    T0] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.050974][    T0] *** VALIDATE tmpfs ***
[    0.051934][    T0] *** VALIDATE proc ***
[    0.052157][    T0] *** VALIDATE cgroup1 ***
[    0.052183][    T0] *** VALIDATE cgroup2 ***
[    0.052303][    T0] CPU: Testing write buffer coherency: ok
[    0.054402][    T1] Setting up static identity map for 0x60100000 - 0x60100038
[    0.054702][    T1] rcu: Hierarchical SRCU implementation.
[    0.055567][    T1] smp: Bringing up secondary CPUs ...
[    0.056691][    T0] GIC: PPI13 is secure or misconfigured
[    0.110684][    T1] smp: Brought up 1 node, 2 CPUs
[    0.110722][    T1] SMP: Total of 2 processors activated (678.29 BogoMIPS).
[    0.111700][    T1] devtmpfs: initialized
[    0.117053][    T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.117112][    T1] futex hash table entries: 512 (order: 2, 16384 bytes, linear)
[    0.117263][    T1] prandom: seed boundary self test passed
[    0.121564][    T1] prandom: 100 self tests passed
[    0.121587][    T1] pinctrl core: initialized pinctrl subsystem
[    0.122969][    T1] NET: Registered protocol family 16
[    0.124771][    T1] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.127720][    T1] cpuidle: using governor ladder
[    0.127802][    T1] cpuidle: using governor menu
[    6.743764][    T1] vgaarb: loaded
[    6.744565][    T1] SCSI subsystem initialized
[    6.745328][    T1] usbcore: registered new interface driver usbfs
[    6.745456][    T1] usbcore: registered new interface driver hub
[    6.745541][    T1] usbcore: registered new device driver usb
[    6.745815][    T1] pps_core: LinuxPPS API ver. 1 registered
[    6.745832][    T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    6.745871][    T1] PTP clock support registered
[    6.747453][    T1] clocksource: Switched to clocksource oxnas_rps_clocksource_timer
[    6.747512][    T1] *** VALIDATE bpf ***
[    6.747952][    T1] *** VALIDATE ramfs ***
[    6.766597][    T1] NET: Registered protocol family 2
[    6.766778][    T1] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear)
[    6.767810][    T1] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear)
[    6.767869][    T1] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    6.767918][    T1] TCP bind hash table entries: 1024 (order: 1, 8192 bytes, linear)
[    6.767953][    T1] TCP: Hash tables configured (established 1024 bind 1024)
[    6.768158][    T1] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
[    6.768215][    T1] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
[    6.768468][    T1] NET: Registered protocol family 1
[    6.769515][    T1] RPC: Registered named UNIX socket transport module.
[    6.769543][    T1] RPC: Registered udp transport module.
[    6.769559][    T1] RPC: Registered tcp transport module.
[    6.769574][    T1] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    6.769600][    T1] PCI: CLS 0 bytes, default 32
[    6.770050][    T1] Unpacking initramfs...
[    7.503334][    T1] Freeing initrd memory: 6296K
[    7.504563][    T1] Initialise system trusted keyrings
[    7.504652][    T1] Key type blacklist registered
[    7.505036][    T1] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[    7.515120][    T1] zbud: loaded
[    7.520056][    T1] NFS: Registering the id_resolver key type
[    7.520104][    T1] Key type id_resolver registered
[    7.520120][    T1] Key type id_legacy registered
[    7.520151][    T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    7.520166][    T1] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    7.520179][    T1] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    7.521351][    T1] fuse: init (API version 7.31)
[    7.521536][    T1] *** VALIDATE fuse ***
[    7.521564][    T1] *** VALIDATE fuse ***
[    7.522411][    T1] orangefs_debugfs_init: called with debug mask: :none: :0:
[    7.522713][    T1] orangefs_init: module version upstream loaded
[    7.574272][    T1] Key type asymmetric registered
[    7.574307][    T1] Asymmetric key parser 'x509' registered
[    7.574402][    T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    7.577292][    T1] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled
[    7.578964][    T1] printk: console [ttyS0] disabled
[    7.579146][    T1] 44200000.serial: ttyS0 at MMIO 0x44200000 (irq = 55, base_baud = 390625) is a 16550A
[    8.230497][    T1] printk: console [ttyS0] enabled
[    8.249397][    T1] loop: module loaded
[    8.502241][    T1] scsi host0: sata_oxnas
[    8.556331][    T1] ata1: SATA max UDMA/133 irq 57
[    8.561262][   T75] sata_oxnas: resetting SATA core
[    8.627806][    T1] Could not find a valid ONFI parameter page, trying bit-wise majority to recover it
[    8.637160][    T1] ONFI parameter recovery failed, aborting
[    8.642874][    T1] nand: device found, Manufacturer ID: 0xad, Chip ID: 0xf1
[    8.649927][    T1] nand: Hynix NAND 128MiB 3,3V 8-bit
[    8.655047][    T1] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[    8.663349][    T1] Scanning device for bad blocks
[    8.748953][    T1] 2 cmdlinepart partitions found on MTD device 41000000.nand-controller
[    8.757094][    T1] Creating 2 MTD partitions on "41000000.nand-controller":
[    8.764152][    T1] 0x000000000000-0x000000e00000 : "boot"
[    8.772052][    T1] 0x000000e00000-0x000008000000 : "data"
[    8.781109][    T1] oxnas-dwmac 40400000.ethernet: IRQ eth_lpi not found
[    8.788016][    T1] oxnas-dwmac 40400000.ethernet: PTP uses main clock
[    8.794524][    T1] oxnas-dwmac 40400000.ethernet: no reset control found
[    8.867837][    T1] oxnas-dwmac 40400000.ethernet: User ID: 0x12, Synopsys ID: 0x35
[    8.875481][    T1] oxnas-dwmac 40400000.ethernet: 	DWMAC1000
[    8.881262][    T1] oxnas-dwmac 40400000.ethernet: DMA HW capability register supported
[    8.889262][    T1] oxnas-dwmac 40400000.ethernet: RX Checksum Offload Engine supported
[    8.897233][    T1] oxnas-dwmac 40400000.ethernet: COE Type 2
[    8.902983][    T1] oxnas-dwmac 40400000.ethernet: TX Checksum insertion supported
[    8.909327][   T75] ata1: SATA link down (SStatus 0 SControl 300)
[    8.910548][    T1] oxnas-dwmac 40400000.ethernet: Wake-Up On Lan supported
[    8.923607][    T1] oxnas-dwmac 40400000.ethernet: Enhanced/Alternate descriptors
[    8.931100][    T1] oxnas-dwmac 40400000.ethernet: Enabled extended descriptors
[    8.938411][    T1] oxnas-dwmac 40400000.ethernet: Ring mode enabled
[    8.944739][    T1] oxnas-dwmac 40400000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    8.953267][    T1] oxnas-dwmac 40400000.ethernet: device MAC address 96:86:38:99:f1:bc
[    9.005913][    T1] mdio_bus stmmac-0:00: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:00, irq=POLL)
[    9.016125][    T1] mdio_bus stmmac-0:03: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:03, irq=POLL)
[    9.027320][    T1] PPP generic driver version 2.4.2
[    9.032665][    T1] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    9.039933][    T1] ehci-pci: EHCI PCI platform driver
[    9.247518][    T1] oxnas-ehci 40200100.ehci: EHCI Host Controller
[    9.253726][    T1] oxnas-ehci 40200100.ehci: new USB bus registered, assigned bus number 1
[    9.262318][    T1] oxnas-ehci 40200100.ehci: irq 52, io mem 0x40200100
[    9.297500][    T1] oxnas-ehci 40200100.ehci: USB 2.0 started, EHCI 1.00
[    9.304550][    T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
[    9.313541][    T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    9.321464][    T1] usb usb1: Product: EHCI Host Controller
[    9.327014][    T1] usb usb1: Manufacturer: Linux 5.4.179-oxnas-tld-1 ehci_hcd
[    9.334233][    T1] usb usb1: SerialNumber: 40200100.ehci
[    9.340600][    T1] hub 1-0:1.0: USB hub found
[    9.345111][    T1] hub 1-0:1.0: 2 ports detected
[    9.351088][    T1] usbcore: registered new interface driver cdc_wdm
[    9.357655][    T1] usbcore: registered new interface driver usb-storage
[    9.364538][    T1] usbcore: registered new interface driver usbserial_generic
[    9.371834][    T1] usbserial: USB Serial support registered for generic
[    9.379315][    T1] mousedev: PS/2 mouse device common for all mice
[    9.385694][    T1] i2c /dev entries driver
[    9.391377][    T1] hidraw: raw HID events driver (C) Jiri Kosina
[    9.397708][    T1] usbcore: registered new interface driver usbhid
[    9.403947][    T1] usbhid: USB HID core driver
[    9.409937][    T1] NET: Registered protocol family 10
[    9.416606][    T1] Segment Routing with IPv6
[    9.421150][    T1] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    9.429785][    T1] NET: Registered protocol family 17
[    9.435294][    T1] Key type dns_resolver registered
[    9.440977][    T1] registered taskstats version 1
[    9.445757][    T1] Loading compiled-in X.509 certificates
[    9.451486][    T1] zswap: loaded using pool lzo/zbud
[    9.457126][    T1] Key type ._fscrypt registered
[    9.461903][    T1] Key type .fscrypt registered
[    9.554357][    T1] Key type big_key registered
[    9.598097][    T1] Key type encrypted registered
[    9.637519][   T21] usb 1-1: new high-speed USB device number 2 using oxnas-ehci
[    9.839347][   T21] usb 1-1: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=77.64
[    9.848307][   T89] oxnas-pcie 47c00000.pcie: PCIe version/deviceID 0x82510b5
[    9.855557][   T89] oxnas-pcie 47c00000.pcie: link up
[    9.860661][   T21] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    9.868523][   T21] usb 1-1: Product: USB2.0 Hub
[    9.873766][   T89] oxnas-pcie 47c00000.pcie: PCI host bridge to bus 0000:00
[    9.881126][   T89] pci_bus 0000:00: root bus resource [mem 0x48000000-0x49ffffff]
[    9.889011][   T21] hub 1-1:1.0: USB hub found
[    9.893516][   T89] pci_bus 0000:00: root bus resource [mem 0x4a000000-0x4bdfffff pref]
[    9.901616][   T21] hub 1-1:1.0: 4 ports detected
[    9.906365][   T89] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff]
[    9.913451][   T89] pci_bus 0000:00: root bus resource [bus 00-7f]
[    9.920215][   T89] pci 0000:00:00.0: [1814:3090] type 00 class 0x028000
[    9.927080][   T89] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x0000ffff]
[    9.936151][   T89] PCI: bus0: Fast back to back transfers disabled
[    9.942512][   T89] pci 0000:00:00.0: BAR 0: assigned [mem 0x48000000-0x4800ffff]
[    9.950809][    T1] hctosys: unable to open rtc device (rtc0)
[    9.958643][    T1] Freeing unused kernel memory: 1024K
[    9.965160][    T1] Checked W+X mappings: passed, no W+X pages found
[    9.971563][    T1] Run /init as init process
Loading, please wait...
Starting version 247.3-7
[   10.257553][   T89] usb 1-1.4: new high-speed USB device number 3 using oxnas-ehci
[   10.429547][   T89] usb 1-1.4: New USB device found, idVendor=13fd, idProduct=0840, bcdDevice= 1.14
[   10.439964][   T89] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   10.457684][   T89] usb 1-1.4: Product: External
[   10.462336][   T89] usb 1-1.4: Manufacturer: Generic
[   10.467299][   T89] usb 1-1.4: SerialNumber: 303931303038504234323036
[   10.512174][   T89] usb-storage 1-1.4:1.0: USB Mass Storage device detected
[   10.557022][   T89] scsi host1: usb-storage 1-1.4:1.0
[   10.651174][  T117] usbcore: registered new interface driver uas
Begin: Loading essential drivers ... [   11.222978][  T132] netpoll: netconsole: local port 6666
[   11.228369][  T132] netpoll: netconsole: local IPv4 address 10.1.1.196
[   11.234872][  T132] netpoll: netconsole: interface 'eth0'
[   11.240358][  T132] netpoll: netconsole: remote port 6666
[   11.245734][  T132] netpoll: netconsole: remote IPv4 address 10.1.1.1
[   11.252185][  T132] netpoll: netconsole: remote ethernet address ff:ff:ff:ff:ff:ff
[   11.259755][  T132] netpoll: netconsole: device eth0 not up yet, forcing it
[   11.267637][  T132] oxnas-dwmac 40400000.ethernet eth0: PHY [stmmac-0:00] driver [Generic PHY]
[   11.283118][  T132] oxnas-dwmac 40400000.ethernet eth0: No Safety Features support found
[   11.291256][  T132] oxnas-dwmac 40400000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[   11.301839][  T132] oxnas-dwmac 40400000.ethernet eth0: registered PTP clock
[   11.309342][  T132] oxnas-dwmac 40400000.ethernet eth0: configuring for phy/rgmii link mode
[   11.608596][   T89] scsi 1:0:0:0: Direct-Access     Generic  External         1.14 PQ: 0 ANSI: 4
[   11.621603][    T7] sd 1:0:0:0: [sda] 488397167 512-byte logical blocks: (250 GB/233 GiB)
[   11.631270][    T7] sd 1:0:0:0: [sda] Write Protect is off
[   11.640663][    T7] sd 1:0:0:0: [sda] No Caching mode page found
[   11.646661][    T7] sd 1:0:0:0: [sda] Assuming drive cache: write through
[   11.663170][    T7]  sda: sda1
[   11.682393][    T7] sd 1:0:0:0: [sda] Attached SCSI disk
[   12.125301][    C0] random: fast init done
[   15.337477][  T132] netpoll: netconsole: timeout waiting for carrier
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 04:04PM
[   11.254469][  T134] netpoll: netconsole: local IPv4 address 10.1.1.196
[   11.261071][  T134] netpoll: netconsole: interface 'eth0'
[   11.266449][  T134] netpoll: netconsole: remote port 6666
[   11.271869][  T134] netpoll: netconsole: remote IPv4 address 10.1.1.1

That does not look right.

ipaddr=10.1.1.196
serverip=10.1.1.1

The serverip looks like your router IP, not netconsole server box. It should be serverip=10.1.1.xxx, where 10.1.1.xxx is the IP of the box you use for netconsole server. Is this intentional?

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 04:08PM
bodhi Wrote:
-------------------------------------------------------
>
> [   11.254469][  T134] netpoll: netconsole: local
> IPv4 address 10.1.1.196
> [   11.261071][  T134] netpoll: netconsole:
> interface 'eth0'
> [   11.266449][  T134] netpoll: netconsole: remote
> port 6666
> [   11.271869][  T134] netpoll: netconsole: remote
> IPv4 address 10.1.1.1
>
>
> That does not look right.
>
>
> ipaddr=10.1.1.196
> serverip=10.1.1.1
>
>
> The serverip looks like your router IP, not
> netconsole server box. It should be
> serverip=10.1.1.xxx, where 10.1.1.xxx is the IP of
> the box you use for netconsole server. Is this
> intentional?

I have an Asus Merlin router and use it as the netconsole server box. I can switch that to another box if that might help?



Edited 1 time(s). Last edit at 08/25/2022 04:08PM by bluzfanmr1.
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 04:08PM
Please see my recent post above.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 04:10PM
> I have an Asus Merlin router and use it as the
> netconsole server box. I can switch that to
> another box if that might help?

I think netconsole server should be another box. The OXNAS network driver is picky that it could wait for carrier a long long time.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 04:12PM
So perhaps boot back to 4.14.x and remove netconsole from /etc/initram-tools/modules, too. And then reinstall 5.4.179.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 04:19PM
bodhi Wrote:
-------------------------------------------------------
> So perhaps boot back to 4.14.x and remove
> netconsole from /etc/initram-tools/modules, too.
> And then reinstall 5.4.179.

I'll bet that was it as it has to be something unique to my setup. I am working on going back to 4.14 and then forward again. Will report back shortly.
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 05:51PM
I guess that wasn't the issue. It's still hanging on timeout waiting for carrier. Do you have any other ideas? If not, I'll wait to try the next version or I'll blow everything away and start from scratch, though I'm trying to avoid that due to everything I have set up on it.

Thanks for all you help!
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 06:19PM
bluzfanmr1,

Let's wait for the next kernel release. And then we go from there.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 25, 2022 06:36PM
bodhi Wrote:
-------------------------------------------------------
> bluzfanmr1,
>
> Let's wait for the next kernel release. And then
> we go from there.

Will do, thanks again.
Re: Pogoplug Pro Issues - Any Linux Kernel 5 and Up
August 26, 2022 05:06PM
Author:

Your Email:


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: