Welcome! Log In Create A New Profile

Advanced

Install u-boot on NSA310 question

Posted by kofec 
Install u-boot on NSA310 question
June 23, 2016 08:24AM
Hi,
I have Zyxel NSA-310 and I have installed :
U-Boot 2015.10-tld-1 (Nov 06 2015 - 16:19:43 -0800)
ZyXEL NSA310 1-Bay Power Media Server


Can I upgrade to the latest version of uboot "2016.05 U-Boot Kirkwood" if I have below settings:

root@debian:~# cat /proc/mtd
dev:    size   erasesize  name
mtd0: 08000000 00020000 "orion_nand"
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
root@debian:~#


Can I follow steps describe in your tutorial or i should first fix something ?

My orginal MTDs on factory uboot was:
/e-data/78f7ce49-2f3d-484f-a9d4-e24f88443e5d/root/tools # cat /proc/mtd

dev:    size   erasesize  name
mtd0: 00100000 00020000 "uboot"
mtd1: 00080000 00020000 "uboot_env"
mtd2: 00080000 00020000 "key_store"
mtd3: 00080000 00020000 "info"
mtd4: 00a00000 00020000 "etc"
mtd5: 00a00000 00020000 "kernel_1"
mtd6: 02fc0000 00020000 "rootfs1"
mtd7: 00a00000 00020000 "kernel_2"
mtd8: 02fc0000 00020000 "rootfs2"



Edited 3 time(s). Last edit at 06/23/2016 02:48PM by bodhi.
Re: Install u-boot on NSA310 question
June 23, 2016 02:50PM
Fix mtdparts first:

fw_setenv mtdparts 'mtdparts=orion_nand:0x100000(uboot),0x80000(uboot_env),0x80000(key_store),0x80000(info),0xA00000(etc),0xA00000(kernel_1),0x2FC0000(rootfs1),0xA00000(kernel_2),0x2FC0000(rootfs2)'

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Install u-boot on NSA310 question
June 23, 2016 04:00PM
Hi,

Thanks for quick answer but it didn't help:

root@debian:~# fw_printenv
bootcmd_exec=mw 0x800000 0 1; run load_uimage; if run load_initrd; then if run load_dtb; then bootm 0x800000 0x1100000 0x1c00000; else bootm 0x800000 0x1100000; fi; else if run load_dtb; then bootm 0x800000 - 0x1c00000; else bootm 0x800000; fi; fi
bootcmd=run bootcmd_uenv; run scan_disk; run set_bootargs; run bootcmd_exec
bootcmd_uenv=run uenv_load; if test $uenv_loaded -eq 1; then run uenv_import; fi
bootdelay=10
bootdev=usb
device=0:1
devices=usb ide mmc
disks=0 1 2 3
ethact=egiga0
if_netconsole=ping $serverip
ipaddr=192.168.0.231
led_error=orange blinking
led_exit=green off
led_init=green blinking
load_dtb=echo loading DTB $dtb_file ...; ext2load $bootdev $device 0x1c00000 $dtb_file
load_initrd=echo loading uInitrd ...; ext2load $bootdev $device 0x1100000 /boot/uInitrd
load_uimage=echo loading uImage ...; ext2load $bootdev $device 0x800000 /boot/uImage
mainlineLinux=yes
mtdids=nand0=orion_nand
partition=nand0,2
preboot_nc=run if_netconsole start_netconsole
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 ext2load $dev $disknum:1 0x800000 /boot/uImage 1; then scan_done=1; echo Found bootable drive on $dev $disknum; setenv device $disknum:1; setenv bootdev $dev; fi; fi; done; fi; done
serverip=192.168.0.220
set_bootargs=setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 $mtdparts $custom_params
start_netconsole=setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version;
stderr=serial
stdin=serial
stdout=serial
uenv_import=echo importing envs ...; env import -t 0x810000
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_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
uenv_read=echo loading envs from $devtype $disknum ...; if load $devtype $disknum:1 0x810000 /boot/uEnv.txt; then setenv uenv_loaded 1; fi
usb_ready_retry=15
arcNumber=4022
ethaddr=50:67:F0:69:4E:A5
dtb_file=/boot/dts/kirkwood-nsa310.dtb
mtdparts=mtdparts=orion_nand:0x100000(uboot),0x80000(uboot_env),0x80000(key_store),0x80000(info),0xA00000(etc),0xA00000(kernel_1),0x2FC0000(rootfs1),0xA00000(kernel_2),0x2FC0000(rootfs2)
root@debian:~#
root@debian:~#
root@debian:~#
root@debian:~#
root@debian:~# cat /proc/mtd
dev:    size   erasesize  name
mtd0: 08000000 00020000 "orion_nand"

root@debian:~# cat /boot/uEnv.txt
arcNumber=4022
bootcmd_exec=mw 0x800000 0 1; run load_uimage; if run load_initrd; then if run load_dtb; then bootm 0x800000 0x1100000 0x1c00000; else bootm 0x800000 0x1100000; fi; else if run load_dtb; then bootm 0x800000 - 0x1c00000; else bootm 0x800000; fi; fi
bootcmd=run bootcmd_uenv; run scan_disk; run set_bootargs; run bootcmd_exec
bootcmd_uenv=run uenv_load; if test $uenv_loaded -eq 1; then run uenv_import; fi
bootdelay=10
bootdev=usb
device=0:1
devices=usb ide mmc
disks=0 1 2 3
ethact=egiga0
ethaddr=50:67:F0:69:4E:A5
if_netconsole=ping $serverip
ipaddr=192.168.0.231
led_error=orange blinking
led_exit=green off
led_init=green blinking
dtb_file=/boot/dts/kirkwood-nsa310.dtb
load_dtb=echo loading DTB $dtb_file ...; ext2load $bootdev $device 0x1c00000 $dtb_file
load_initrd=echo loading uInitrd ...; ext2load $bootdev $device 0x1100000 /boot/uInitrd
load_uimage=echo loading uImage ...; ext2load $bootdev $device 0x800000 /boot/uImage
mainlineLinux=yes
mtdids=nand0=orion_nand
mtdparts=mtdparts=nand_mtd:0x100000(uboot),0x80000(uboot_env),0x80000(key_store),0x80000(info),0xA00000(etc),0xA00000(kernel_1),0x2FC0000(rootfs1),0xA00000(kernel_2),0x2FC0000(rootfs2)
partition=nand0,2
preboot_nc=run if_netconsole start_netconsole
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 ext2load $dev $disknum:1 0x800000 /boot/uImage 1; then scan_done=1; echo Found bootable drive on $dev $disknum; setenv device $disknum:1; setenv bootdev $dev; fi; fi; done; fi; done
serverip=192.168.0.220
set_bootargs=setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 $mtdparts $custom_params
start_netconsole=setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version;
stderr=serial
stdin=serial
stdout=serial
uenv_import=echo importing envs ...; env import -t 0x810000
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_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
uenv_read=echo loading envs from $devtype $disknum ...; if load $devtype $disknum:1 0x810000 /boot/uEnv.txt; then setenv uenv_loaded 1; fi
usb_ready_retry=15

Re: Install u-boot on NSA310 question
June 23, 2016 04:29PM
Please post the entire boot log. If you have serial console log then post that. If not, post dmesg ouput.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Install u-boot on NSA310 question
June 24, 2016 01:16AM
The full log from console:

NSA310> printenv
arcNumber=4022
bootcmd=run bootcmd_uenv; run scan_disk; run set_bootargs; run bootcmd_exec
bootcmd_exec=mw 0x800000 0 1; run load_uimage; if run load_initrd; then if run load_dtb; then bootm 0x800000 0x1100000 0x1c00000; else bootm 0x800000 0x1100000; fi; else if run load_dtb; then bootm 0x800000 - 0x1c00000; else bootm 0x800000; fi; fi
bootcmd_uenv=run uenv_load; if test $uenv_loaded -eq 1; then run uenv_import; fi
bootdelay=10
bootdev=usb
device=0:1
devices=usb ide mmc
disks=0 1 2 3
dtb_file=/boot/dts/kirkwood-nsa310.dtb
ethact=egiga0
ethaddr=50:67:F0:69:4E:A5
if_netconsole=ping $serverip
ipaddr=192.168.0.231
led_error=orange blinking
led_exit=green off
led_init=green blinking
load_dtb=echo loading DTB $dtb_file ...; ext2load $bootdev $device 0x1c00000 $dtb_file
load_initrd=echo loading uInitrd ...; ext2load $bootdev $device 0x1100000 /boot/uInitrd
load_uimage=echo loading uImage ...; ext2load $bootdev $device 0x800000 /boot/uImage
mainlineLinux=yes
mtdids=nand0=orion_nand
mtdparts=mtdparts=orion_nand:0x100000(uboot),0x80000(uboot_env),0x80000(key_store),0x80000(info),0xA00000(etc),0xA00000(kernel_1),0x2FC0000(rootfs1),0xA00000(kernel_2),0x2FC0000(rootfs2)
partition=nand0,2
preboot_nc=run if_netconsole start_netconsole
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 ext2load $dev $disknum:1 0x800000 /boot/uImage 1; then scan_done=1; echo Found bootable drive on $dev $disknum; setenv device $disknum:1; setenv bootdev $dev; fi; fi; done; fi; done
serverip=192.168.0.220
set_bootargs=setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 $mtdparts $custom_params
start_netconsole=setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version;
stderr=serial
stdin=serial
stdout=serial
uenv_import=echo importing envs ...; env import -t 0x810000
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 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_ready_retry=15

Environment size: 2781/131068 bytes
NSA310> reset
resetting ...
▒

U-Boot 2015.10-tld-1 (Nov 06 2015 - 16:19:43 -0800)
ZyXEL NSA310 1-Bay Power Media Server


SoC:   Kirkwood 88F6281_A1
DRAM:  256 MiB (ECC not enabled)
WARNING: Caches not enabled
NAND:  128 MiB
In:    serial
Out:   serial
Err:   serial
Net:   egiga0
PHY reset timed out
MV88E1318 PHY initialized on egiga0
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...
Use USB retry period from the environment: 15 second(s)
1 Storage Device(s) found

Reset IDE: ide_preinit failed
Unknown command 'mmc' - try 'help'

Partition Map for USB device 0  --   Partition Type: DOS

Part    Start Sector    Num Sectors     UUID            Type
  1     992             7863328         c038fe9f-01     83
loading envs from usb 0 ...
2702 bytes read in 276 ms (8.8 KiB/s)

no IDE devices available
Unknown command 'mmc' - try 'help'
importing envs ...
## Info: input data size = 2703 = 0xA8F
running scan_disk ...
Scan device usb
device usb 0:1
1 bytes read in 239 ms (0 Bytes/s)
Found bootable drive on usb 0
loading uImage ...
3154896 bytes read in 435 ms (6.9 MiB/s)
loading uInitrd ...
7192840 bytes read in 605 ms (11.3 MiB/s)
loading DTB /boot/dts/kirkwood-nsa310.dtb ...
13066 bytes read in 281 ms (44.9 KiB/s)
## Booting kernel from Legacy Image at 00800000 ...
   Image Name:   Linux-4.4.0-kirkwood-tld-1
   Created:      2016-06-23  13:50:11 UTC
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    3154832 Bytes = 3 MiB
   Load Address: 00008000
   Entry Point:  00008000
   Verifying Checksum ... OK
## Loading init Ramdisk from Legacy Image at 01100000 ...
   Image Name:   initramfs-4.4.0-kirkwood-tld-1
   Created:      2016-06-23  13:50:25 UTC
   Image Type:   ARM Linux RAMDisk Image (gzip compressed)
   Data Size:    7192776 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 0f43b000, end 0fb170c8 ... OK
   Loading Device Tree to 0f434000, end 0f43a309 ... OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.4.0-kirkwood-tld-1 (root@tldDebian) (gcc version 4.9.2 (Debian 4.9.2-10) ) #1 PREEMPT Mon Jan 25 20:35:24 PST 2016
[    0.000000] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f
[    0.000000] CPU: VIVT data cache, VIVT instruction cache
[    0.000000] Machine model: ZyXEL NSA310
[    0.000000] Memory policy: Data cache writeback
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 65024
[    0.000000] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=nand_mtd:0x100000(uboot),0x80000(uboot_env),0x80000(key_store),0x80000(info),0xA00000(etc),0xA00000(kernel_1),0x2FC0000(rootfs1),0xA00000(kernel_2),0x2FC0000(rootfs2)
[    0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)
[    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] Memory: 243544K/262144K available (6007K kernel code, 573K rwdata, 1992K rodata, 296K init, 312K bss, 18600K 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 : 0xd0800000 - 0xff800000   ( 752 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xd0000000   ( 256 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .text : 0xc0008000 - 0xc07d7ef4   (8000 kB)
[    0.000000]       .init : 0xc07d8000 - 0xc0822000   ( 296 kB)
[    0.000000]       .data : 0xc0822000 - 0xc08b169c   ( 574 kB)
[    0.000000]        .bss : 0xc08b169c - 0xc08ff9d0   ( 313 kB)
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 32.
[    0.000000] NR_IRQS:16 nr_irqs:16 16
[    0.000000] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
[    0.000009] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns
[    0.000326] Console: colour dummy device 80x30
[    0.000358] Calibrating delay loop... 1196.85 BogoMIPS (lpj=5984256)
[    0.090101] pid_max: default: 32768 minimum: 301
[    0.090211] Security Framework initialized
[    0.090288] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.090309] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.091088] Initializing cgroup subsys io
[    0.091122] Initializing cgroup subsys devices
[    0.091147] Initializing cgroup subsys freezer
[    0.091180] Initializing cgroup subsys net_cls
[    0.091265] CPU: Testing write buffer coherency: ok
[    0.091730] Setting up static identity map for 0x8200 - 0x8258
[    0.092059] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3
[    0.095806] devtmpfs: initialized
[    0.101381] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.101848] prandom: seed boundary self test passed
[    0.105587] prandom: 100 self tests passed
[    0.105613] pinctrl core: initialized pinctrl subsystem
[    0.106993] NET: Registered protocol family 16
[    0.107418] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.130107] cpuidle: using governor ladder
[    0.160106] cpuidle: using governor menu
[    0.160545] Feroceon L2: Enabling L2
[    0.160591] Feroceon L2: Cache support initialised.
[    0.166253] No ATAGs?
[    0.201609] vgaarb: loaded
[    0.201987] usbcore: registered new interface driver usbfs
[    0.202070] usbcore: registered new interface driver hub
[    0.202133] usbcore: registered new device driver usb
[    0.203232] clocksource: Switched to clocksource orion_clocksource
[    0.258296] NET: Registered protocol family 2
[    0.259100] TCP established hash table entries: 2048 (order: 1, 8192 bytes)
[    0.259138] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
[    0.259170] TCP: Hash tables configured (established 2048 bind 2048)
[    0.259238] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    0.259261] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    0.259455] NET: Registered protocol family 1
[    0.259862] RPC: Registered named UNIX socket transport module.
[    0.259874] RPC: Registered udp transport module.
[    0.259882] RPC: Registered tcp transport module.
[    0.259889] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.260175] Unpacking initramfs...
[    0.904130] Freeing initrd memory: 7028K (cf43b000 - cfb18000)
[    0.904264] NetWinder Floating Point Emulator V0.97 (double precision)
[    0.905396] futex hash table entries: 256 (order: -1, 3072 bytes)
[    0.905469] audit: initializing netlink subsys (disabled)
[    0.905528] audit: type=2000 audit(0.900:1): initialized
[    0.905883] Initialise system trusted keyring
[    0.906274] zbud: loaded
[    0.906571] VFS: Disk quotas dquot_6.6.0
[    0.906630] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.907190] NFS: Registering the id_resolver key type
[    0.907243] Key type id_resolver registered
[    0.907253] Key type id_legacy registered
[    0.907280] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.907296] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    0.907517] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    0.908041] Key type big_key registered
[    0.928363] Key type asymmetric registered
[    0.928387] Asymmetric key parser 'x509' registered
[    0.928487] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.928509] io scheduler noop registered
[    0.928525] io scheduler deadline registered
[    0.928589] io scheduler cfq registered (default)
[    0.929990] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver
[    0.930672] irq: Cannot allocate irq_descs @ IRQ33, assuming pre-allocated
[    0.931096] irq: Cannot allocate irq_descs @ IRQ65, assuming pre-allocated
[    0.931943] mvebu-pcie mbus:pcie-controller: PCI host bridge to bus 0000:00
[    0.931963] pci_bus 0000:00: root bus resource [io  0x1000-0xfffff]
[    0.931977] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff]
[    0.931991] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.932401] PCI: bus0: Fast back to back transfers disabled
[    0.932428] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.943382] PCI: bus1: Fast back to back transfers disabled
[    0.943566] pci 0000:00:01.0: BAR 14: assigned [mem 0xe0000000-0xe00fffff]
[    0.943583] pci 0000:00:01.0: BAR 13: assigned [io  0x10000-0x10fff]
[    0.943603] pci 0000:01:00.0: BAR 6: assigned [mem 0xe0000000-0xe000ffff pref]
[    0.943620] pci 0000:01:00.0: BAR 4: assigned [mem 0xe0010000-0xe0013fff 64bit pref]
[    0.943645] pci 0000:01:00.0: BAR 2: assigned [mem 0xe0014000-0xe0014fff 64bit pref]
[    0.943666] pci 0000:01:00.0: BAR 0: assigned [io  0x10000-0x100ff]
[    0.943682] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.943695] pci 0000:00:01.0:   bridge window [io  0x10000-0x10fff]
[    0.943710] pci 0000:00:01.0:   bridge window [mem 0xe0000000-0xe00fffff]
[    0.943799] pcieport 0000:00:01.0: enabling device (0140 -> 0143)
[    0.944097] mv_xor f1060800.xor: Marvell shared XOR driver
[    0.983935] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    0.984156] mv_xor f1060900.xor: Marvell shared XOR driver
[    1.023918] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[    1.024397] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[    1.025797] console [ttyS0] disabled
[    1.025862] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 26, base_baud = 12500000) is a 16550A
[    1.736122] console [ttyS0] enabled
[    1.740923] nand: device found, Manufacturer ID: 0xec, Chip ID: 0xf1
[    1.747342] nand: Samsung NAND 128MiB 3,3V 8-bit
[    1.751981] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[    1.759609] Scanning device for bad blocks
[    1.797297] Bad eraseblock 348 at 0x000002b80000
[    1.802561] Bad eraseblock 355 at 0x000002c60000
[    1.838542] Bad eraseblock 681 at 0x000005520000
[    1.845074] Bad eraseblock 701 at 0x0000057a0000
[    1.857947] Bad eraseblock 787 at 0x000006260000
[    1.876025] Bad eraseblock 927 at 0x0000073e0000
[    1.886879] Bad eraseblock 992 at 0x000007c00000
[    1.901088] libphy: Fixed MDIO Bus: probed
[    1.905690] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.912274] ehci-pci: EHCI PCI platform driver
[    1.916865] ehci-orion: EHCI orion driver
[    1.921090] orion-ehci f1050000.ehci: EHCI Host Controller
[    1.926729] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1
[    1.934626] orion-ehci f1050000.ehci: irq 30, io mem 0xf1050000
[    1.953270] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00
[    1.959544] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.966392] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.973672] usb usb1: Product: EHCI Host Controller
[    1.978571] usb usb1: Manufacturer: Linux 4.4.0-kirkwood-tld-1 ehci_hcd
[    1.985232] usb usb1: SerialNumber: f1050000.ehci
[    1.990701] hub 1-0:1.0: USB hub found
[    1.994566] hub 1-0:1.0: 1 port detected
[    1.999481] mousedev: PS/2 mouse device common for all mice
[    2.005799] rtc-mv f1010300.rtc: rtc core: registered f1010300.rtc as rtc0
[    2.012876] i2c /dev entries driver
[    2.019717] hidraw: raw HID events driver (C) Jiri Kosina
[    2.025602] drop_monitor: Initializing network drop monitor service
[    2.032157] NET: Registered protocol family 17
[    2.036922] Key type dns_resolver registered
[    2.042072] registered taskstats version 1
[    2.046337] Loading compiled-in X.509 certificates
[    2.051219] zswap: loaded using pool lzo/zbud
[    2.064819] Key type encrypted registered
[    2.069541] rtc-mv f1010300.rtc: setting system clock to 2016-06-24 06:10:05 UTC (1466748605)
[    2.080527] Freeing unused kernel memory: 296K (c07d8000 - c0822000)
Loading, please wait...
[    2.157999] systemd-udevd[79]: starting version 215
[    2.175272] random: systemd-udevd urandom read with 3 bits of entropy available
[    2.291556] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.313336] usb 1-1: new high-speed USB device number 2 using orion-ehci
[    2.323446] r8169 0000:01:00.0: enabling device (0140 -> 0143)
[    2.330234] r8169 0000:01:00.0 eth0: RTL8168d/8111d at 0xd09c6000, 00:00:00:00:00:30, XID 083000c0 IRQ 83
[    2.379390] SCSI subsystem initialized
[    2.406228] r8169 0000:01:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    2.445579] sata_mv f1080000.sata: slots 32 ports 2
[    2.485152] usb 1-1: New USB device found, idVendor=05e3, idProduct=0608
[    2.491913] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    2.505835] scsi host0: sata_mv
[    2.512102] usb 1-1: Product: USB2.0 Hub
[    2.521434] hub 1-1:1.0: USB hub found
[    2.527240] scsi host1: sata_mv
[    2.530800] ata1: SATA max UDMA/133 irq 32
[    2.535408] hub 1-1:1.0: 4 ports detected
[    2.563345] ata2: SATA max UDMA/133 irq 32
[    2.823262] usb 1-1.3: new high-speed USB device number 3 using orion-ehci
[    2.913269] ata1: SATA link down (SStatus 0 SControl F300)
[    2.941260] usb 1-1.3: New USB device found, idVendor=058f, idProduct=6387
[    2.948206] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.955601] usb 1-1.3: Product: Mass Storage
[    2.959893] usb 1-1.3: Manufacturer: Generic
[    2.964204] usb 1-1.3: SerialNumber: 177E75A9
[    2.978461] usb-storage 1-1.3:1.0: USB Mass Storage device detected
[    2.985220] scsi host2: usb-storage 1-1.3:1.0
[    2.991412] usbcore: registered new interface driver usb-storage
[    3.000625] usbcore: registered new interface driver uas
[    3.283290] ata2: SATA link down (SStatus 0 SControl F300)
[    3.985481] scsi 2:0:0:0: Direct-Access     Generic  Flash Disk       8.07 PQ: 0 ANSI: 4
[    4.003406] sd 2:0:0:0: [sda] 7864320 512-byte logical blocks: (4.02 GB/3.75 GiB)
[    4.011793] sd 2:0:0:0: [sda] Write Protect is off
[    4.017540] sd 2:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    4.035899]  sda: sda1
[    4.042167] sd 2:0:0:0: [sda] Attached SCSI removable disk
[    4.051944] sd 2:0:0:0: Attached scsi generic sg0 type 0
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.
modprobe: module ext3 not found in modules.dep
Begin: Checking root file system ... fsck from util-linux 2.25.2
rootfs: clean, 15581/245760 files, 166697/982916 blocks
done.
[   14.251467] EXT4-fs (sda1): mounting ext3 file system using the ext4 subsystem
[   14.303359] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
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.
[....] Starting the hotplug events dispatcher: udevd[   16.277256] systemd-udevd[296]: starting version 215
. ok
[ ok ] Synthesizing the initial hotplug events...done.
[   16.639291] input: gpio_keys as /devices/platform/gpio_keys/input/input0
[....] Waiting for /dev to be fully populated...[   16.780808] hwmon_vid: Unknown VRM version of your CPU
[   16.799585] adt7475 0-002e: ADT7476 device, revision 1
[   16.812937] orion_wdt: Initial timeout 21 sec
[   16.834992] adt7475 0-002e: Optional features: in0 in4 pwm2 vid
[   16.850492] marvell-cesa: probe of f1030000.crypto failed with error -524
[   16.870558] adt7475 0-002e: Bypassing attenuators on: in0 in1 in3 in4
[   17.113305] random: nonblocking pool is initialized
done.
[ ok ] Activating swap...done.
[   18.114265] EXT4-fs (sda1): re-mounted. Opts: (null)
[....] Checking root file system...fsck from util-linux 2.25.2
rootfs: clean, 15581/245760 files, 166697/982916 blocks
done.
[   18.391110] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[ ok ] Activating lvm and md swap...done.
[....] Checking file systems...fsck from util-linux 2.25.2
done.
[ ok ] Loading kernel modules...done.
[ ok ] Cleaning up temporary files... /tmp.
[ ok ] Mounting local filesystems...done.
[ ok ] Activating swapfile swap...done.
[ ok ] Cleaning up temporary files....
[ ok ] Setting kernel variables ...done.
[   21.176863] NET: Registered protocol family 10
[   21.394626] r8169 0000:01:00.0 eth0: link down
[   21.399115] r8169 0000:01:00.0 eth0: link down
[   21.403685] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   23.436714] r8169 0000:01:00.0 eth0: link up
[   23.441030] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[....] Configuring network interfaces...Internet Systems Consortium DHCP Client 4.3.1
Copyright 2004-2014 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/eth0/00:00:00:00:00:30
Sending on   LPF/eth0/00:00:00:00:00:30
Sending on   Socket/fallback
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10
DHCPREQUEST on eth0 to 255.255.255.255 port 67
DHCPOFFER from 192.168.1.1
DHCPACK from 192.168.1.1
bound to 192.168.1.167 -- renewal in 20801 seconds.
done.
[ ok ] Starting rpcbind daemon....
[ ok ] Starting NFS common utilities: statd idmapd.
[ ok ] Cleaning up temporary files....
[ ok ] Setting sensors limits.
INIT: Entering runlevel: 2
[info] Using makefile-style concurrent boot in runlevel 2.
[....] Starting busybox' syslogd implementation : syslogdStarting /sbin/syslogd...
1261 (syslogd)
. ok
[ ok ] Starting NFS common utilities: statd idmapd.
[ ok ] Starting system message bus: dbus.
[warn] Not starting NFS kernel daemon: no exports. ... (warning).
[ ok ] Starting Avahi mDNS/DNS-SD Daemon: avahi-daemon.
[ ok ] Starting NTP server: ntpd.
[ ok ] Starting OpenBSD Secure Shell server: sshd.
[....] Starting busybox' klogd implementation : klogdStarting /sbin/klogd...
1264 (klogd)
. ok

Debian GNU/Linux 8 debian ttyS0
Re: Install u-boot on NSA310 question
June 24, 2016 01:41AM
Your mtdparts env is correct in u-boot, but wrong in kernel bootargs. Look at your uEnv.txt in the rootfs /boot, it might contain wrong mtdparts env that has overwritten the correct one in uboot envs.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Install u-boot on NSA310 question
June 24, 2016 02:24AM
Thanks a lot it is better now (I removed eEnv.txt):

root@debian:~# cat /boot/uEnv.txt
cat: /boot/uEnv.txt: No such file or directory
root@debian:~# cat /proc/mtd
dev:    size   erasesize  name
mtd0: 00100000 00020000 "uboot"
mtd1: 00080000 00020000 "uboot_env"
mtd2: 00080000 00020000 "key_store"
mtd3: 00080000 00020000 "info"
mtd4: 00a00000 00020000 "etc"
mtd5: 00a00000 00020000 "kernel_1"
mtd6: 02fc0000 00020000 "rootfs1"
mtd7: 00a00000 00020000 "kernel_2"
mtd8: 02fc0000 00020000 "rootfs2"
Re: Install u-boot on NSA310 question
June 24, 2016 02:41AM
So Now I have latest uboot:

U-Boot 2016.05-tld-1 (Jun 12 2016 - 13:59:20 -0700)
ZyXEL NSA310 1-Bay Power Media Server

Thanks a lot



Edited 1 time(s). Last edit at 06/24/2016 02:41AM by kofec.
Re: Install u-boot on NSA310 question
June 24, 2016 02:46AM
I have question. Is it possibile to prepare this /boot/uEnv.txt to start original os from nand ?
Re: Install u-boot on NSA310 question
June 26, 2016 05:32AM
kofec Wrote:
-------------------------------------------------------
> I have question. Is it possibile to prepare this
> /boot/uEnv.txt to start original os from nand

No. Stock Zyxel OS is no longer bootable after you installed new uboot. I have not worked on this so dont know if it is possible to make this happen.

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

Subject:


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