Pogo V4 u-boot - Cannot fw_setenv in Debian October 25, 2017 07:17AM |
Registered: 5 years ago Posts: 8 |
Pogov4> printenv arcNumber=3960 baudrate=115200 bootargs_usb=console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 earlyprintk=serial bootcmd=run bootcmd_uenv; run bootcmd_usb; reset bootcmd_uenv=run uenv_load; if test $uenv_loaded -eq 1; then run uenv_import; fi bootcmd_usb=run usb_init; run set_bootargs_usb; run usb_boot; bootdelay=10 console=ttyS0,115200 device=0:1 ethact=egiga0 ethaddr=00:25:31:05:23:6c led_error=orange blinking led_exit=green off led_init=green blinking machid=f78 mainlineLinux=yes mtdids=nand0=orion_nand mtdparts=mtdparts=orion_nand:2M(u-boot),3M(uImage),3M(uImage2),8M(failsafe),112M(root) nc_ready=0 partition=nand0,2 rootdelay=10 rootfstype=ext2 set_bootargs_usb=setenv bootargs console=$console root=$usb_root rootdelay=$rootdelay rootfstype=$rootfstype $mtdparts stderr=serial stdin=serial stdout=serial uenv_import=echo importing envs ...; env import -t 0x810000 uenv_load=usb start; mmc rescan; ide reset; setenv uenv_loaded 0; for devtype in usb mmc ide; 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 0x810000 /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_boot=mw 0x800000 0 1; run usb_load_uimage; run usb_load_uinitrd; run usb_load_dtb; bootm 0x800000 0x1100000 0x1c00000 usb_init=usb start usb_load_dtb=ext2load usb $device 0x1c00000 /boot/dts/kirkwood-pogoplug_v4.dtb usb_load_uimage=ext2load usb $device 0x800000 /boot/uImage usb_load_uinitrd=ext2load usb $device 0x1100000 /boot/uInitrd usb_root=/dev/sda1
# MTD device name Device offset Env. size Flash sector size Number of sectors /dev/mtd0 0xc0000 0x20000 0x20000 dev: size erasesize name mtd0: 00100000 00020000 "u-boot" mtd1: 00400000 00020000 "uImage" mtd2: 02000000 00020000 "rootfs" mtd3: 0db00000 00020000 "data"
fw_setenv 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' fw_setenv preboot 'run preboot_nc' fw_setenv ipaddr '192.168.0.25' fw_setenv serverip '192.168.0.40'
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian October 25, 2017 09:43AM |
Admin Registered: 12 years ago Posts: 17,916 |
printenv boot
cat /etc/fw_env.config cat /proc/mtd ls -lart /boot/dts/kirkwood-pogoplug_v4.dtb
fw_setenv 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' fw_setenv preboot 'run preboot_nc' fw_setenv ipaddr '192.168.0.25' fw_setenv serverip '192.168.0.40'
fw_printenv
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian October 25, 2017 02:50PM |
Registered: 5 years ago Posts: 8 |
U-Boot 2016.05-tld-1 (Jun 12 2016 - 13:41:47 -0700) Pogoplug V4 SoC: Kirkwood 88F6192_A1 DRAM: 128 MiB WARNING: Caches not enabled NAND: 128 MiB MMC: kwsdio: 0 In: serial Out: serial Err: serial Net: egiga0 Hit any key to stop autoboot: 0 Pogov4> printenv arcNumber=3960 baudrate=115200 bootargs_usb=console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 earlyprintk=serial bootcmd=run bootcmd_uenv; run bootcmd_usb; reset bootcmd_uenv=run uenv_load; if test $uenv_loaded -eq 1; then run uenv_import; fi bootcmd_usb=run usb_init; run set_bootargs_usb; run usb_boot; bootdelay=10 console=ttyS0,115200 device=0:1 ethact=egiga0 ethaddr=00:25:31:05:23:6c led_error=orange blinking led_exit=green off led_init=green blinking machid=f78 mainlineLinux=yes mtdids=nand0=orion_nand mtdparts=mtdparts=orion_nand:2M(u-boot),3M(uImage),3M(uImage2),8M(failsafe),112M(root) nc_ready=0 partition=nand0,2 rootdelay=10 rootfstype=ext2 set_bootargs_usb=setenv bootargs console=$console root=$usb_root rootdelay=$rootdelay rootfstype=$rootfstype $mtdparts stderr=serial stdin=serial stdout=serial uenv_import=echo importing envs ...; env import -t 0x810000 uenv_load=usb start; mmc rescan; ide reset; setenv uenv_loaded 0; for devtype in usb mmc ide; 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 0x810000 /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_boot=mw 0x800000 0 1; run usb_load_uimage; run usb_load_uinitrd; run usb_load_dtb; bootm 0x800000 0x1100000 0x1c00000 usb_init=usb start usb_load_dtb=ext2load usb $device 0x1c00000 /boot/dts/kirkwood-pogoplug_v4.dtb usb_load_uimage=ext2load usb $device 0x800000 /boot/uImage usb_load_uinitrd=ext2load usb $device 0x1100000 /boot/uInitrd usb_root=/dev/sda1 Environment size: 1749/131068 bytes Pogov4> boot starting USB... USB0: USB EHCI 1.00 scanning bus 0 for devices... 2 USB Device(s) found scanning usb for storage devices... 1 Storage Device(s) found Reset IDE: ide_preinit failed Partition Map for USB device 0 -- Partition Type: DOS Part Start Sector Num Sectors UUID Type 1 2048 30226432 477937b2-01 83 loading envs from usb 0 ... 259 bytes read in 420 ms (0 Bytes/s) no IDE devices available importing envs ... ## Info: input data size = 260 = 0x104 3821592 bytes read in 572 ms (6.4 MiB/s) 7245696 bytes read in 657 ms (10.5 MiB/s) 10284 bytes read in 775 ms (12.7 KiB/s) ## Booting kernel from Legacy Image at 00800000 ... Image Name: Linux-4.12.1-kirkwood-tld-1 Created: 2017-07-20 8:11:24 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 3821528 Bytes = 3.6 MiB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK ## Loading init Ramdisk from Legacy Image at 01100000 ... Image Name: initramfs-4.12.1-kirkwood-tld-1 Created: 2017-07-24 0:18:23 UTC Image Type: ARM Linux RAMDisk Image (gzip compressed) Data Size: 7245632 Bytes = 6.9 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 01c00000 Booting using the fdt blob at 0x1c00000 Loading Kernel Image ... OK Loading Ramdisk to 07425000, end 07b0df40 ... OK Loading Device Tree to 0741f000, end 0742482b ... OK Using machid 0xf78 from environment Starting kernel ... Uncompressing Linux... done, booting the kernel. [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 4.12.1-kirkwood-tld-1 (root@tldDebian) (gcc version 4.9.2 (Debian 4.9.2-10) ) #1 PREEMPT Sat Jul 15 21:40:50 PDT 2017 [ 0.000000] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f [ 0.000000] CPU: VIVT data cache, VIVT instruction cache [ 0.000000] OF: fdt: Machine model: Pogoplug v4 [ 0.000000] Memory policy: Data cache writeback [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 32512 [ 0.000000] Kernel command line: console=ttyS0,115200 root=/dev/sda1 rootdelay=10 rootfstype=ext2 mtdparts=orion_nand:2M(u-boot),3M(uImage),3M(uImage2),8M(failsafe),112M(root) [ 0.000000] PID hash table entries: 512 (order: -1, 2048 bytes) [ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes) [ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes) [ 0.000000] Memory: 109428K/131072K available (8192K kernel code, 716K rwdata, 1972K rodata, 1024K init, 288K bss, 21644K reserved, 0K cma-reserved) [ 0.000000] Virtual kernel memory layout: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB) [ 0.000000] vmalloc : 0xc8800000 - 0xff800000 ( 880 MB) [ 0.000000] lowmem : 0xc0000000 - 0xc8000000 ( 128 MB) [ 0.000000] modules : 0xbf000000 - 0xc0000000 ( 16 MB) [ 0.000000] .text : 0xc0008000 - 0xc0900000 (9184 kB) [ 0.000000] .init : 0xc0c00000 - 0xc0d00000 (1024 kB) [ 0.000000] .data : 0xc0d00000 - 0xc0db3274 ( 717 kB) [ 0.000000] .bss : 0xc0db9b9c - 0xc0e01e60 ( 289 kB) [ 0.000000] Preemptible hierarchical RCU implementation. [ 0.000000] NR_IRQS:16 nr_irqs:16 16 [ 0.000000] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 11467562657 ns [ 0.000012] sched_clock: 32 bits at 166MHz, resolution 6ns, wraps every 12884901885ns [ 0.000065] Switching to timer-based delay loop, resolution 6ns [ 0.000768] Console: colour dummy device 80x30 [ 0.000820] Calibrating delay loop (skipped), value calculated using timer frequency.. 333.33 BogoMIPS (lpj=1666666) [ 0.000853] pid_max: default: 32768 minimum: 301 [ 0.001149] Security Framework initialized [ 0.001332] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.001362] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.002653] CPU: Testing write buffer coherency: ok [ 0.004227] Setting up static identity map for 0x100000 - 0x100058 [ 0.004625] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3 [ 0.009535] devtmpfs: initialized [ 0.015482] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.015522] futex hash table entries: 256 (order: -1, 3072 bytes) [ 0.016136] prandom: seed boundary self test passed [ 0.021867] prandom: 100 self tests passed [ 0.021892] pinctrl core: initialized pinctrl subsystem [ 0.023636] NET: Registered protocol family 16 [ 0.024414] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.026786] cpuidle: using governor ladder [ 0.026895] cpuidle: using governor menu [ 0.027581] Feroceon L2: Enabling L2 [ 0.027646] Feroceon L2: Cache support initialised. [ 0.028195] [Firmware Info]: /ocp@f1000000/ethernet-controller@72000/ethernet0-port@0: local-mac-address is not set [ 0.035216] No ATAGs? [ 0.048528] vgaarb: loaded [ 0.048991] SCSI subsystem initialized [ 0.049659] usbcore: registered new interface driver usbfs [ 0.049784] usbcore: registered new interface driver hub [ 0.049904] usbcore: registered new device driver usb [ 0.051615] clocksource: Switched to clocksource orion_clocksource [ 0.183921] VFS: Disk quotas dquot_6.6.0 [ 0.184038] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 0.198933] NET: Registered protocol family 2 [ 0.199996] TCP established hash table entries: 1024 (order: 0, 4096 bytes) [ 0.200038] TCP bind hash table entries: 1024 (order: 0, 4096 bytes) [ 0.200069] TCP: Hash tables configured (established 1024 bind 1024) [ 0.200199] UDP hash table entries: 256 (order: 0, 4096 bytes) [ 0.200234] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) [ 0.200483] NET: Registered protocol family 1 [ 0.201072] RPC: Registered named UNIX socket transport module. [ 0.201089] RPC: Registered udp transport module. [ 0.201099] RPC: Registered tcp transport module. [ 0.201110] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.201446] Unpacking initramfs... [ 1.168849] Freeing initrd memory: 7076K [ 1.169090] NetWinder Floating Point Emulator V0.97 (double precision) [ 1.170461] audit: initializing netlink subsys (disabled) [ 1.171164] Initialise system trusted keyrings [ 1.171244] Key type blacklist registered [ 1.171373] audit: type=2000 audit(1.169:1): state=initialized audit_enabled=0 res=1 [ 1.171506] workingset: timestamp_bits=30 max_order=15 bucket_order=0 [ 1.171684] zbud: loaded [ 1.173130] NFS: Registering the id_resolver key type [ 1.173170] Key type id_resolver registered [ 1.173182] Key type id_legacy registered [ 1.173207] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 1.173222] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 1.173509] jffs2: version 2.2. (NAND) (SUMMARY) © 2001-2006 Red Hat, Inc. [ 1.173788] fuse init (API version 7.26) [ 1.174300] orangefs_debugfs_init: called with debug mask: :none: :0: [ 1.174702] orangefs_init: module version upstream loaded [ 1.174718] SGI XFS with ACLs, security attributes, realtime, no debug enabled [ 2.551624] random: fast init done [ 9.945904] Key type asymmetric registered [ 9.945929] Asymmetric key parser 'x509' registered [ 9.946029] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249) [ 9.946045] io scheduler noop registered [ 9.946057] io scheduler deadline registered [ 9.946172] io scheduler cfq registered (default) [ 9.947426] kirkwood-pinctrl f1010000.pin-controller: unknown pinctrl group 47 [ 9.947451] kirkwood-pinctrl f1010000.pin-controller: unknown pinctrl group 49 [ 9.947950] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver [ 9.950748] mvebu-pcie mbus@f1000000:pcie-controller@82000000: PCI host bridge to bus 0000:00 [ 9.950779] pci_bus 0000:00: root bus resource [io 0x1000-0xfffff] [ 9.950799] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff] [ 9.950819] pci_bus 0000:00: root bus resource [bus 00-ff] [ 9.951297] PCI: bus0: Fast back to back transfers disabled [ 9.951333] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 9.981704] PCI: bus1: Fast back to back transfers disabled [ 9.981993] pci 0000:00:01.0: BAR 14: assigned [mem 0xe0000000-0xe00fffff] [ 9.982023] pci 0000:01:00.0: BAR 0: assigned [mem 0xe0000000-0xe000ffff 64bit] [ 9.982056] pci 0000:01:00.0: BAR 2: assigned [mem 0xe0010000-0xe0010fff 64bit] [ 9.982087] pci 0000:01:00.0: BAR 4: assigned [mem 0xe0011000-0xe0011fff 64bit] [ 9.982115] pci 0000:00:01.0: PCI bridge to [bus 01] [ 9.982140] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe00fffff] [ 9.982269] pcieport 0000:00:01.0: enabling device (0140 -> 0142) [ 9.982406] pci 0000:01:00.0: enabling device (0140 -> 0142) [ 9.983128] mv_xor f1060800.xor: Marvell shared XOR driver [ 10.042744] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy sg intr ) [ 10.043060] mv_xor f1060900.xor: Marvell shared XOR driver [ 10.102767] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy sg intr ) [ 10.103393] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 10.105312] console [ttyS0] disabled [ 10.105405] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 25, base_baud = 10416666) is a 16550A [ 10.814575] console [ttyS0] enabled [ 10.830486] loop: module loaded [ 10.834525] sata_mv f1080000.sata: slots 32 ports 2 [ 10.843325] scsi host0: sata_mv [ 10.847096] scsi host1: sata_mv [ 10.850558] ata1: SATA max UDMA/133 irq 32 [ 10.854721] ata2: SATA max UDMA/133 irq 32 [ 10.860066] nand: device found, Manufacturer ID: 0xad, Chip ID: 0xf1 [ 10.866501] nand: Hynix H27U1G8F2BTR-BC [ 10.870329] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 [ 10.877912] Scanning device for bad blocks [ 10.888766] Bad eraseblock 81 at 0x000000a20000 [ 10.971327] 5 cmdlinepart partitions found on MTD device orion_nand [ 10.977593] Creating 5 MTD partitions on "orion_nand": [ 10.982741] 0x000000000000-0x000000200000 : "u-boot" [ 10.989544] 0x000000200000-0x000000500000 : "uImage" [ 10.996380] 0x000000500000-0x000000800000 : "uImage2" [ 11.003299] 0x000000800000-0x000001000000 : "failsafe" [ 11.010359] 0x000001000000-0x000008000000 : "root" [ 11.019512] libphy: Fixed MDIO Bus: probed [ 11.024818] libphy: orion_mdio_bus: probed [ 11.036213] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4 [ 11.183268] ata1: SATA link down (SStatus 0 SControl F300) [ 11.533142] ata2: SATA link down (SStatus 0 SControl F300) [ 12.153754] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:25:31:05:23:6c [ 12.162652] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 12.169182] ehci-pci: EHCI PCI platform driver [ 12.173733] ehci-orion: EHCI orion driver [ 12.178028] orion-ehci f1050000.ehci: EHCI Host Controller [ 12.183577] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1 [ 12.191447] orion-ehci f1050000.ehci: irq 29, io mem 0xf1050000 [ 12.221664] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00 [ 12.228000] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 12.234809] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 12.242034] usb usb1: Product: EHCI Host Controller [ 12.246898] usb usb1: Manufacturer: Linux 4.12.1-kirkwood-tld-1 ehci_hcd [ 12.253610] usb usb1: SerialNumber: f1050000.ehci [ 12.259271] hub 1-0:1.0: USB hub found [ 12.263162] hub 1-0:1.0: 1 port detected [ 12.267937] xhci_hcd 0000:01:00.0: xHCI Host Controller [ 12.273279] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2 [ 12.282269] xhci_hcd 0000:01:00.0: hcc params 0x200073a1 hci version 0x100 quirks 0x00080010 [ 12.290987] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002 [ 12.297796] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 12.305019] usb usb2: Product: xHCI Host Controller [ 12.309883] usb usb2: Manufacturer: Linux 4.12.1-kirkwood-tld-1 xhci-hcd [ 12.316587] usb usb2: SerialNumber: 0000:01:00.0 [ 12.322197] hub 2-0:1.0: USB hub found [ 12.325986] hub 2-0:1.0: 2 ports detected [ 12.330719] xhci_hcd 0000:01:00.0: xHCI Host Controller [ 12.336030] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 3 [ 12.343571] usb usb3: We don't know the algorithms for LPM for this host, disabling LPM. [ 12.351882] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003 [ 12.358649] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 12.365877] usb usb3: Product: xHCI Host Controller [ 12.370744] usb usb3: Manufacturer: Linux 4.12.1-kirkwood-tld-1 xhci-hcd [ 12.377579] usb usb3: SerialNumber: 0000:01:00.0 [ 12.383158] hub 3-0:1.0: USB hub found [ 12.386944] hub 3-0:1.0: 2 ports detected [ 12.392097] usbcore: registered new interface driver usb-storage [ 12.398582] mousedev: PS/2 mouse device common for all mice [ 12.621663] usb 1-1: new high-speed USB device number 2 using orion-ehci [ 12.815452] usb 1-1: New USB device found, idVendor=18a5, idProduct=0302 [ 12.822172] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 12.829313] usb 1-1: Product: STORE N GO [ 12.833252] usb 1-1: Manufacturer: Verbatim [ 12.837424] usb 1-1: SerialNumber: 07014A7E81279C79 [ 12.843406] usb-storage 1-1:1.0: USB Mass Storage device detected [ 12.849978] scsi host2: usb-storage 1-1:1.0 [ 13.441663] rtc-mv f1010300.rtc: internal RTC not ticking [ 13.447316] i2c /dev entries driver [ 13.452749] hidraw: raw HID events driver (C) Jiri Kosina [ 13.458630] drop_monitor: Initializing network drop monitor service [ 13.465284] NET: Registered protocol family 17 [ 13.469826] Key type dns_resolver registered [ 13.475182] registered taskstats version 1 [ 13.479269] Loading compiled-in X.509 certificates [ 13.484177] zswap: loaded using pool lzo/zbud [ 13.503259] Key type big_key registered [ 13.520911] Key type encrypted registered [ 13.527120] hctosys: unable to open rtc device (rtc0) [ 13.537233] Freeing unused kernel memory: 1024K Loading, please wait... starting version 232 [ 13.927982] scsi 2:0:0:0: Direct-Access Verbatim STORE N GO 5.00 PQ: 0 ANSI: 6 [ 13.956418] sd 2:0:0:0: [sda] 30228480 512-byte logical blocks: (15.5 GB/14.4 GiB) [ 13.976291] sd 2:0:0:0: [sda] Write Protect is off [ 13.991758] sd 2:0:0:0: [sda] No Caching mode page found [ 13.997117] sd 2:0:0:0: [sda] Assuming drive cache: write through [ 14.028612] sda: sda1 [ 14.037528] sd 2:0:0:0: [sda] Attached SCSI removable disk [ 14.244314] usbcore: registered new interface driver uas [ 14.326460] mvsdio f1090000.mvsdio: Got CD GPIO Begin: Loading essential drivers ... done. Begin: Running /scripts/init-premount ... done. Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done. Begin: Running /scripts/local-premount ... done. Warning: fsck not present, so skipping root file system [ 25.036161] EXT2-fs (sda1): warning: mounting ext3 filesystem as ext2 done. Begin: Running /scripts/local-bottom ... done. Begin: Running /scripts/init-bottom ... done. INIT: version 2.88 booting [info] Using makefile-style concurrent boot in runlevel S. [ ok ] Setting hostname to 'debian'...done. [....] Starting the hotplug events dispatcher: systemd-udevdstarting version 232 . ok [....] Synthesizing the initial hotplug events...[ 27.536401] input: gpio_keys as /devices/platform/gpio_keys/input/input0 done. [....] Waiting for /dev to be fully populated...[ 28.028382] orion_wdt: Initial timeout 25 sec [ 28.174941] marvell-cesa f1030000.crypto: CESA device successfully registered [ 28.221864] sd 2:0:0:0: Attached scsi generic sg0 type 0 done. [ ok ] Activating swap:. [ 29.734565] random: crng init done [....] Will now check root file system:fsck from util-linux 2.29.2 [/sbin/fsck.ext3 (1) -- /] fsck.ext3 -y -C0 /dev/sda1 e2fsck 1.43.4 (31-Jan-2017) rootfs was not cleanly unmounted, check forced. Pass 1: Checking inodes, blocks, and sizes Pass 2: Checking directory structure Pass 3: Checking directory connectivity Pass 4: Checking reference counts Pass 5: Checking group summary information Free blocks count wrong (3499384, counted=3499383). Fix? yes rootfs: ***** FILE SYSTEM WAS MODIFIED ***** rootfs: ***** REBOOT SYSTEM ***** rootfs: 14482/944704 files (8.3% non-contiguous), 278921/3778304 blocks fsck exited with status code 3 failed! [....] The file system check corrected errors on the root partition but requeste[FAILt the system be restarted. ... failed! [warn] The system will be restarted in 5 seconds. ... (warning). [info] Will now restart. [ 52.487038] reboot: Restarting system
U-Boot 2016.05-tld-1 (Jun 12 2016 - 13:41:47 -0700) Pogoplug V4 SoC: Kirkwood 88F6192_A1 DRAM: 128 MiB WARNING: Caches not enabled NAND: 128 MiB MMC: kwsdio: 0 In: serial Out: serial Err: serial Net: egiga0 Hit any key to stop autoboot: 0 starting USB... USB0: USB EHCI 1.00 scanning bus 0 for devices... 2 USB Device(s) found scanning usb for storage devices... 1 Storage Device(s) found Reset IDE: ide_preinit failed Partition Map for USB device 0 -- Partition Type: DOS Part Start Sector Num Sectors UUID Type 1 2048 30226432 477937b2-01 83 loading envs from usb 0 ... 259 bytes read in 419 ms (0 Bytes/s) no IDE devices available importing envs ... ## Info: input data size = 545 = 0x221 3821592 bytes read in 572 ms (6.4 MiB/s) 7245696 bytes read in 656 ms (10.5 MiB/s) 10284 bytes read in 774 ms (12.7 KiB/s) ## Booting kernel from Legacy Image at 00800000 ... Image Name: Linux-4.12.1-kirkwood-tld-1 Created: 2017-07-20 8:11:24 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 3821528 Bytes = 3.6 MiB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK ## Loading init Ramdisk from Legacy Image at 01100000 ... Image Name: initramfs-4.12.1-kirkwood-tld-1 Created: 2017-07-24 0:18:23 UTC Image Type: ARM Linux RAMDisk Image (gzip compressed) Data Size: 7245632 Bytes = 6.9 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 01c00000 Booting using the fdt blob at 0x1c00000 Loading Kernel Image ... OK Loading Ramdisk to 07425000, end 07b0df40 ... OK Loading Device Tree to 0741f000, end 0742482b ... OK Using machid 0xf78 from environment Starting kernel ... Uncompressing Linux... done, booting the kernel. [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 4.12.1-kirkwood-tld-1 (root@tldDebian) (gcc version 4.9.2 (Debian 4.9.2-10) ) #1 PREEMPT Sat Jul 15 21:40:50 PDT 2017 [ 0.000000] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f [ 0.000000] CPU: VIVT data cache, VIVT instruction cache [ 0.000000] OF: fdt: Machine model: Pogoplug v4 [ 0.000000] Memory policy: Data cache writeback [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 32512 [ 0.000000] Kernel command line: console=ttyS0,115200 root=/dev/sda1 rootdelay=10 rootfstype=ext2 mtdparts=orion_nand:2M(u-boot),3M(uImage),3M(uImage2),8M(failsafe),112M(root) [ 0.000000] PID hash table entries: 512 (order: -1, 2048 bytes) [ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes) [ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes) [ 0.000000] Memory: 109428K/131072K available (8192K kernel code, 716K rwdata, 1972K rodata, 1024K init, 288K bss, 21644K reserved, 0K cma-reserved) [ 0.000000] Virtual kernel memory layout: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB) [ 0.000000] vmalloc : 0xc8800000 - 0xff800000 ( 880 MB) [ 0.000000] lowmem : 0xc0000000 - 0xc8000000 ( 128 MB) [ 0.000000] modules : 0xbf000000 - 0xc0000000 ( 16 MB) [ 0.000000] .text : 0xc0008000 - 0xc0900000 (9184 kB) [ 0.000000] .init : 0xc0c00000 - 0xc0d00000 (1024 kB) [ 0.000000] .data : 0xc0d00000 - 0xc0db3274 ( 717 kB) [ 0.000000] .bss : 0xc0db9b9c - 0xc0e01e60 ( 289 kB) [ 0.000000] Preemptible hierarchical RCU implementation. [ 0.000000] NR_IRQS:16 nr_irqs:16 16 [ 0.000000] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 11467562657 ns [ 0.000012] sched_clock: 32 bits at 166MHz, resolution 6ns, wraps every 12884901885ns [ 0.000066] Switching to timer-based delay loop, resolution 6ns [ 0.000767] Console: colour dummy device 80x30 [ 0.000818] Calibrating delay loop (skipped), value calculated using timer frequency.. 333.33 BogoMIPS (lpj=1666666) [ 0.000852] pid_max: default: 32768 minimum: 301 [ 0.001148] Security Framework initialized [ 0.001331] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.001360] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.002649] CPU: Testing write buffer coherency: ok [ 0.004224] Setting up static identity map for 0x100000 - 0x100058 [ 0.004621] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3 [ 0.009536] devtmpfs: initialized [ 0.015488] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.015527] futex hash table entries: 256 (order: -1, 3072 bytes) [ 0.016141] prandom: seed boundary self test passed [ 0.021873] prandom: 100 self tests passed [ 0.021902] pinctrl core: initialized pinctrl subsystem [ 0.023652] NET: Registered protocol family 16 [ 0.024439] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.026802] cpuidle: using governor ladder [ 0.026910] cpuidle: using governor menu [ 0.027595] Feroceon L2: Enabling L2 [ 0.027660] Feroceon L2: Cache support initialised. [ 0.028209] [Firmware Info]: /ocp@f1000000/ethernet-controller@72000/ethernet0-port@0: local-mac-address is not set [ 0.035243] No ATAGs? [ 0.048570] vgaarb: loaded [ 0.049033] SCSI subsystem initialized [ 0.049704] usbcore: registered new interface driver usbfs [ 0.049828] usbcore: registered new interface driver hub [ 0.049950] usbcore: registered new device driver usb [ 0.051658] clocksource: Switched to clocksource orion_clocksource [ 0.183924] VFS: Disk quotas dquot_6.6.0 [ 0.184040] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 0.198933] NET: Registered protocol family 2 [ 0.200000] TCP established hash table entries: 1024 (order: 0, 4096 bytes) [ 0.200043] TCP bind hash table entries: 1024 (order: 0, 4096 bytes) [ 0.200073] TCP: Hash tables configured (established 1024 bind 1024) [ 0.200201] UDP hash table entries: 256 (order: 0, 4096 bytes) [ 0.200236] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) [ 0.200484] NET: Registered protocol family 1 [ 0.201073] RPC: Registered named UNIX socket transport module. [ 0.201090] RPC: Registered udp transport module. [ 0.201100] RPC: Registered tcp transport module. [ 0.201111] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.201450] Unpacking initramfs... [ 1.168743] Freeing initrd memory: 7076K [ 1.168986] NetWinder Floating Point Emulator V0.97 (double precision) [ 1.170363] audit: initializing netlink subsys (disabled) [ 1.171066] Initialise system trusted keyrings [ 1.171149] Key type blacklist registered [ 1.171277] audit: type=2000 audit(1.168:1): state=initialized audit_enabled=0 res=1 [ 1.171411] workingset: timestamp_bits=30 max_order=15 bucket_order=0 [ 1.171510] zbud: loaded [ 1.173045] NFS: Registering the id_resolver key type [ 1.173085] Key type id_resolver registered [ 1.173097] Key type id_legacy registered [ 1.173123] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 1.173137] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 1.173423] jffs2: version 2.2. (NAND) (SUMMARY) © 2001-2006 Red Hat, Inc. [ 1.173703] fuse init (API version 7.26) [ 1.174215] orangefs_debugfs_init: called with debug mask: :none: :0: [ 1.174614] orangefs_init: module version upstream loaded [ 1.174631] SGI XFS with ACLs, security attributes, realtime, no debug enabled [ 2.551667] random: fast init done [ 9.945767] Key type asymmetric registered [ 9.945791] Asymmetric key parser 'x509' registered [ 9.945890] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249) [ 9.945907] io scheduler noop registered [ 9.945919] io scheduler deadline registered [ 9.946033] io scheduler cfq registered (default) [ 9.947291] kirkwood-pinctrl f1010000.pin-controller: unknown pinctrl group 47 [ 9.947316] kirkwood-pinctrl f1010000.pin-controller: unknown pinctrl group 49 [ 9.947814] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver [ 9.950619] mvebu-pcie mbus@f1000000:pcie-controller@82000000: PCI host bridge to bus 0000:00 [ 9.950650] pci_bus 0000:00: root bus resource [io 0x1000-0xfffff] [ 9.950670] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff] [ 9.950690] pci_bus 0000:00: root bus resource [bus 00-ff] [ 9.951167] PCI: bus0: Fast back to back transfers disabled [ 9.951203] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 9.981746] PCI: bus1: Fast back to back transfers disabled [ 9.982033] pci 0000:00:01.0: BAR 14: assigned [mem 0xe0000000-0xe00fffff] [ 9.982062] pci 0000:01:00.0: BAR 0: assigned [mem 0xe0000000-0xe000ffff 64bit] [ 9.982096] pci 0000:01:00.0: BAR 2: assigned [mem 0xe0010000-0xe0010fff 64bit] [ 9.982127] pci 0000:01:00.0: BAR 4: assigned [mem 0xe0011000-0xe0011fff 64bit] [ 9.982155] pci 0000:00:01.0: PCI bridge to [bus 01] [ 9.982180] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe00fffff] [ 9.982308] pcieport 0000:00:01.0: enabling device (0140 -> 0142) [ 9.982446] pci 0000:01:00.0: enabling device (0140 -> 0142) [ 9.983173] mv_xor f1060800.xor: Marvell shared XOR driver [ 10.042792] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy sg intr ) [ 10.043103] mv_xor f1060900.xor: Marvell shared XOR driver [ 10.102808] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy sg intr ) [ 10.103440] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 10.105351] console [ttyS0] disabled [ 10.105442] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 25, base_baud = 10416666) is a 16550A [ 10.814610] console [ttyS0] enabled [ 10.830519] loop: module loaded [ 10.834556] sata_mv f1080000.sata: slots 32 ports 2 [ 10.843361] scsi host0: sata_mv [ 10.847133] scsi host1: sata_mv [ 10.850595] ata1: SATA max UDMA/133 irq 32 [ 10.854757] ata2: SATA max UDMA/133 irq 32 [ 10.860103] nand: device found, Manufacturer ID: 0xad, Chip ID: 0xf1 [ 10.866540] nand: Hynix H27U1G8F2BTR-BC [ 10.870364] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 [ 10.877946] Scanning device for bad blocks [ 10.888802] Bad eraseblock 81 at 0x000000a20000 [ 10.971346] 5 cmdlinepart partitions found on MTD device orion_nand [ 10.977619] Creating 5 MTD partitions on "orion_nand": [ 10.982774] 0x000000000000-0x000000200000 : "u-boot" [ 10.989578] 0x000000200000-0x000000500000 : "uImage" [ 10.996411] 0x000000500000-0x000000800000 : "uImage2" [ 11.003333] 0x000000800000-0x000001000000 : "failsafe" [ 11.010397] 0x000001000000-0x000008000000 : "root" [ 11.019557] libphy: Fixed MDIO Bus: probed [ 11.024862] libphy: orion_mdio_bus: probed [ 11.036276] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4 [ 11.183310] ata1: SATA link down (SStatus 0 SControl F300) [ 11.533188] ata2: SATA link down (SStatus 0 SControl F300) [ 12.153682] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 00:25:31:05:23:6c [ 12.162583] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 12.169112] ehci-pci: EHCI PCI platform driver [ 12.173664] ehci-orion: EHCI orion driver [ 12.177961] orion-ehci f1050000.ehci: EHCI Host Controller [ 12.183507] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1 [ 12.191378] orion-ehci f1050000.ehci: irq 29, io mem 0xf1050000 [ 12.221705] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00 [ 12.228044] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 12.234854] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 12.242078] usb usb1: Product: EHCI Host Controller [ 12.246941] usb usb1: Manufacturer: Linux 4.12.1-kirkwood-tld-1 ehci_hcd [ 12.253653] usb usb1: SerialNumber: f1050000.ehci [ 12.259317] hub 1-0:1.0: USB hub found [ 12.263213] hub 1-0:1.0: 1 port detected [ 12.267991] xhci_hcd 0000:01:00.0: xHCI Host Controller [ 12.273329] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2 [ 12.282325] xhci_hcd 0000:01:00.0: hcc params 0x200073a1 hci version 0x100 quirks 0x00080010 [ 12.291044] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002 [ 12.297846] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 12.305071] usb usb2: Product: xHCI Host Controller [ 12.309935] usb usb2: Manufacturer: Linux 4.12.1-kirkwood-tld-1 xhci-hcd [ 12.316640] usb usb2: SerialNumber: 0000:01:00.0 [ 12.322253] hub 2-0:1.0: USB hub found [ 12.326049] hub 2-0:1.0: 2 ports detected [ 12.330780] xhci_hcd 0000:01:00.0: xHCI Host Controller [ 12.336093] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 3 [ 12.343631] usb usb3: We don't know the algorithms for LPM for this host, disabling LPM. [ 12.351949] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003 [ 12.358719] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 12.365947] usb usb3: Product: xHCI Host Controller [ 12.370813] usb usb3: Manufacturer: Linux 4.12.1-kirkwood-tld-1 xhci-hcd [ 12.377651] usb usb3: SerialNumber: 0000:01:00.0 [ 12.383237] hub 3-0:1.0: USB hub found [ 12.387024] hub 3-0:1.0: 2 ports detected [ 12.392175] usbcore: registered new interface driver usb-storage [ 12.398659] mousedev: PS/2 mouse device common for all mice [ 12.621706] usb 1-1: new high-speed USB device number 2 using orion-ehci [ 12.815385] usb 1-1: New USB device found, idVendor=18a5, idProduct=0302 [ 12.822107] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 12.829245] usb 1-1: Product: STORE N GO [ 12.833183] usb 1-1: Manufacturer: Verbatim [ 12.837356] usb 1-1: SerialNumber: 07014A7E81279C79 [ 12.843341] usb-storage 1-1:1.0: USB Mass Storage device detected [ 12.849898] scsi host2: usb-storage 1-1:1.0 [ 13.441708] rtc-mv f1010300.rtc: internal RTC not ticking [ 13.447368] i2c /dev entries driver [ 13.452793] hidraw: raw HID events driver (C) Jiri Kosina [ 13.458669] drop_monitor: Initializing network drop monitor service [ 13.465328] NET: Registered protocol family 17 [ 13.469874] Key type dns_resolver registered [ 13.475230] registered taskstats version 1 [ 13.479313] Loading compiled-in X.509 certificates [ 13.484223] zswap: loaded using pool lzo/zbud [ 13.503140] Key type big_key registered [ 13.520638] Key type encrypted registered [ 13.526858] hctosys: unable to open rtc device (rtc0) [ 13.536971] Freeing unused kernel memory: 1024K Loading, please wait... starting version 232 [ 13.927913] scsi 2:0:0:0: Direct-Access Verbatim STORE N GO 5.00 PQ: 0 ANSI: 6 [ 13.956569] sd 2:0:0:0: [sda] 30228480 512-byte logical blocks: (15.5 GB/14.4 GiB) [ 13.974847] sd 2:0:0:0: [sda] Write Protect is off [ 13.991798] sd 2:0:0:0: [sda] No Caching mode page found [ 13.997151] sd 2:0:0:0: [sda] Assuming drive cache: write through [ 14.028545] sda: sda1 [ 14.037591] sd 2:0:0:0: [sda] Attached SCSI removable disk [ 14.275292] usbcore: registered new interface driver uas [ 14.358836] mvsdio f1090000.mvsdio: Got CD GPIO Begin: Loading essential drivers ... done. Begin: Running /scripts/init-premount ... done. Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done. Begin: Running /scripts/local-premount ... done. Warning: fsck not present, so skipping root file system [ 25.036093] EXT2-fs (sda1): warning: mounting ext3 filesystem as ext2 done. Begin: Running /scripts/local-bottom ... done. Begin: Running /scripts/init-bottom ... done. INIT: version 2.88 booting [info] Using makefile-style concurrent boot in runlevel S. [ ok ] Setting hostname to 'debian'...done. [....] Starting the hotplug events dispatcher: systemd-udevdstarting version 232 . ok [....] Synthesizing the initial hotplug events...[ 27.520435] input: gpio_keys as /devices/platform/gpio_keys/input/input0 done. [....] Waiting for /dev to be fully populated...[ 27.997447] orion_wdt: Initial timeout 25 sec [ 28.151236] marvell-cesa f1030000.crypto: CESA device successfully registered [ 28.219930] sd 2:0:0:0: Attached scsi generic sg0 type 0 done. [ ok ] Activating swap:. [ 29.712618] random: crng init done [....] Will now check root file system:fsck from util-linux 2.29.2 [/sbin/fsck.ext3 (1) -- /] fsck.ext3 -y -C0 /dev/sda1 e2fsck 1.43.4 (31-Jan-2017) rootfs: clean, 14482/944704 files, 278921/3778304 blocks . ok [ ok ] Will now activate lvm and md swap:done. [info] Will now check all file systems. fsck from util-linux 2.29.2 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...[....] Cleaning /tmp...done. [ ok . [ ok ] Will now mount local filesystems:. [ ok ] Will now activate swapfile swap:done. [ ok ] Checking minimum space in /tmp...done. [ ok ] Cleaning up temporary files.... [ ok ] Setting kernel variables...done. [ ok ] Initializing random number generator...done. [....] Configuring network interfaces...Internet Systems Consortium DHCP Client 4.3.5 Copyright 2004-2016 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Listening on LPF/eth0/00:25:31:05:23:6c Sending on LPF/eth0/00:25:31:05:23:6c Sending on Socket/fallback DHCPREQUEST of 192.168.0.14 on eth0 to 255.255.255.255 port 67 [ 113.979350] NET: Registered protocol family 10 [ 113.987339] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready [ 113.993508] Segment Routing with IPv6 DHCPREQUEST of 192.168.0.14 on eth0 to 255.255.255.255 port 67 DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 5 DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10 DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 14 DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 19 DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 13 No DHCPOFFERS received. Trying recorded lease 192.168.0.14 PING 192.168.0.1 (192.168.0.1) 56(84) bytes of data. --- 192.168.0.1 ping statistics --- 1 packets transmitted, 0 received, +1 errors, 100% packet loss, time 0ms No working leases in persistent database - sleeping. 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... 1315 (syslogd) . ok [ ok ] Starting system message bus: dbus. [ ok ] Starting Avahi mDNS/DNS-SD Daemon: avahi-daemon. [ ok ] Starting NFS common utilities: statd idmapd. [warn] Not starting NFS kernel daemon: no exports. ... (warning). [ ok ] Starting NTP server: ntpd. [....] Starting busybox' klogd implementation : klogdStarting /sbin/klogd... 1318 (klogd) . ok [ ok ] Starting OpenBSD Secure Shell server: sshd. [ ok ] Running local boot scripts (/etc/rc.local). Debian GNU/Linux 9 debian ttyS0 debian login: root Password: Last login: Wed Dec 31 16:03:21 PST 1969 on ttyS0 Linux debian 4.12.1-kirkwood-tld-1 #1 PREEMPT Sat Jul 15 21:40:50 PDT 2017 armv5tel The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. root@debian:~# cat /etc/fw_env.config # MTD device name Device offset Env. size Flash sector size Number of sectors /dev/mtd0 0xc0000 0x20000 0x20000 dev: size erasesize name mtd0: 00100000 00020000 "u-boot" mtd1: 00400000 00020000 "uImage" mtd2: 02000000 00020000 "rootfs" mtd3: 0db00000 00020000 "data" fw_setenv 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' fw_setenv preboot 'run preboot_nc' fw_setenv ipaddr '192.168.0.25' fw_setenv serverip '192.168.0.40' root@debian:~# cat /proc/mtd dev: size erasesize name mtd0: 00200000 00020000 "u-boot" mtd1: 00300000 00020000 "uImage" mtd2: 00300000 00020000 "uImage2" mtd3: 00800000 00020000 "failsafe" mtd4: 07000000 00020000 "root" root@debian:~# ls -lart /boot/dts/kirkwood-pogoplug_v4.dtb -rw-r--r-- 1 root root 10284 Jul 16 2017 /boot/dts/kirkwood-pogoplug_v4.dtb root@debian:~#
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian October 25, 2017 05:11PM |
Admin Registered: 12 years ago Posts: 17,916 |
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian October 25, 2017 05:25PM |
Admin Registered: 12 years ago Posts: 17,916 |
ls -lart /boot cat /etc/fw_env.config cat /proc/mtd ls -lart /boot/dts/kirkwood-pogoplug_v4.dtb fw_setenv 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' fw_setenv preboot 'run preboot_nc' fw_setenv ipaddr '192.168.0.25' fw_setenv serverip '192.168.0.40' fw_printenv
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian October 30, 2017 05:45AM |
Registered: 5 years ago Posts: 8 |
ls -lart /boot total 36264 drwxr-xr-x 2 root root 4096 Jul 15 15:14 dts -rw-r--r-- 1 root root 153501 Jul 15 20:21 config-4.12.1-kirkwood-tld-1 -rwxr-xr-x 1 root root 3821528 Jul 15 21:42 zImage-4.12.1-kirkwood-tld-1 -rw------- 1 root root 3821528 Jul 16 00:43 vmlinuz-4.12.1-kirkwood-tld-1 -rw------- 1 root root 2504031 Jul 16 00:43 System.map-4.12.1-kirkwood-tld-1 -rw-r--r-- 1 root root 8435004 Jul 16 01:06 linux-headers-4.12.1-kirkwood-tld-1_1.0_armel.deb -rw-r--r-- 1 root root 3821592 Jul 20 01:11 uImage -rw-r--r-- 1 root root 7245632 Jul 23 17:15 initrd.img-4.12.1-kirkwood-tld-1 -rw-r--r-- 1 root root 7245696 Jul 23 17:18 uInitrd -rw-r--r-- 1 root root 259 Oct 16 05:42 uEnv.txt drwxr-xr-x 3 root root 4096 Oct 16 05:42 . drwxr-xr-x 23 root root 4096 Oct 25 03:51 ..
cat /etc/fw_env.config # MTD device name Device offset Env. size Flash sector size Number of sectors /dev/mtd0 0xc0000 0x20000 0x20000 #dev: size erasesize name mtd0: 00100000 00020000 "u-boot" #mtd1: 00400000 00020000 "uImage" #mtd2: 02000000 00020000 "rootfs" #mtd3: 0db00000 00020000 "data" #fw_setenv 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' #fw_setenv preboot 'run preboot_nc' #fw_setenv ipaddr '192.168.0.25' # fw_setenv serverip '192.168.0.40'
cat /proc/mtd dev: size erasesize name mtd0: 00200000 00020000 "u-boot" mtd1: 00300000 00020000 "uImage" mtd2: 00300000 00020000 "uImage2" mtd3: 00800000 00020000 "failsafe" mtd4: 07000000 00020000 "root"mtd0 is not right but cant get it set to be the right values.
ls -lart /boot/dts/kirkwood-pogoplug_v4.dtb -rw-r--r-- 1 root root 10284 Jul 16 01:08 /boot/dts/kirkwood-pogoplug_v4.dtb
fw_setenv 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' Environment does not start on (erase) block boundary Error: environment not initialized
fw_setenv preboot 'run preboot_nc' Environment does not start on (erase) block boundary Error: environment not initialized
fw_setenv ipaddr '192.168.0.25' Environment does not start on (erase) block boundary Error: environment not initialized
fw_setenv serverip '192.168.0.40' Environment does not start on (erase) block boundary Error: environment not initialized
fw_printenv Environment does not start on (erase) block boundary
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian October 30, 2017 02:09PM |
Admin Registered: 12 years ago Posts: 17,916 |
root@tldDebian:~# cat /proc/mtd dev: size erasesize name mtd0: 00100000 00020000 "uboot" mtd1: 00080000 00020000 "uboot_env"
cat /etc/fw_env.config cat /proc/mtd
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian October 31, 2017 12:22PM |
Registered: 5 years ago Posts: 8 |
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian October 31, 2017 04:14PM |
Admin Registered: 12 years ago Posts: 17,916 |
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian November 07, 2017 12:38PM |
Registered: 5 years ago Posts: 8 |
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian November 07, 2017 03:52PM |
Admin Registered: 12 years ago Posts: 17,916 |
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian November 08, 2017 02:22AM |
Registered: 5 years ago Posts: 8 |
mount -o remount,rw -t ubifs ubi0:rootfs /
/ # vi /etc/inittab :qsysinit:/etc/init.d/rcS ::respawn:-/bin/sh :2345:respawn:/usr/sbin/dropbear #::respawn:-/bin/sh #tty2::askfirst:-/bin/sh #::ctrlaltdel:/bin/umount -a -rGrtz, Maarten
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian November 08, 2017 03:50AM |
Admin Registered: 12 years ago Posts: 17,916 |
> mount -o remount,rw -t ubifs ubi0:rootfs / >>
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian November 13, 2017 06:45AM |
Registered: 5 years ago Posts: 8 |
./kwboot -t -B 115200 /dev/ttyUSB0 -b uboot.2017.07-tld-1.pogo_v4.mtd0.kwb -p Sending boot message. Please reboot the target.../ Sending boot image... 0 % [.+.+xmodem: Protocol error
./kwboot -t -B 115200 /dev/ttyUSB0 -b uboot.2017.07-tld-1.pogo_v4.mtd0.kwb Sending boot message. Please reboot the target...\ Sending boot image... xmodem: Bad message
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian November 13, 2017 03:58PM |
Admin Registered: 12 years ago Posts: 17,916 |
./kwboot -t -B 115200 /dev/ttyUSB0 -b uboot.2017.07-tld-1.pogo_v4.mtd0.kwb -p
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian November 17, 2017 04:03PM |
Registered: 5 years ago Posts: 8 |
Re: Pogo V4 u-boot - Cannot fw_setenv in Debian November 17, 2017 04:14PM |
Admin Registered: 12 years ago Posts: 17,916 |