Change openWRT to debian on STORA November 09, 2022 03:35PM |
Registered: 1 year ago Posts: 19 |
setenv mainlineLinux yes setenv arcNumber 2743 setenv ipaddr 192.168.88.121 setenv serverip 192.168.88.10 tftpboot 0x200000 uImage tftpboot 0x800000 uInitrd setenv bootargs console=ttyS0,115200n8 base-installer/initramfs-tools/driver-policy=most bootm 0x200000 0x800000
U-Boot 2020.04 (Jul 10 2020 - 13:03:49 +0000) Netgear Stora MS2110 SoC: Kirkwood 88F6281_A1 DRAM: 128 MiB NAND: 256 MiB In: serial Out: serial Err: serial Net: egiga0 PHY reset timed out 88E1116 Initialized on egiga0 IDE: ide_preinit failed Hit any key to stop autoboot: 0 Netgear Stora> printenv arcNumber=2743 baudrate=115200 bootcmd=setenv bootargs ${console} ${mtdparts} ${bootargs_root}; ubi part ubi; ubifsmount ubi:rootfs; ubi read 0x800000 kernel; bootm 0x800000 bootdelay=2 console=console=ttyS0,115200 ethact=egiga0 ethaddr=52:3b:20:9c:11:51 ipaddr=192.168.0.2 mtdids=nand0=orion_nand mtdparts=mtdparts=orion_nand:0x180000@0x0(uboot),0x20000@0x180000(uboot_env),-@0x200000(ubi) serverip=192.168.0.1 stderr=serial stdin=serial stdout=serial Environment size: 454/131068 bytes Netgear Stora> version U-Boot 2020.04 (Jul 10 2020 - 13:03:49 +0000) Netgear Stora MS2110 arm-openwrt-linux-muslgnueabi-gcc (OpenWrt GCC 8.4.0 r13674+29-cbb66f9edb) 8.4.0 GNU ld (GNU Binutils) 2.31.1 Netgear Stora>
Re: Change openWRT to debian on STORA November 09, 2022 05:11PM |
Admin Registered: 12 years ago Posts: 18,137 |
Re: Change openWRT to debian on STORA November 10, 2022 03:28PM |
Registered: 1 year ago Posts: 19 |
Netgear Stora> boot resetting 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 5435888 bytes read in 231 ms (22.4 MiB/s) 9671091 bytes read in 346 ms (26.7 MiB/s) ## Booting kernel from Legacy Image at 00800000 ... Image Name: Linux-5.13.6-kirkwood-tld-1 Created: 2021-09-24 0:22:58 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 5435824 Bytes = 5.2 MiB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK ## Loading init Ramdisk from Legacy Image at 02100000 ... Image Name: initramfs-5.13.6-kirkwood-tld-1 Created: 2021-09-24 1:06:32 UTC Image Type: ARM Linux RAMDisk Image (gzip compressed) Data Size: 9671027 Bytes = 9.2 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK Loading Kernel Image Loading Ramdisk to 036c6000, end 03fff173 ... OK Starting kernel ... Uncompressing Linux... done, booting the kernel. Error: invalid dtb and unrecognized/unsupported machine ID r1=0x00000ab7, r2=0x00000100 r2[]=05 00 00 00 01 00 41 54 00 00 00 00 00 00 00 00 Available machine support: ID (hex) NAME ffffffff Generic DT based system ffffffff Marvell Kirkwood (Flattened Device Tree) Please check your kernel config and/or bootloader.
Netgear Stora> printenv arcNumber=2743 baudrate=115200 bootcmd=usb reset; run usb_bootcmd; usb stop; reset bootdelay=2 console=console=ttyS0,115200 ethact=egiga0 ethaddr=52:3b:20:9c:11:51 ipaddr=192.168.0.2 load_uimage=ext2load usb 0:1 0x800000 /boot/uImage load_uinitrd=ext2load usb 0:1 0x2100000 /boot/uInitrd mtdids=nand0=orion_nand mtdparts=mtdparts=orion_nand:0x180000@0x0(uboot),0x20000@0x180000(uboot_env),-@0x200000(ubi) serverip=192.168.0.1 stderr=serial stdin=serial stdout=serial usb_boot=mw 0x800000 0 1; run load_uimage; run load_uinitrd; bootm 0x800000 0x2100000 usb_bootcmd=run usb_set_bootargs; run usb_boot usb_set_bootargs=setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 earlyprintk=serial
U-Boot 2020.04 (Jul 10 2020 - 13:03:49 +0000) Netgear Stora MS2110
Re: Change openWRT to debian on STORA November 10, 2022 03:48PM |
Admin Registered: 12 years ago Posts: 18,137 |
Quote
4. (Stock u-boot only) Create uImage with embedded DTB for booting with older u-boots (2012 or earlier). Skip this step if you have installed the latest U-Boot for Kirkwood (or are installing this u-boot at the same time, or running kwboot with latest u-boot image).
Please replace kirkwood-goflexnet.dtb below with the correct DTB name for your box (see the folder /media/sdb1/boot/dts for the exact spelling of your Kirkwood box name).
Generate the uImage with DTB embedded inside:
cd /media/sdb1/boot
cp -a zImage-5.13.6-kirkwood-tld-1 zImage.fdt
cat dts/kirkwood-goflexnet.dtb >> zImage.fdt
mv uImage uImage.orig
mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-5.13.6-kirkwood-tld-1 -d zImage.fdt uImage
sync
Re: Change openWRT to debian on STORA November 10, 2022 05:27PM |
Registered: 1 year ago Posts: 19 |
Re: Change openWRT to debian on STORA November 10, 2022 05:45PM |
Admin Registered: 12 years ago Posts: 18,137 |
Re: Change openWRT to debian on STORA November 11, 2022 03:50AM |
Registered: 1 year ago Posts: 19 |
Re: Change openWRT to debian on STORA November 11, 2022 02:45PM |
Admin Registered: 12 years ago Posts: 18,137 |
printenv helpAnd post the entire serial console log up until this point.
Re: Change openWRT to debian on STORA November 11, 2022 02:55PM |
Registered: 1 year ago Posts: 19 |
U-Boot 2020.04 (Jul 10 2020 - 13:03:49 +0000) Netgear Stora MS2110 SoC: Kirkwood 88F6281_A1 DRAM: 128 MiB NAND: 256 MiB In: serial Out: serial Err: serial Net: egiga0 PHY reset timed out 88E1116 Initialized on egiga0 IDE: ide_preinit failed Hit any key to stop autoboot: 2 0 Netgear Stora> printenv arcNumber=2743 baudrate=115200 bootcmd=setenv bootargs ${console} ${mtdparts} ${bootargs_root}; ubi part ubi; ubifsmount ubi:rootfs; ubi read 0x800000 kernel; bootm 0x800000 bootdelay=2 console=console=ttyS0,115200 ethact=egiga0 ethaddr=52:3b:20:9c:11:51 ipaddr=192.168.0.2 mtdids=nand0=orion_nand mtdparts=mtdparts=orion_nand:0x180000@0x0(uboot),0x20000@0x180000(uboot_env),-@0x200000(ubi) serverip=192.168.0.1 stderr=serial stdin=serial stdout=serial Environment size: 454/131068 bytes Netgear Stora> help ? - alias for 'help' base - print or set address offset bdinfo - print Board Info structure boot - boot default, i.e., run 'bootcmd' bootd - boot default, i.e., run 'bootcmd' bootelf - Boot from an ELF image in memory bootm - boot application image from memory bootp - boot image via network using BOOTP/TFTP protocol bootvx - Boot vxWorks from an ELF image bootz - boot Linux zImage image from memory chpart - change active partition cmp - memory compare coninfo - print console devices and information cp - memory copy crc32 - checksum calculation date - get/set/reset date & time dhcp - boot image via network using DHCP/TFTP protocol diskboot - boot from IDE device dns - lookup the IP of a hostname echo - echo args to console editenv - edit environment variable env - environment handling commands exit - exit script ext2load - load binary file from a Ext2 filesystem ext2ls - list files in a directory (default /) ext4load - load binary file from a Ext4 filesystem ext4ls - list files in a directory (default /) ext4size - determine a file's size false - do nothing, unsuccessfully fatinfo - print information about filesystem fatload - load binary file from a dos filesystem fatls - list files in a directory (default /) fatsize - determine a file's size fdt - flattened device tree utility commands fsinfo - print information about filesystems fsload - load binary file from a filesystem image fsls - list files in a directory (default /) go - start application at address 'addr' help - print command description/usage ide - IDE sub-system iminfo - print header information for application image imxtract - extract a part of a multi-image itest - return true/false on integer compare loadb - load binary file over serial line (kermit mode) loads - load S-Record file over serial line loadx - load binary file over serial line (xmodem mode) loady - load binary file over serial line (ymodem mode) loop - infinite loop on address range md - memory display mii - MII utility commands mm - memory modify (auto-incrementing address) mtdparts - define flash/nand partitions mw - memory write (fill) nand - NAND sub-system nboot - boot from NAND device nfs - boot image via network using NFS protocol nm - memory modify (constant address) ping - send ICMP ECHO_REQUEST to network host printenv - print environment variables reset - Perform RESET of the CPU run - run commands in an environment variable saveenv - save environment variables to persistent storage setenv - set environment variables setexpr - set environment variable as the result of eval expression showvar - print local hushshell variables sleep - delay execution for some time sntp - synchronize RTC via network source - run script from memory test - minimal test like /bin/sh tftpboot - boot image via network using TFTP protocol true - do nothing, successfully ubi - ubi commands ubifsload - load file from an UBIFS filesystem ubifsls - list files in a directory ubifsmount- mount UBIFS volume ubifsumount- unmount UBIFS volume usb - USB sub-system usbboot - boot from USB device version - print monitor, compiler and linker version Netgear Stora>
Re: Change openWRT to debian on STORA November 11, 2022 03:53PM |
Admin Registered: 12 years ago Posts: 18,137 |
setenv usb_set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 earlyprintk=serial' setenv load_uimage 'ext2load usb 0:1 0x800000 /boot/uImage' setenv load_uinitrd 'ext2load usb 0:1 0x2100000 /boot/uInitrd' setenv usb_boot 'mw 0x800000 0 1; run load_uimage; run load_uinitrd; bootm 0x800000 0x2100000' setenv usb_bootcmd 'run usb_set_bootargs; run usb_boot' setenv bootcmd_debian 'usb reset; run usb_bootcmd; usb stop' setenv bootcmd_owrt 'setenv bootargs ${console} ${mtdparts} ${bootargs_root}; ubi part ubi; ubifsmount ubi:rootfs; ubi read 0x800000 kernel; bootm 0x800000' setenv bootcmd 'run bootcmd_debian; run bootcmd_owrt; reset'
bootIt should boot into Debian.
Re: Change openWRT to debian on STORA November 11, 2022 04:22PM |
Registered: 1 year ago Posts: 19 |
Re: Change openWRT to debian on STORA November 11, 2022 05:42PM |
Admin Registered: 12 years ago Posts: 18,137 |
dmesg | grep -i bad
saveenv boot
Re: Change openWRT to debian on STORA November 12, 2022 02:40AM |
Registered: 1 year ago Posts: 19 |
[?2004hroot@debian:~# dmesg | grep -i bad [?2004l [ 11.777260] Scanning device for bad blocks [ 11.789876] Bad eraseblock 64 at 0x000000800000 [ 11.795231] Bad eraseblock 65 at 0x000000820000 [ 11.807664] Bad eraseblock 125 at 0x000000fa0000 [ 11.948384] Bad eraseblock 1250 at 0x000009c40000 [?2004hroot@debian:~#
Re: Change openWRT to debian on STORA November 12, 2022 01:14PM |
Admin Registered: 12 years ago Posts: 18,137 |
Re: Change openWRT to debian on STORA November 12, 2022 02:04PM |
Registered: 1 year ago Posts: 19 |
Netgear Stora> setenv usb_set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 earlyprintk=serial' Netgear Stora> setenv load_uimage 'ext2load usb 0:1 0x800000 /boot/uImage' Netgear Stora> setenv load_uinitrd 'ext2load usb 0:1 0x2100000 /boot/uInitrd' Netgear Stora> setenv usb_boot 'mw 0x800000 0 1; run load_uimage; run load_uinitrd; bootm 0x800000 0x2100000' Netgear Stora> setenv usb_bootcmd 'run usb_set_bootargs; run usb_boot' Netgear Stora> setenv bootcmd_debian 'usb reset; run usb_bootcmd; usb stop' Netgear Stora> setenv bootcmd_owrt 'setenv bootargs ${console} ${mtdparts} ${bootargs_root}; ubi part ubi; ubifsmount ubi:rootfs; ubi read 0x800000 kernel; bootm 0x800000' Netgear Stora> setenv bootcmd 'run bootcmd_debian; run bootcmd_owrt; reset' Netgear Stora> saveenv Netgear Stora> boot resetting 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 5447395 bytes read in 232 ms (22.4 MiB/s) 9671459 bytes read in 366 ms (25.2 MiB/s) ## Booting kernel from Legacy Image at 00800000 ... Image Name: Linux-5.13.6-kirkwood-tld-1
[?2004hroot@debian:~# reboot -f [?2004l<\r>[ 112.499083][ T1201] reboot: Restarting system U-Boot 2020.04 (Jul 10 2020 - 13:03:49 +0000) Netgear Stora MS2110 SoC: Kirkwood 88F6281_A1 DRAM: 128 MiB NAND: 256 MiB In: serial Out: serial Err: serial Net: egiga0 PHY reset timed out 88E1116 Initialized on egiga0 IDE: ide_preinit failed Hit any key to stop autoboot: 2 <\b><\b><\b> 1 <\b><\b><\b> 0 mtd: partition "ubi" extends beyond the end of device "nand0" -- size truncated to 0xfe00000 ubi0: attaching mtd3 ubi0: scanning is finished ubi0: attached mtd3 (name "ubi", size 254 MiB) ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 129024 bytes ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 512 ubi0: VID header offset: 512 (aligned 512), data offset: 2048 ubi0: good PEBs: 2028, bad PEBs: 4, corrupted PEBs: 0 ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 ubi0: max/mean erase counter: 32/4, WL threshold: 4096, image sequence number: 2037047813 ubi0: available PEBs: 0, total reserved PEBs: 2028, PEBs reserved for bad PEB handling: 36 UBIFS error (ubi0:1 pid 0): ubifs_read_node: bad node type (4 but expected 6) UBIFS error (ubi0:1 pid 0): ubifs_read_node: bad node at LEB 0:0, LEB mapping status 1 Not a node, first 24 bytes:Error reading superblock on volume 'ubi:rootfs' errno=-22! ubifsmount - mount UBIFS volume Usage: ubifsmount <volume-name> - mount 'volume-name' volume No size specified -> Using max size (2580480) Read 2580480 bytes from volume kernel to 00800000 ## Booting kernel from Legacy Image at 00800000 ... Image Name: ARM OpenWrt Linux-5.4.143 Created: 2021-08-31 22:20:08 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 2455283 Bytes = 2.3 MiB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK Loading Kernel Image Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 5.4.143 (alex@openwrt-dev) (gcc version 8.4.0 (OpenWrt GCC 8.4.0 r16279-5cc0535800)) #0 Tue Aug 31 22:20:08 2021
Re: Change openWRT to debian on STORA November 12, 2022 02:19PM |
Admin Registered: 12 years ago Posts: 18,137 |
dmesg cat /proc/mtd cat /etc/fw_env.config fw_printenv
Re: Change openWRT to debian on STORA November 12, 2022 02:43PM |
Registered: 1 year ago Posts: 19 |
root@StoraWrt:/# dmesg [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 5.4.143 (alex@openwrt-dev) (gcc version 8.4.0 (OpenWrt GCC 8.4.0 r16279-5cc0535800)) #0 Tue Aug 31 22:20:08 2021 [ 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: NETGEAR MS2000 / MS2110 aka Stora [ 0.000000] Memory policy: Data cache writeback [ 0.000000] On node 0 totalpages: 32768 [ 0.000000] Normal zone: 288 pages used for memmap [ 0.000000] Normal zone: 0 pages reserved [ 0.000000] Normal zone: 32768 pages, LIFO batch:7 [ 0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768 [ 0.000000] pcpu-alloc: [0] 0 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 32480 [ 0.000000] Kernel command line: console=ttyS0,115200 mtdparts=orion_nand:0x180000@0x0(uboot),0x20000@0x180000(uboot_env),-@0x200000(ubi) [ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear) [ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 121132K/131072K available (4965K kernel code, 172K rwdata, 1368K rodata, 1024K init, 206K bss, 9940K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] random: get_random_bytes called from start_kernel+0x2d4/0x4fc with crng_init=0 [ 0.000000] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns [ 0.000010] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns [ 0.000042] Switching to timer-based delay loop, resolution 5ns [ 0.000130] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=2000000) [ 0.000154] pid_max: default: 32768 minimum: 301 [ 0.000399] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.000425] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.001481] CPU: Testing write buffer coherency: ok [ 0.002520] Setting up static identity map for 0x100000 - 0x10003c [ 0.002822] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3 [ 0.006741] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.006774] futex hash table entries: 256 (order: -1, 3072 bytes, linear) [ 0.006926] pinctrl core: initialized pinctrl subsystem [ 0.008106] NET: Registered protocol family 16 [ 0.008723] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.009970] cpuidle: using governor ladder [ 0.010434] Feroceon L2: Enabling L2 [ 0.010485] Feroceon L2: Cache support initialised. [ 0.015149] No ATAGs? [ 0.036697] SCSI subsystem initialized [ 0.037483] libata version 3.00 loaded. [ 0.037750] usbcore: registered new interface driver usbfs [ 0.037824] usbcore: registered new interface driver hub [ 0.037879] usbcore: registered new device driver usb [ 0.038063] workqueue: max_active 576 requested for napi_workq is out of range, clamping between 1 and 512 [ 0.041323] clocksource: Switched to clocksource orion_clocksource [ 0.042117] thermal_sys: Registered thermal governor 'step_wise' [ 0.042382] NET: Registered protocol family 2 [ 0.042527] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.042990] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) [ 0.043026] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.043050] TCP bind hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.043071] TCP: Hash tables configured (established 1024 bind 1024) [ 0.043169] UDP hash table entries: 256 (order: 0, 4096 bytes, linear) [ 0.043196] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear) [ 0.043405] NET: Registered protocol family 1 [ 0.043438] PCI: CLS 0 bytes, default 32 [ 0.045613] workingset: timestamp_bits=14 max_order=15 bucket_order=1 [ 0.052040] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.052054] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.064903] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver [ 0.065971] mvebu-gpio f1010140.gpio: IRQ index 3 not found [ 0.066429] mvebu-pcie mbus@f1000000:pcie@82000000: PCI host bridge to bus 0000:00 [ 0.066449] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.066463] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff] [ 0.066474] pci_bus 0000:00: root bus resource [io 0x1000-0xeffff] [ 0.066592] pci 0000:00:01.0: [11ab:6281] type 01 class 0x060400 [ 0.066630] pci 0000:00:01.0: reg 0x38: [mem 0x00000000-0x000007ff pref] [ 0.067944] PCI: bus0: Fast back to back transfers disabled [ 0.067962] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 0.069193] PCI: bus1: Fast back to back transfers enabled [ 0.069211] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 [ 0.069433] pci 0000:00:01.0: BAR 6: assigned [mem 0xe0000000-0xe00007ff pref] [ 0.069449] pci 0000:00:01.0: PCI bridge to [bus 01] [ 0.069933] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 0.070633] printk: console [ttyS0] disabled [ 0.070724] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 26, base_baud = 12500000) is a 16550A [ 0.544358] printk: console [ttyS0] enabled [ 0.549692] nand: device found, Manufacturer ID: 0xec, Chip ID: 0xda [ 0.556116] nand: Samsung NAND 256MiB 3,3V 8-bit [ 0.560754] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 [ 0.568385] Scanning device for bad blocks [ 0.579403] Bad eraseblock 64 at 0x000000800000 [ 0.584018] Bad eraseblock 65 at 0x000000820000 [ 0.594920] Bad eraseblock 125 at 0x000000fa0000 [ 0.719551] Bad eraseblock 1250 at 0x000009c40000 [ 0.809358] 3 cmdlinepart partitions found on MTD device orion_nand [ 0.815663] Creating 3 MTD partitions on "orion_nand": [ 0.820833] 0x000000000000-0x000000180000 : "uboot" [ 0.826494] 0x000000180000-0x0000001a0000 : "uboot_env" [ 0.832429] 0x000000200000-0x000010000000 : "ubi" [ 0.839194] libphy: Fixed MDIO Bus: probed [ 0.844195] libphy: orion_mdio_bus: probed [ 0.848333] [Firmware Warn]: /ocp@f1000000/mdio-bus@72004/ethernet-phy@0: Whitelisted compatible string. Please remove [ 0.865013] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4 [ 1.591920] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 52:3b:20:9c:11:51 [ 2.401321] random: fast init done [ 2.641332] rtc-mv f1010300.rtc: internal RTC not ticking [ 2.646863] i2c /dev entries driver [ 2.651695] watchdog: f1020300.watchdog-timer: driver supplied timeout (4294967295) out of range [ 2.660521] watchdog: f1020300.watchdog-timer: falling back to default timeout (21) [ 2.668421] orion_wdt: Initial timeout 21 sec [ 2.678358] marvell-cesa f1030000.crypto: CESA device successfully registered [ 2.686527] NET: Registered protocol family 10 [ 2.692932] Segment Routing with IPv6 [ 2.696698] NET: Registered protocol family 17 [ 2.701382] 8021q: 802.1Q VLAN Support v1.8 [ 2.709039] UBI: auto-attach mtd2 [ 2.712428] ubi0: attaching mtd2 [ 3.085802] ubi0: scanning is finished [ 3.103078] ubi0: attached mtd2 (name "ubi", size 254 MiB) [ 3.108591] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 129024 bytes [ 3.115532] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 512 [ 3.122285] ubi0: VID header offset: 512 (aligned 512), data offset: 2048 [ 3.129099] ubi0: good PEBs: 2028, bad PEBs: 4, corrupted PEBs: 0 [ 3.135236] ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 [ 3.142509] ubi0: max/mean erase counter: 32/4, WL threshold: 4096, image sequence number: 2037047813 [ 3.151785] ubi0: available PEBs: 0, total reserved PEBs: 2028, PEBs reserved for bad PEB handling: 36 [ 3.161964] block ubiblock0_1: created from ubi0:1(rootfs) [ 3.167476] ubiblock: device ubiblock0_1 (rootfs) set to be root filesystem [ 3.174502] hctosys: unable to open rtc device (rtc0) [ 3.179972] ubi0: background thread "ubi_bgt0d" started, PID 450 [ 3.191549] VFS: Mounted root (squashfs filesystem) readonly on device 254:0. [ 3.202247] Freeing unused kernel memory: 1024K [ 3.206940] Run /sbin/init as init process [ 3.570349] init: Console is alive [ 3.574019] init: - watchdog - [ 4.506342] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 4.585735] raid6: using algorithm int32x8 gen() 0 MB/s [ 4.591021] raid6: .... xor() 0 MB/s, rmw enabled [ 4.595770] raid6: using intx1 recovery algorithm [ 4.603008] xor: measuring software checksum speed [ 4.701329] arm4regs : 904.000 MB/sec [ 4.801328] 8regs : 670.800 MB/sec [ 4.901325] 32regs : 830.800 MB/sec [ 4.905529] xor: using function: arm4regs (904.000 MB/sec) [ 5.112573] Btrfs loaded, crc32c=crc32c-generic [ 5.240933] SGI XFS with security attributes, no debug enabled [ 5.256696] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 5.266168] ehci-fsl: Freescale EHCI Host controller driver [ 5.274296] ehci-orion: EHCI orion driver [ 5.278532] orion-ehci f1050000.ehci: EHCI Host Controller [ 5.284126] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1 [ 5.291998] orion-ehci f1050000.ehci: irq 30, io mem 0xf1050000 [ 5.321355] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00 [ 5.328050] hub 1-0:1.0: USB hub found [ 5.332145] hub 1-0:1.0: 1 port detected [ 5.339301] ehci-platform: EHCI generic platform driver [ 5.357219] sata_mv f1080000.sata: version 1.28 [ 5.357480] sata_mv f1080000.sata: slots 32 ports 2 [ 5.366224] scsi host0: sata_mv [ 5.370234] scsi host1: sata_mv [ 5.373644] ata1: SATA max UDMA/133 irq 33 [ 5.377777] ata2: SATA max UDMA/133 irq 33 [ 5.621342] usb 1-1: new high-speed USB device number 2 using orion-ehci [ 5.714147] ata1: SATA link down (SStatus 0 SControl F300) [ 6.042658] ata2: SATA link down (SStatus 0 SControl F300) [ 6.050771] usb-storage 1-1:1.0: USB Mass Storage device detected [ 6.058826] scsi host2: usb-storage 1-1:1.0 [ 6.063385] usbcore: registered new interface driver usb-storage [ 6.071641] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 6.081460] init: - preinit - [ 6.939902] random: jshn: uninitialized urandom read (4 bytes read) [ 7.036033] random: jshn: uninitialized urandom read (4 bytes read) [ 7.064329] random: jshn: uninitialized urandom read (4 bytes read) [ 7.123233] scsi 2:0:0:0: Direct-Access QUMO PMAP PQ: 0 ANSI: 6 [ 7.142802] sd 2:0:0:0: [sda] 30322688 512-byte logical blocks: (15.5 GB/14.5 GiB) [ 7.161408] sd 2:0:0:0: [sda] Write Protect is off [ 7.166256] sd 2:0:0:0: [sda] Mode Sense: 45 00 00 00 [ 7.167659] sd 2:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 7.794969] sda: sda1 [ 8.029943] sd 2:0:0:0: [sda] Attached SCSI removable disk [ 9.600829] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 100 Mb/s, full duplex, flow control disabled [ 9.610683] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 12.198222] mount_root: loading kmods from internal overlay [ 12.221064] kmodloader: loading kernel modules from //etc/modules-boot.d/* [ 12.229258] kmodloader: done loading kernel modules from //etc/modules-boot.d/* [ 12.243510] __nand_correct_data: uncorrectable ECC error [ 12.248872] blk_update_request: I/O error, dev mtdblock0, sector 0 op 0x0:(READ) flags 0x80700 phys_seg 3 prio class 0 [ 12.259789] __nand_correct_data: uncorrectable ECC error [ 12.265150] blk_update_request: I/O error, dev mtdblock0, sector 8 op 0x0:(READ) flags 0x80700 phys_seg 2 prio class 0 [ 12.276043] __nand_correct_data: uncorrectable ECC error [ 12.281398] blk_update_request: I/O error, dev mtdblock0, sector 16 op 0x0:(READ) flags 0x80700 phys_seg 1 prio class 0 [ 12.292374] __nand_correct_data: uncorrectable ECC error [ 12.297714] blk_update_request: I/O error, dev mtdblock0, sector 24 op 0x0:(READ) flags 0x80700 phys_seg 1 prio class 0 [ 12.308730] __nand_correct_data: uncorrectable ECC error [ 12.314091] blk_update_request: I/O error, dev mtdblock0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0 [ 12.324505] Buffer I/O error on dev mtdblock0, logical block 0, async page read [ 12.408261] __nand_correct_data: uncorrectable ECC error [ 12.413665] blk_update_request: I/O error, dev mtdblock0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0 [ 12.424080] Buffer I/O error on dev mtdblock0, logical block 0, async page read [ 12.605649] UBIFS (ubi0:2): Mounting in unauthenticated mode [ 12.637991] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" started, PID 645 [ 12.672229] UBIFS (ubi0:2): recovery needed [ 12.800197] UBIFS (ubi0:2): recovery completed [ 12.804783] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2, name "rootfs_data" [ 12.812674] UBIFS (ubi0:2): LEB size: 129024 bytes (126 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 12.822654] UBIFS (ubi0:2): FS size: 238178304 bytes (227 MiB, 1846 LEBs), journal size 11870208 bytes (11 MiB, 92 LEBs) [ 12.833584] UBIFS (ubi0:2): reserved for root: 4952683 bytes (4836 KiB) [ 12.840228] UBIFS (ubi0:2): media format: w5/r0 (latest is w5/r0), UUID 52FA14D8-39FB-4270-A1D2-42A53C027BCC, small LPT model [ 12.854076] block: attempting to load /tmp/ubifs_cfg/upper/etc/config/fstab [ 12.863710] block: extroot: not configured [ 12.867951] UBIFS (ubi0:2): un-mount UBI device 0 [ 12.872732] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" stops [ 12.883655] UBIFS (ubi0:2): Mounting in unauthenticated mode [ 12.916196] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" started, PID 647 [ 13.013916] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2, name "rootfs_data" [ 13.021814] UBIFS (ubi0:2): LEB size: 129024 bytes (126 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 13.031785] UBIFS (ubi0:2): FS size: 238178304 bytes (227 MiB, 1846 LEBs), journal size 11870208 bytes (11 MiB, 92 LEBs) [ 13.042715] UBIFS (ubi0:2): reserved for root: 4952683 bytes (4836 KiB) [ 13.049360] UBIFS (ubi0:2): media format: w5/r0 (latest is w5/r0), UUID 52FA14D8-39FB-4270-A1D2-42A53C027BCC, small LPT model [ 13.067533] __nand_correct_data: uncorrectable ECC error [ 13.072942] blk_update_request: I/O error, dev mtdblock0, sector 0 op 0x0:(READ) flags 0x80700 phys_seg 3 prio class 0 [ 13.083842] __nand_correct_data: uncorrectable ECC error [ 13.089184] blk_update_request: I/O error, dev mtdblock0, sector 8 op 0x0:(READ) flags 0x80700 phys_seg 3 prio class 0 [ 13.100076] __nand_correct_data: uncorrectable ECC error [ 13.105428] blk_update_request: I/O error, dev mtdblock0, sector 16 op 0x0:(READ) flags 0x80700 phys_seg 2 prio class 0 [ 13.116406] __nand_correct_data: uncorrectable ECC error [ 13.121760] blk_update_request: I/O error, dev mtdblock0, sector 24 op 0x0:(READ) flags 0x80700 phys_seg 1 prio class 0 [ 13.132779] __nand_correct_data: uncorrectable ECC error [ 13.138122] Buffer I/O error on dev mtdblock0, logical block 0, async page read [ 13.149736] __nand_correct_data: uncorrectable ECC error [ 13.155125] Buffer I/O error on dev mtdblock0, logical block 0, async page read [ 13.333142] block: attempting to load /tmp/ubifs_cfg/upper/etc/config/fstab [ 13.342503] block: extroot: not configured [ 13.348065] mount_root: switching to ubifs overlay [ 13.361255] urandom-seed: Seeding with /etc/urandom.seed [ 13.953261] __nand_correct_data: uncorrectable ECC error [ 13.958776] __nand_correct_data: uncorrectable ECC error [ 13.964142] Buffer I/O error on dev mtdblock0, logical block 0, async page read [ 14.158933] procd: - early - [ 14.162554] procd: - watchdog - [ 14.796671] procd: - watchdog - [ 14.801539] procd: - ubus - [ 14.862649] procd: - init - [ 15.697620] kmodloader: loading kernel modules from /etc/modules.d/* [ 15.889173] rtc-pcf8563 0-0051: registered as rtc0 [ 15.910743] xt_time: kernel timezone is -0000 [ 16.015019] lm75 0-0048: hwmon0: sensor 'lm75' [ 16.024999] urngd: v1.0.2 started. [ 16.071205] kmodloader: done loading kernel modules from /etc/modules.d/* [ 16.175063] random: crng init done [ 16.178492] random: 7 urandom warning(s) missed due to ratelimiting [ 18.936898] __nand_correct_data: uncorrectable ECC error [ 18.942280] print_req_error: 4 callbacks suppressed [ 18.942290] blk_update_request: I/O error, dev mtdblock0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0 [ 19.008057] __nand_correct_data: uncorrectable ECC error [ 19.013458] blk_update_request: I/O error, dev mtdblock0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0 [ 19.024344] __nand_correct_data: uncorrectable ECC error [ 19.029687] blk_update_request: I/O error, dev mtdblock0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0 [ 20.907682] __nand_correct_data: uncorrectable ECC error [ 20.913087] blk_update_request: I/O error, dev mtdblock0, sector 0 op 0x0:(READ) flags 0x80700 phys_seg 4 prio class 0 [ 20.923999] __nand_correct_data: uncorrectable ECC error [ 20.929337] blk_update_request: I/O error, dev mtdblock0, sector 8 op 0x0:(READ) flags 0x80700 phys_seg 3 prio class 0 [ 20.940232] __nand_correct_data: uncorrectable ECC error [ 20.945590] blk_update_request: I/O error, dev mtdblock0, sector 16 op 0x0:(READ) flags 0x80700 phys_seg 2 prio class 0 [ 20.956570] __nand_correct_data: uncorrectable ECC error [ 20.961943] blk_update_request: I/O error, dev mtdblock0, sector 24 op 0x0:(READ) flags 0x80700 phys_seg 1 prio class 0 [ 20.972970] __nand_correct_data: uncorrectable ECC error [ 20.978308] blk_update_request: I/O error, dev mtdblock0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0 [ 20.988725] Buffer I/O error on dev mtdblock0, logical block 0, async page read [ 21.145709] __nand_correct_data: uncorrectable ECC error [ 21.151065] blk_update_request: I/O error, dev mtdblock0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0 [ 21.161518] Buffer I/O error on dev mtdblock0, logical block 0, async page read [ 21.942372] br-lan: port 1(eth0) entered blocking state [ 21.947630] br-lan: port 1(eth0) entered disabled state [ 21.953179] device eth0 entered promiscuous mode [ 23.601045] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 100 Mb/s, full duplex, flow control disabled [ 23.611239] br-lan: port 1(eth0) entered blocking state [ 23.616526] br-lan: port 1(eth0) entered forwarding state [ 23.631433] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready root@StoraWrt:/#
root@StoraWrt:/# cat /proc/mtd dev: size erasesize name mtd0: 00180000 00020000 "uboot" mtd1: 00020000 00020000 "uboot_env" mtd2: 0fe00000 00020000 "ubi" root@StoraWrt:/#
root@StoraWrt:/# cat /etc/fw_env.config cat: can't open '/etc/fw_env.config': No such file or directory
root@StoraWrt:/# fw_printenv Cannot parse config file '/etc/fw_env.config': No such file or directory root@StoraWrt:/#
Re: Change openWRT to debian on STORA November 12, 2022 02:57PM |
Admin Registered: 12 years ago Posts: 18,137 |
dmesg cat /proc/mtd apt-get install libubootenv-tool # if you have not done this after first boot echo "/dev/mtd1 0x0000 0x20000 0x20000" > /etc/fw_env.config fw_printenv
Re: Change openWRT to debian on STORA November 12, 2022 03:06PM |
Registered: 1 year ago Posts: 19 |
root@debian:~# dmesg [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 5.13.6-kirkwood-tld-1 (root@tldDebian) (gcc (Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #1.0 PREEMPT Sat Jul 31 22:10:39 PDT 2021 [ 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: NETGEAR MS2000 / MS2110 aka Stora [ 0.000000] printk: bootconsole [earlycon0] enabled [ 0.000000] Memory policy: Data cache writeback [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000] On node 0 totalpages: 32768 [ 0.000000] Normal zone: 256 pages used for memmap [ 0.000000] Normal zone: 0 pages reserved [ 0.000000] Normal zone: 32768 pages, LIFO batch:7 [ 0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768 [ 0.000000] pcpu-alloc: [0] 0 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 32512 [ 0.000000] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 earlyprintk=serial [ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear) [ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off [ 0.000000] Memory: 101104K/131072K available (11264K kernel code, 1553K rwdata, 4272K rodata, 1024K init, 309K bss, 29968K reserved, 0K cma-reserved) [ 0.000000] random: get_random_u32 called from ____cache_alloc+0x408/0x7b4 with crng_init=0 [ 0.000000] trace event string verifier disabled [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] Trampoline variant of Tasks RCU enabled. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns [ 0.000003] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns [ 0.008624] Switching to timer-based delay loop, resolution 5ns [ 0.016327] Console: colour dummy device 80x30 [ 0.021632] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=2000000) [ 0.032989] pid_max: default: 32768 minimum: 301 [ 0.038901] LSM: Security Framework initializing [ 0.044458] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.052602] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.062912] CPU: Testing write buffer coherency: ok [ 0.071589] Setting up static identity map for 0x100000 - 0x100058 [ 0.078974] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3 [ 0.085243] rcu: Hierarchical SRCU implementation. [ 0.092569] devtmpfs: initialized [ 0.104306] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.115054] futex hash table entries: 256 (order: -1, 3072 bytes, linear) [ 0.167582] prandom32: self test passed (less than 6 bits correlated) [ 0.174835] prandom: seed boundary self test passed [ 0.185527] prandom: 100 self tests passed [ 0.190407] pinctrl core: initialized pinctrl subsystem [ 0.198377] NET: Registered protocol family 16 [ 0.204629] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.213491] audit: initializing netlink subsys (disabled) [ 0.221460] thermal_sys: Registered thermal governor 'step_wise' [ 0.221936] audit: type=2000 audit(0.210:1): state=initialized audit_enabled=0 res=1 [ 0.237390] cpuidle: using governor ladder [ 0.242396] cpuidle: using governor menu [ 0.247668] Feroceon L2: Enabling L2 [ 0.252095] Feroceon L2: Cache support initialised. [ 0.270093] No ATAGs? [ 2.568631] random: fast init done [ 6.143509] "cryptomgr_test" (39) uses obsolete ecb(arc4) skcipher [ 6.182812] wait_for_initramfs() called before rootfs_initcalls [ 6.388739] raid6: int32x8 gen() 90 MB/s [ 6.558784] raid6: int32x8 xor() 57 MB/s [ 6.728723] raid6: int32x4 gen() 90 MB/s [ 6.898783] raid6: int32x4 xor() 59 MB/s [ 7.068713] raid6: int32x2 gen() 114 MB/s [ 7.238764] raid6: int32x2 xor() 70 MB/s [ 7.408892] raid6: int32x1 gen() 82 MB/s [ 7.578900] raid6: int32x1 xor() 49 MB/s [ 7.583895] raid6: using algorithm int32x2 gen() 114 MB/s [ 7.590046] raid6: .... xor() 70 MB/s, rmw enabled [ 7.595562] raid6: using intx1 recovery algorithm [ 7.601324] vgaarb: loaded [ 7.605436] SCSI subsystem initialized [ 7.610269] libata version 3.00 loaded. [ 7.610640] usbcore: registered new interface driver usbfs [ 7.616925] usbcore: registered new interface driver hub [ 7.623094] usbcore: registered new device driver usb [ 7.629163] pps_core: LinuxPPS API ver. 1 registered [ 7.634855] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 7.644787] PTP clock support registered [ 7.651751] clocksource: Switched to clocksource orion_clocksource [ 7.782605] VFS: Disk quotas dquot_6.6.0 [ 7.787372] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 7.833599] NET: Registered protocol family 2 [ 7.838882] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 7.862926] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) [ 7.881818] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 7.890248] TCP bind hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 7.911812] TCP: Hash tables configured (established 1024 bind 1024) [ 7.919221] MPTCP token hash table entries: 512 (order: 0, 6144 bytes, linear) [ 7.941863] UDP hash table entries: 256 (order: 0, 4096 bytes, linear) [ 7.949165] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear) [ 7.972076] NET: Registered protocol family 1 [ 7.982514] RPC: Registered named UNIX socket transport module. [ 7.989175] RPC: Registered udp transport module. [ 8.011781] RPC: Registered tcp transport module. [ 8.017218] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 8.031780] PCI: CLS 0 bytes, default 32 [ 8.042245] Trying to unpack rootfs image as initramfs... [ 8.051857] NetWinder Floating Point Emulator V0.97 (double precision) [ 10.177867] Freeing initrd memory: 9448K [ 10.801139] Initialise system trusted keyrings [ 10.806459] Key type blacklist registered [ 10.811485] workingset: timestamp_bits=30 max_order=15 bucket_order=0 [ 10.818905] zbud: loaded [ 10.824040] NFS: Registering the id_resolver key type [ 10.829856] Key type id_resolver registered [ 10.834859] Key type id_legacy registered [ 10.839642] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 10.847126] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... [ 10.855289] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 10.862749] jffs2: version 2.2. (NAND) (SUMMARY) \xc2\xa9 2001-2006 Red Hat, Inc. [ 10.871177] fuse: init (API version 7.34) [ 10.876460] orangefs_debugfs_init: called with debug mask: :none: :0: [ 10.883921] orangefs_init: module version upstream loaded [ 10.890058] SGI XFS with ACLs, security attributes, realtime, scrub, quota, no debug enabled [ 11.019299] xor: measuring software checksum speed [ 11.035618] arm4regs : 927 MB/sec [ 11.058470] 8regs : 556 MB/sec [ 11.075812] 32regs : 809 MB/sec [ 11.080903] xor: using function: arm4regs (927 MB/sec) [ 11.086836] async_tx: api initialized (async) [ 11.091979] Key type asymmetric registered [ 11.096801] Asymmetric key parser 'x509' registered [ 11.102507] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) [ 11.110726] io scheduler bfq registered [ 11.354947] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver [ 11.365463] mvebu-pcie mbus@f1000000:pcie@82000000: host bridge /mbus@f1000000/pcie@82000000 ranges: [ 11.375445] mvebu-pcie mbus@f1000000:pcie@82000000: Parsing ranges property... [ 11.375496] mvebu-pcie mbus@f1000000:pcie@82000000: MEM 0x00f1040000..0x00f1041fff -> 0x0000040000 [ 11.385710] mvebu-pcie mbus@f1000000:pcie@82000000: MEM 0xffffffffffffffff..0x00fffffffe -> 0x0100000000 [ 11.396424] mvebu-pcie mbus@f1000000:pcie@82000000: IO 0xffffffffffffffff..0x00fffffffe -> 0x0100000000 [ 11.407500] mvebu-pcie mbus@f1000000:pcie@82000000: PCI host bridge to bus 0000:00 [ 11.415853] pci_bus 0000:00: root bus resource [bus 00-ff] [ 11.422105] pci_bus 0000:00: root bus resource [mem 0xf1040000-0xf1041fff] (bus address [0x00040000-0x00041fff]) [ 11.433060] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff] [ 11.440684] pci_bus 0000:00: root bus resource [io 0x1000-0xeffff] [ 11.447720] pci_bus 0000:00: scanning bus [ 11.447863] pci 0000:00:01.0: [11ab:6281] type 01 class 0x060400 [ 11.454660] pci 0000:00:01.0: reg 0x38: [mem 0x00000000-0x000007ff pref] [ 11.463704] pci_bus 0000:00: fixups for bus [ 11.463730] PCI: bus0: Fast back to back transfers disabled [ 11.470038] pci 0000:00:01.0: scanning [bus 00-00] behind bridge, pass 0 [ 11.470057] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 11.478853] pci 0000:00:01.0: scanning [bus 00-00] behind bridge, pass 1 [ 11.479044] pci_bus 0000:01: scanning bus [ 11.480284] pci_bus 0000:01: fixups for bus [ 11.480297] PCI: bus1: Fast back to back transfers enabled [ 11.486550] pci_bus 0000:01: bus scan returning with max=01 [ 11.486570] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 [ 11.493960] pci_bus 0000:00: bus scan returning with max=01 [ 11.494195] pci 0000:00:01.0: BAR 6: assigned [mem 0xe0000000-0xe00007ff pref] [ 11.502207] pci 0000:00:01.0: PCI bridge to [bus 01] [ 11.508013] pcieport 0000:00:01.0: assign IRQ: got 0 [ 11.508053] pcieport 0000:00:01.0: enabling bus mastering [ 11.508701] mv_xor f1060800.xor: Marvell shared XOR driver [ 11.573118] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy intr ) [ 11.584372] mv_xor f1060900.xor: Marvell shared XOR driver [ 11.653106] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy intr ) [ 11.664744] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 11.673646] printk: console [ttyS0] disabled [ 11.678745] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 26, base_baud = 12500000) is a 16550A [ 11.688632] printk: console [ttyS0] enabled [ 11.698508] printk: bootconsole [earlycon0] disabled [ 11.720922] loop: module loaded [ 11.725252] sata_mv f1080000.sata: version 1.28 [ 11.725879] sata_mv f1080000.sata: slots 32 ports 2 [ 11.736306] scsi host0: sata_mv [ 11.741006] scsi host1: sata_mv [ 11.745298] ata1: SATA max UDMA/133 irq 33 [ 11.750131] ata2: SATA max UDMA/133 irq 33 [ 11.756257] nand: device found, Manufacturer ID: 0xec, Chip ID: 0xda [ 11.763403] nand: Samsung NAND 256MiB 3,3V 8-bit [ 11.768746] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 [ 11.777437] Scanning device for bad blocks [ 11.790061] Bad eraseblock 64 at 0x000000800000 [ 11.795414] Bad eraseblock 65 at 0x000000820000 [ 11.807863] Bad eraseblock 125 at 0x000000fa0000 [ 11.948502] Bad eraseblock 1250 at 0x000009c40000 [ 12.050221] 3 fixed-partitions partitions found on MTD device orion_nand [ 12.057717] Creating 3 MTD partitions on "orion_nand": [ 12.063641] 0x000000000000-0x000000100000 : "u-boot" [ 12.071352] 0x000000100000-0x000000700000 : "uImage" [ 12.079008] 0x000000700000-0x000010000000 : "root" [ 12.084624] ata1: SATA link down (SStatus 0 SControl F300) [ 12.094921] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information. [ 12.103614] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. [ 12.115704] libphy: Fixed MDIO Bus: probed [ 12.122469] libphy: orion_mdio_bus: probed [ 12.127316] [Firmware Warn]: /ocp@f1000000/mdio-bus@72004/ethernet-phy@8: Whitelisted compatible string. Please remove [ 12.159285] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4 [ 12.443491] ata2: SATA link down (SStatus 0 SControl F300) [ 12.922985] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 52:3b:20:9c:11:51 [ 12.932685] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 12.939992] ehci-pci: EHCI PCI platform driver [ 12.945269] ehci-orion: EHCI orion driver [ 12.950263] orion-ehci f1050000.ehci: EHCI Host Controller [ 12.956565] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1 [ 12.965218] orion-ehci f1050000.ehci: irq 30, io mem 0xf1050000 [ 13.001799] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00 [ 13.008919] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.13 [ 13.017977] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 13.025969] usb usb1: Product: EHCI Host Controller [ 13.031578] usb usb1: Manufacturer: Linux 5.13.6-kirkwood-tld-1 ehci_hcd [ 13.039040] usb usb1: SerialNumber: f1050000.ehci [ 13.045387] hub 1-0:1.0: USB hub found [ 13.049936] hub 1-0:1.0: 1 port detected [ 13.055627] usbcore: registered new interface driver usb-storage [ 13.062966] mousedev: PS/2 mouse device common for all mice [ 13.341793] usb 1-1: new high-speed USB device number 2 using orion-ehci [ 13.545352] usb 1-1: New USB device found, idVendor=13fe, idProduct=4300, bcdDevice= 1.10 [ 13.554325] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 13.562253] usb 1-1: Product: QUMO [ 13.566385] usb 1-1: Manufacturer: [ 13.571293] usb 1-1: SerialNumber: 0721214E1D1A0741 [ 13.577875] usb-storage 1-1:1.0: USB Mass Storage device detected [ 13.585509] scsi host2: usb-storage 1-1:1.0 [ 14.091802] rtc-mv f1010300.rtc: internal RTC not ticking [ 14.098164] i2c /dev entries driver [ 14.103557] i2c i2c-0: Not using recovery: no suitable method provided [ 14.110189] rtc-pcf8563 0-0051: registered as rtc0 [ 14.117034] rtc-pcf8563 0-0051: setting system clock to 2022-11-12T20:59:44 UTC (1668286784) [ 14.128355] device-mapper: uevent: version 1.0.3 [ 14.134150] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com [ 14.143928] device-mapper: multipath round-robin: version 1.2.0 loaded [ 14.151201] device-mapper: multipath queue-length: version 0.2.0 loaded [ 14.158635] device-mapper: multipath service-time: version 0.3.0 loaded [ 14.166103] device-mapper: dm-log-userspace: version 1.3.0 loaded [ 14.172968] device-mapper: raid: Loading target version 1.15.1 [ 14.182405] hid: raw HID events driver (C) Jiri Kosina [ 14.188678] drop_monitor: Initializing network drop monitor service [ 14.196324] NET: Registered protocol family 10 [ 14.203327] Segment Routing with IPv6 [ 14.207724] RPL Segment Routing with IPv6 [ 14.212710] NET: Registered protocol family 17 [ 14.218181] Key type dns_resolver registered [ 14.223949] registered taskstats version 1 [ 14.228789] Loading compiled-in X.509 certificates [ 14.234933] zswap: loaded using pool lzo/zbud [ 14.240448] Key type ._fscrypt registered [ 14.245297] Key type .fscrypt registered [ 14.249945] Key type fscrypt-provisioning registered [ 14.258373] Key type big_key registered [ 14.300401] Key type encrypted registered [ 14.314061] Freeing unused kernel memory: 1024K [ 14.332804] Checked W+X mappings: passed, no W+X pages found [ 14.339217] Run /init as init process [ 14.343653] with arguments: [ 14.343667] /init [ 14.343678] with environment: [ 14.343687] HOME=/ [ 14.343696] TERM=linux [ 14.653870] scsi 2:0:0:0: Direct-Access QUMO PMAP PQ: 0 ANSI: 6 [ 14.680815] sd 2:0:0:0: [sda] 30322688 512-byte logical blocks: (15.5 GB/14.5 GiB) [ 14.713319] sd 2:0:0:0: [sda] Write Protect is off [ 14.718872] sd 2:0:0:0: [sda] Mode Sense: 45 00 00 00 [ 14.734664] sd 2:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 14.852992] sda: sda1 [ 14.863934] sd 2:0:0:0: [sda] Attached SCSI removable disk [ 15.449673] input: gpio-keys as /devices/platform/gpio-keys/input/input0 [ 16.013206] usbcore: registered new interface driver uas [ 28.236431] EXT4-fs (sda1): mounting ext3 file system using the ext4 subsystem [ 28.333143] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. [ 32.500188] lm75 0-0048: supply vs not found, using dummy regulator [ 32.561090] orion_wdt: Initial timeout 21 sec [ 32.590873] lm75 0-0048: hwmon0: sensor 'lm75' [ 32.629549] random: crng init done [ 33.162115] sd 2:0:0:0: Attached scsi generic sg0 type 0 [ 33.232575] marvell-cesa f1030000.crypto: CESA device successfully registered [ 34.539891] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro. Quota mode: none. [ 36.841789] Adding 524284k swap on /swapfile. Priority:-2 extents:11 across:8712784k FS [ 40.655583] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 100 Mb/s, full duplex, flow control disabled [ 40.666178] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready root@debian:~#
root@debian:~# cat /proc/mtd dev: size erasesize name mtd0: 00100000 00020000 "u-boot" mtd1: 00600000 00020000 "uImage" mtd2: 0f900000 00020000 "root"
root@debian:~# echo "/dev/mtd1 0x0000 0x20000 0x20000" > /etc/fw_env.config root@debian:~# fw_printenv Cannot read environment, using default Cannot read default environment from file root@debian:~#
Re: Change openWRT to debian on STORA November 12, 2022 03:13PM |
Admin Registered: 12 years ago Posts: 18,137 |
setenv usb_set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 ${mtdparts} earlyprintk=serial'
Re: Change openWRT to debian on STORA November 12, 2022 03:22PM |
Registered: 1 year ago Posts: 19 |
Hit any key to stop autoboot: Netgear Stora> setenv usb_set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 ${mtdparts} earlyprintk=serial' Netgear Stora> setenv load_uimage 'ext2load usb 0:1 0x800000 /boot/uImage' Netgear Stora> setenv load_uinitrd 'ext2load usb 0:1 0x2100000 /boot/uInitrd' Netgear Stora> setenv usb_boot 'mw 0x800000 0 1; run load_uimage; run load_uinitrd; bootm 0x800000 0x2100000' Netgear Stora> setenv usb_bootcmd 'run usb_set_bootargs; run usb_boot' Netgear Stora> setenv bootcmd_debian 'usb reset; run usb_bootcmd; usb stop' Netgear Stora> setenv bootcmd_owrt 'setenv bootargs ${console} ${mtdparts} ${bootargs_root}; ubi part ubi; ubifsmount ubi:rootfs; ubi read 0x800000 kernel; bootm 0x800000' Netgear Stora> setenv bootcmd 'run bootcmd_debian; run bootcmd_owrt; reset' Netgear Stora> saveenv Netgear Stora> boot resetting 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 5447395 bytes read in 220 ms (23.6 MiB/s) 9671459 bytes read in 580 ms (15.9 MiB/s) ## Booting kernel from Legacy Image at 00800000 ... Image Name: Linux-5.13.6-kirkwood-tld-1
root@debian:~# dmesg [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 5.13.6-kirkwood-tld-1 (root@tldDebian) (gcc (Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #1.0 PREEMPT Sat Jul 31 22:10:39 PDT 2021 [ 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: NETGEAR MS2000 / MS2110 aka Stora [ 0.000000] printk: bootconsole [earlycon0] enabled [ 0.000000] Memory policy: Data cache writeback [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000] On node 0 totalpages: 32768 [ 0.000000] Normal zone: 256 pages used for memmap [ 0.000000] Normal zone: 0 pages reserved [ 0.000000] Normal zone: 32768 pages, LIFO batch:7 [ 0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768 [ 0.000000] pcpu-alloc: [0] 0 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 32512 [ 0.000000] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=orion_nand:0x180000@0x0(uboot),0x20000@0x180000(uboot_env),-@0x200000(ubi) earlyprintk=serial [ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear) [ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off [ 0.000000] Memory: 101104K/131072K available (11264K kernel code, 1553K rwdata, 4272K rodata, 1024K init, 309K bss, 29968K reserved, 0K cma-reserved) [ 0.000000] random: get_random_u32 called from ____cache_alloc+0x408/0x7b4 with crng_init=0 [ 0.000000] trace event string verifier disabled [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] Trampoline variant of Tasks RCU enabled. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns [ 0.000003] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns [ 0.008623] Switching to timer-based delay loop, resolution 5ns [ 0.016326] Console: colour dummy device 80x30 [ 0.021630] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=2000000) [ 0.032988] pid_max: default: 32768 minimum: 301 [ 0.038900] LSM: Security Framework initializing [ 0.044444] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.052586] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.062907] CPU: Testing write buffer coherency: ok [ 0.071591] Setting up static identity map for 0x100000 - 0x100058 [ 0.078971] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3 [ 0.085229] rcu: Hierarchical SRCU implementation. [ 0.092572] devtmpfs: initialized [ 0.104416] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.115158] futex hash table entries: 256 (order: -1, 3072 bytes, linear) [ 0.167683] prandom32: self test passed (less than 6 bits correlated) [ 0.174940] prandom: seed boundary self test passed [ 0.185632] prandom: 100 self tests passed [ 0.190514] pinctrl core: initialized pinctrl subsystem [ 0.198481] NET: Registered protocol family 16 [ 0.204774] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.213656] audit: initializing netlink subsys (disabled) [ 0.221630] thermal_sys: Registered thermal governor 'step_wise' [ 0.222095] audit: type=2000 audit(0.210:1): state=initialized audit_enabled=0 res=1 [ 0.237545] cpuidle: using governor ladder [ 0.242555] cpuidle: using governor menu [ 0.247865] Feroceon L2: Enabling L2 [ 0.252287] Feroceon L2: Cache support initialised. [ 0.270275] No ATAGs? [ 2.568631] random: fast init done [ 6.143606] "cryptomgr_test" (39) uses obsolete ecb(arc4) skcipher [ 6.182883] wait_for_initramfs() called before rootfs_initcalls [ 6.388778] raid6: int32x8 gen() 90 MB/s [ 6.558822] raid6: int32x8 xor() 57 MB/s [ 6.728735] raid6: int32x4 gen() 90 MB/s [ 6.898667] raid6: int32x4 xor() 59 MB/s [ 7.068713] raid6: int32x2 gen() 118 MB/s [ 7.238653] raid6: int32x2 xor() 71 MB/s [ 7.408805] raid6: int32x1 gen() 83 MB/s [ 7.578835] raid6: int32x1 xor() 49 MB/s [ 7.583833] raid6: using algorithm int32x2 gen() 118 MB/s [ 7.589985] raid6: .... xor() 71 MB/s, rmw enabled [ 7.595501] raid6: using intx1 recovery algorithm [ 7.601260] vgaarb: loaded [ 7.605375] SCSI subsystem initialized [ 7.610196] libata version 3.00 loaded. [ 7.610565] usbcore: registered new interface driver usbfs [ 7.616854] usbcore: registered new interface driver hub [ 7.623023] usbcore: registered new device driver usb [ 7.629094] pps_core: LinuxPPS API ver. 1 registered [ 7.634793] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 7.644727] PTP clock support registered [ 7.651729] clocksource: Switched to clocksource orion_clocksource [ 7.782584] VFS: Disk quotas dquot_6.6.0 [ 7.787354] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 7.834055] NET: Registered protocol family 2 [ 7.839333] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 7.862901] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) [ 7.881799] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 7.890222] TCP bind hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 7.911792] TCP: Hash tables configured (established 1024 bind 1024) [ 7.919203] MPTCP token hash table entries: 512 (order: 0, 6144 bytes, linear) [ 7.941841] UDP hash table entries: 256 (order: 0, 4096 bytes, linear) [ 7.949139] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear) [ 7.972054] NET: Registered protocol family 1 [ 7.982485] RPC: Registered named UNIX socket transport module. [ 7.989148] RPC: Registered udp transport module. [ 8.011761] RPC: Registered tcp transport module. [ 8.017201] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 8.031759] PCI: CLS 0 bytes, default 32 [ 8.042227] Trying to unpack rootfs image as initramfs... [ 8.051837] NetWinder Floating Point Emulator V0.97 (double precision) [ 10.169920] Freeing initrd memory: 9448K [ 10.801846] Initialise system trusted keyrings [ 10.807093] Key type blacklist registered [ 10.812216] workingset: timestamp_bits=30 max_order=15 bucket_order=0 [ 10.819530] zbud: loaded [ 10.824687] NFS: Registering the id_resolver key type [ 10.830508] Key type id_resolver registered [ 10.835512] Key type id_legacy registered [ 10.840298] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 10.847779] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... [ 10.855943] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 10.863408] jffs2: version 2.2. (NAND) (SUMMARY) \xc2\xa9 2001-2006 Red Hat, Inc. [ 10.871878] fuse: init (API version 7.34) [ 10.877119] orangefs_debugfs_init: called with debug mask: :none: :0: [ 10.884575] orangefs_init: module version upstream loaded [ 10.890711] SGI XFS with ACLs, security attributes, realtime, scrub, quota, no debug enabled [ 11.022340] xor: measuring software checksum speed [ 11.038574] arm4regs : 927 MB/sec [ 11.061475] 8regs : 556 MB/sec [ 11.078800] 32regs : 809 MB/sec [ 11.083936] xor: using function: arm4regs (927 MB/sec) [ 11.089813] async_tx: api initialized (async) [ 11.094957] Key type asymmetric registered [ 11.099782] Asymmetric key parser 'x509' registered [ 11.105503] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) [ 11.113769] io scheduler bfq registered [ 11.357948] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver [ 11.368463] mvebu-pcie mbus@f1000000:pcie@82000000: host bridge /mbus@f1000000/pcie@82000000 ranges: [ 11.378442] mvebu-pcie mbus@f1000000:pcie@82000000: Parsing ranges property... [ 11.378492] mvebu-pcie mbus@f1000000:pcie@82000000: MEM 0x00f1040000..0x00f1041fff -> 0x0000040000 [ 11.388700] mvebu-pcie mbus@f1000000:pcie@82000000: MEM 0xffffffffffffffff..0x00fffffffe -> 0x0100000000 [ 11.399415] mvebu-pcie mbus@f1000000:pcie@82000000: IO 0xffffffffffffffff..0x00fffffffe -> 0x0100000000 [ 11.410492] mvebu-pcie mbus@f1000000:pcie@82000000: PCI host bridge to bus 0000:00 [ 11.418853] pci_bus 0000:00: root bus resource [bus 00-ff] [ 11.425113] pci_bus 0000:00: root bus resource [mem 0xf1040000-0xf1041fff] (bus address [0x00040000-0x00041fff]) [ 11.436077] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff] [ 11.443724] pci_bus 0000:00: root bus resource [io 0x1000-0xeffff] [ 11.450739] pci_bus 0000:00: scanning bus [ 11.450881] pci 0000:00:01.0: [11ab:6281] type 01 class 0x060400 [ 11.457687] pci 0000:00:01.0: reg 0x38: [mem 0x00000000-0x000007ff pref] [ 11.466728] pci_bus 0000:00: fixups for bus [ 11.466754] PCI: bus0: Fast back to back transfers disabled [ 11.473101] pci 0000:00:01.0: scanning [bus 00-00] behind bridge, pass 0 [ 11.473122] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 11.481910] pci 0000:00:01.0: scanning [bus 00-00] behind bridge, pass 1 [ 11.482099] pci_bus 0000:01: scanning bus [ 11.483341] pci_bus 0000:01: fixups for bus [ 11.483354] PCI: bus1: Fast back to back transfers enabled [ 11.489577] pci_bus 0000:01: bus scan returning with max=01 [ 11.489594] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 [ 11.496995] pci_bus 0000:00: bus scan returning with max=01 [ 11.497230] pci 0000:00:01.0: BAR 6: assigned [mem 0xe0000000-0xe00007ff pref] [ 11.505242] pci 0000:00:01.0: PCI bridge to [bus 01] [ 11.511049] pcieport 0000:00:01.0: assign IRQ: got 0 [ 11.511087] pcieport 0000:00:01.0: enabling bus mastering [ 11.511774] mv_xor f1060800.xor: Marvell shared XOR driver [ 11.583094] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy intr ) [ 11.594352] mv_xor f1060900.xor: Marvell shared XOR driver [ 11.663111] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy intr ) [ 11.674691] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 11.683591] printk: console [ttyS0] disabled [ 11.688691] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 26, base_baud = 12500000) is a 16550A [ 11.698571] printk: console [ttyS0] enabled [ 11.708440] printk: bootconsole [earlycon0] disabled [ 11.730872] loop: module loaded [ 11.735208] sata_mv f1080000.sata: version 1.28 [ 11.735830] sata_mv f1080000.sata: slots 32 ports 2 [ 11.746246] scsi host0: sata_mv [ 11.750973] scsi host1: sata_mv [ 11.755266] ata1: SATA max UDMA/133 irq 33 [ 11.760098] ata2: SATA max UDMA/133 irq 33 [ 11.766212] nand: device found, Manufacturer ID: 0xec, Chip ID: 0xda [ 11.773353] nand: Samsung NAND 256MiB 3,3V 8-bit [ 11.778695] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 [ 11.787385] Scanning device for bad blocks [ 11.800009] Bad eraseblock 64 at 0x000000800000 [ 11.805363] Bad eraseblock 65 at 0x000000820000 [ 11.817774] Bad eraseblock 125 at 0x000000fa0000 [ 11.958465] Bad eraseblock 1250 at 0x000009c40000 [ 12.060185] 3 cmdlinepart partitions found on MTD device orion_nand [ 12.067246] Creating 3 MTD partitions on "orion_nand": [ 12.073171] 0x000000000000-0x000000180000 : "uboot" [ 12.080733] 0x000000180000-0x0000001a0000 : "uboot_env" [ 12.088552] 0x000000200000-0x000010000000 : "ubi" [ 12.094092] ata1: SATA link down (SStatus 0 SControl F300) [ 12.104341] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information. [ 12.113029] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. [ 12.125138] libphy: Fixed MDIO Bus: probed [ 12.131931] libphy: orion_mdio_bus: probed [ 12.136779] [Firmware Warn]: /ocp@f1000000/mdio-bus@72004/ethernet-phy@8: Whitelisted compatible string. Please remove [ 12.168600] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4 [ 12.453473] ata2: SATA link down (SStatus 0 SControl F300) [ 12.932952] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 52:3b:20:9c:11:51 [ 12.942651] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 12.949959] ehci-pci: EHCI PCI platform driver [ 12.955235] ehci-orion: EHCI orion driver [ 12.960219] orion-ehci f1050000.ehci: EHCI Host Controller [ 12.966522] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1 [ 12.975174] orion-ehci f1050000.ehci: irq 30, io mem 0xf1050000 [ 13.011780] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00 [ 13.018903] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.13 [ 13.027958] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 13.035953] usb usb1: Product: EHCI Host Controller [ 13.041563] usb usb1: Manufacturer: Linux 5.13.6-kirkwood-tld-1 ehci_hcd [ 13.049023] usb usb1: SerialNumber: f1050000.ehci [ 13.055371] hub 1-0:1.0: USB hub found [ 13.059922] hub 1-0:1.0: 1 port detected [ 13.065613] usbcore: registered new interface driver usb-storage [ 13.072954] mousedev: PS/2 mouse device common for all mice [ 13.351773] usb 1-1: new high-speed USB device number 2 using orion-ehci [ 13.555433] usb 1-1: New USB device found, idVendor=13fe, idProduct=4300, bcdDevice= 1.10 [ 13.564406] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 13.572332] usb 1-1: Product: QUMO [ 13.576457] usb 1-1: Manufacturer: [ 13.581365] usb 1-1: SerialNumber: 0721214E1D1A0741 [ 13.587963] usb-storage 1-1:1.0: USB Mass Storage device detected [ 13.595588] scsi host2: usb-storage 1-1:1.0 [ 14.091781] rtc-mv f1010300.rtc: internal RTC not ticking [ 14.098139] i2c /dev entries driver [ 14.103536] i2c i2c-0: Not using recovery: no suitable method provided [ 14.110169] rtc-pcf8563 0-0051: registered as rtc0 [ 14.117017] rtc-pcf8563 0-0051: setting system clock to 2022-11-12T21:17:06 UTC (1668287826) [ 14.128321] device-mapper: uevent: version 1.0.3 [ 14.134126] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com [ 14.143900] device-mapper: multipath round-robin: version 1.2.0 loaded [ 14.151176] device-mapper: multipath queue-length: version 0.2.0 loaded [ 14.158610] device-mapper: multipath service-time: version 0.3.0 loaded [ 14.166077] device-mapper: dm-log-userspace: version 1.3.0 loaded [ 14.172934] device-mapper: raid: Loading target version 1.15.1 [ 14.182367] hid: raw HID events driver (C) Jiri Kosina [ 14.188635] drop_monitor: Initializing network drop monitor service [ 14.196276] NET: Registered protocol family 10 [ 14.203267] Segment Routing with IPv6 [ 14.207661] RPL Segment Routing with IPv6 [ 14.212651] NET: Registered protocol family 17 [ 14.218118] Key type dns_resolver registered [ 14.223934] registered taskstats version 1 [ 14.228770] Loading compiled-in X.509 certificates [ 14.234920] zswap: loaded using pool lzo/zbud [ 14.240436] Key type ._fscrypt registered [ 14.245281] Key type .fscrypt registered [ 14.249926] Key type fscrypt-provisioning registered [ 14.258352] Key type big_key registered [ 14.300567] Key type encrypted registered [ 14.314232] Freeing unused kernel memory: 1024K [ 14.332784] Checked W+X mappings: passed, no W+X pages found [ 14.339203] Run /init as init process [ 14.343639] with arguments: [ 14.343654] /init [ 14.343664] with environment: [ 14.343673] HOME=/ [ 14.343682] TERM=linux [ 14.653827] scsi 2:0:0:0: Direct-Access QUMO PMAP PQ: 0 ANSI: 6 [ 14.680902] sd 2:0:0:0: [sda] 30322688 512-byte logical blocks: (15.5 GB/14.5 GiB) [ 14.713391] sd 2:0:0:0: [sda] Write Protect is off [ 14.718941] sd 2:0:0:0: [sda] Mode Sense: 45 00 00 00 [ 14.732053] sd 2:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 14.918581] sda: sda1 [ 14.929788] sd 2:0:0:0: [sda] Attached SCSI removable disk [ 15.455930] input: gpio-keys as /devices/platform/gpio-keys/input/input0 [ 16.022579] usbcore: registered new interface driver uas [ 28.268135] EXT4-fs (sda1): mounting ext3 file system using the ext4 subsystem [ 28.370223] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. [ 32.677346] orion_wdt: Initial timeout 21 sec [ 32.707451] random: crng init done [ 32.718316] lm75 0-0048: supply vs not found, using dummy regulator [ 32.835221] lm75 0-0048: hwmon0: sensor 'lm75' [ 33.233021] sd 2:0:0:0: Attached scsi generic sg0 type 0 [ 33.335394] marvell-cesa f1030000.crypto: CESA device successfully registered [ 34.757727] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro. Quota mode: none. [ 37.071771] Adding 524284k swap on /swapfile. Priority:-2 extents:11 across:8712784k FS [ 40.990987] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 100 Mb/s, full duplex, flow control disabled [ 41.001595] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready root@debian:~#
root@debian:~# cat /proc/mtd dev: size erasesize name mtd0: 00180000 00020000 "uboot" mtd1: 00020000 00020000 "uboot_env" mtd2: 0fe00000 00020000 "ubi"
root@debian:~# echo "/dev/mtd1 0x0000 0x20000 0x20000" > /etc/fw_env.config root@debian:~# fw_printenv Cannot read environment, using default Cannot read default environment from file
Re: Change openWRT to debian on STORA November 12, 2022 03:52PM |
Admin Registered: 12 years ago Posts: 18,137 |
Re: Change openWRT to debian on STORA November 15, 2022 02:47PM |
Registered: 1 year ago Posts: 19 |
97 % [......................................................................] 99 % [....................................] [Type Ctrl-\ + c to quit] U-Boot 2017.07-tld-1 (Sep 05 2017 - 00:38:05 -0700) Netgear Stora MS2110 SoC: Kirkwood 88F6281_A1 DRAM: 128 MiB WARNING: Caches not enabled NAND: 256 MiB NAND read from offset c0000 failed -74 *** Warning - readenv() failed, using default environment In: serial Out: serial Err: serial Net: egiga0 PHY reset timed out 88E1116 Initialized on egiga0 Hit any key to stop autoboot: 0 Netgear Stora>
Hit any key to stop autoboot: 0 Netgear Stora> setenv usb_set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 ${mtdparts} earlyprintk=serial' Netgear Stora> setenv load_uimage 'ext2load usb 0:1 0x800000 /boot/uImage' Netgear Stora> setenv load_uinitrd 'ext2load usb 0:1 0x2100000 /boot/uInitrd' Netgear Stora> setenv usb_boot 'mw 0x800000 0 1; run load_uimage; run load_uinitrd; bootm 0x800000 0x2100000' Netgear Stora> setenv usb_bootcmd 'run usb_set_bootargs; run usb_boot' Netgear Stora> setenv bootcmd_debian 'usb reset; run usb_bootcmd; usb stop' Netgear Stora> setenv bootcmd_owrt 'setenv bootargs ${console} ${mtdparts} ${bootargs_root}; ubi part ubi; ubifsmount ubi:rootfs; ubi read 0x800000 kernel; bootm 0x800000' Netgear Stora> setenv bootcmd 'run bootcmd_debian; run bootcmd_owrt; reset' Netgear Stora> boot resetting USB... USB0: USB EHCI 1.00 scanning bus 0 for devices... 2 USB Device(s) found scanning usb for storage devices... Use USB retry period from the environment: 15 second(s) 1 Storage Device(s) found 5447395 bytes read in 1270 ms (4.1 MiB/s) EHCI timed out on TD - token=0x800d8d80 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 EHCI timed out on TD - token=0x80008d80 EHCI timed out on TD - token=0x80a88 ** ext4fs_devread read error - block ## Booting kernel from Legacy Image at 00800000 ... Image Name: Linux-5.13.6-kirkwood-tld-1 Created: 2022-11-10 22:22:23 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 5447331 Bytes = 5.2 MiB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK ## Loading init Ramdisk from Legacy Image at 02100000 ... Image Name: initramfs-5.13.6-kirkwood-tld-1 Created: 2022-11-10 23:18:31 UTC Image Type: ARM Linux RAMDisk Image (gzip compressed) Data Size: 9671395 Bytes = 9.2 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... Bad Data CRC Ramdisk image is corrupt or invalid stopping USB.. unexpected character ' ' at the end of partition Error initializing mtdparts! incorrect device type in ubi Partition ubi not found! Error reading superblock on volume 'ubi:rootfs' errno=-19! ubifsmount - mount UBIFS volume Usage: ubifsmount <volume-name> - mount 'volume-name' volume Error, no UBI device/partition selected! ## Booting kernel from Legacy Image at 00800000 ... Image Name: Linux-5.13.6-kirkwood-tld-1 Created: 2022-11-10 22:22:23 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 5447331 Bytes = 5.2 MiB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK Loading Kernel Image ... OK Starting kernel ... Uncompressing Linux... done, booting the kernel. [ 0.000000][ T0] Booting Linux on physical CPU 0x0 [ 0.000000][ T0] Linux version 5.13.6-kirkwood-tld-1 (root@tldDebian) (gcc (Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #1.0 PREEMPT Sat Jul 31 22:10:39 PDT 2021 [ 0.000000][ T0] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f [ 0.000000][ T0] CPU: VIVT data cache, VIVT instruction cache [ 0.000000][ T0] OF: fdt: Machine model: NETGEAR MS2000 / MS2110 aka Stora [ 0.000000][ T0] Memory policy: Data cache writeback [ 0.000000][ T0] Zone ranges: [ 0.000000][ T0] Normal [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000][ T0] Movable zone start for each node [ 0.000000][ T0] Early memory node ranges [ 0.000000][ T0] node 0: [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000][ T0] Initmem setup node 0 [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000][ T0] Built 1 zonelists, mobility grouping on. Total pages: 32512 [ 0.000000][ T0] Kernel command line: console=ttyS0,115200 mtdparts=orion_nand:1m(uboot),4m@1m(kernel),251m@5m(rootfs) rw [ 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: 110552K/131072K available (11264K kernel code, 1553K rwdata, 4272K rodata, 1024K init, 309K bss, 20520K reserved, 0K cma-reserved) [ 0.000000][ T0] random: get_random_u32 called from ____cache_alloc+0x408/0x7b4 with crng_init=0 [ 0.000000][ T0] trace event string verifier disabled [ 0.000000][ T0] rcu: Preemptible hierarchical RCU implementation. [ 0.000000][ T0] Trampoline variant of Tasks RCU enabled. [ 0.000000][ T0] Tracing variant of Tasks RCU enabled. [ 0.000000][ T0] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000][ T0] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000][ T0] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns [ 0.000003][ T0] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns [ 0.000075][ T0] Switching to timer-based delay loop, resolution 5ns [ 0.001136][ T0] Console: colour dummy device 80x30 [ 0.001230][ T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=2000000) [ 0.001281][ T0] pid_max: default: 32768 minimum: 301 [ 0.001779][ T0] LSM: Security Framework initializing [ 0.002002][ T0] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.002061][ T0] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.003863][ T0] CPU: Testing write buffer coherency: ok [ 0.006912][ T1] Setting up static identity map for 0x100000 - 0x100058 [ 0.007299][ T1] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3 [ 0.007731][ T1] rcu: Hierarchical SRCU implementation. [ 0.009474][ T1] devtmpfs: initialized [ 0.017053][ T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.017123][ T1] futex hash table entries: 256 (order: -1, 3072 bytes, linear) [ 0.062177][ T1] prandom32: self test passed (less than 6 bits correlated) [ 0.062234][ T1] prandom: seed boundary self test passed [ 0.067283][ T1] prandom: 100 self tests passed [ 0.067307][ T1] pinctrl core: initialized pinctrl subsystem [ 0.069313][ T1] NET: Registered protocol family 16 [ 0.070384][ T1] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.071616][ T1] audit: initializing netlink subsys (disabled) [ 0.073407][ T1] thermal_sys: Registered thermal governor 'step_wise' [ 0.073871][ T16] audit: type=2000 audit(0.070:1): state=initialized audit_enabled=0 res=1 [ 0.074076][ T1] cpuidle: using governor ladder [ 0.074195][ T1] cpuidle: using governor menu [ 0.074783][ T1] Feroceon L2: Enabling L2 [ 0.074851][ T1] Feroceon L2: Cache support initialised. [ 0.087213][ T1] No ATAGs? [ 2.560083][ C0] random: fast init done [ 5.953690][ T39] "cryptomgr_test" (39) uses obsolete ecb(arc4) skcipher [ 5.986157][ T59] wait_for_initramfs() called before rootfs_initcalls [ 6.180177][ T1] raid6: int32x8 gen() 90 MB/s [ 6.350138][ T1] raid6: int32x8 xor() 57 MB/s [ 6.520163][ T1] raid6: int32x4 gen() 90 MB/s [ 6.690180][ T1] raid6: int32x4 xor() 59 MB/s [ 6.860162][ T1] raid6: int32x2 gen() 115 MB/s [ 7.030180][ T1] raid6: int32x2 xor() 71 MB/s [ 7.200188][ T1] raid6: int32x1 gen() 81 MB/s [ 7.370258][ T1] raid6: int32x1 xor() 49 MB/s [ 7.370281][ T1] raid6: using algorithm int32x2 gen() 115 MB/s [ 7.370299][ T1] raid6: .... xor() 71 MB/s, rmw enabled [ 7.370314][ T1] raid6: using intx1 recovery algorithm [ 7.370679][ T1] vgaarb: loaded [ 7.371372][ T1] SCSI subsystem initialized [ 7.372074][ T1] usbcore: registered new interface driver usbfs [ 7.372167][ T1] usbcore: registered new interface driver hub [ 7.372239][ T1] usbcore: registered new device driver usb [ 7.372518][ T1] pps_core: LinuxPPS API ver. 1 registered [ 7.372539][ T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 7.372583][ T1] PTP clock support registered [ 7.374858][ T1] clocksource: Switched to clocksource orion_clocksource [ 7.495714][ T1] VFS: Disk quotas dquot_6.6.0 [ 7.495851][ T1] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 7.525881][ T1] NET: Registered protocol family 2 [ 7.526093][ T1] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 7.527255][ T1] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) [ 7.527320][ T1] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 7.527363][ T1] TCP bind hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 7.527399][ T1] TCP: Hash tables configured (established 1024 bind 1024) [ 7.527717][ T1] MPTCP token hash table entries: 512 (order: 0, 6144 bytes, linear) [ 7.527814][ T1] UDP hash table entries: 256 (order: 0, 4096 bytes, linear) [ 7.527863][ T1] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear) [ 7.528162][ T1] NET: Registered protocol family 1 [ 7.529123][ T1] RPC: Registered named UNIX socket transport module. [ 7.529153][ T1] RPC: Registered udp transport module. [ 7.529169][ T1] RPC: Registered tcp transport module. [ 7.529183][ T1] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 7.529205][ T1] PCI: CLS 0 bytes, default 32 [ 7.529383][ T1] NetWinder Floating Point Emulator V0.97 (double precision) [ 9.322389][ T1] Initialise system trusted keyrings [ 9.322483][ T1] Key type blacklist registered [ 9.322837][ T1] workingset: timestamp_bits=30 max_order=15 bucket_order=0 [ 9.322990][ T1] zbud: loaded [ 9.324944][ T1] NFS: Registering the id_resolver key type [ 9.325004][ T1] Key type id_resolver registered [ 9.325024][ T1] Key type id_legacy registered [ 9.325082][ T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 9.325114][ T1] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... [ 9.325134][ T1] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 9.325491][ T1] jffs2: version 2.2. (NAND) (SUMMARY) © 2001-2006 Red Hat, Inc. [ 9.326152][ T1] fuse: init (API version 7.34) [ 9.326730][ T1] orangefs_debugfs_init: called with debug mask: :none: :0: [ 9.327006][ T1] orangefs_init: module version upstream loaded [ 9.327031][ T1] SGI XFS with ACLs, security attributes, realtime, scrub, quota, no debug enabled [ 9.450256][ T1] xor: measuring software checksum speed [ 9.461112][ T1] arm4regs : 917 MB/sec [ 9.478910][ T1] 8regs : 556 MB/sec [ 9.491145][ T1] 32regs : 809 MB/sec [ 9.491168][ T1] xor: using function: arm4regs (917 MB/sec) [ 9.491197][ T1] async_tx: api initialized (async) [ 9.491225][ T1] Key type asymmetric registered [ 9.491244][ T1] Asymmetric key parser 'x509' registered [ 9.491322][ T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) [ 9.491423][ T1] io scheduler bfq registered [ 9.731222][ T1] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver [ 9.733646][ T1] mvebu-pcie mbus@f1000000:pcie@82000000: host bridge /mbus@f1000000/pcie@82000000 ranges: [ 9.733758][ T1] mvebu-pcie mbus@f1000000:pcie@82000000: MEM 0x00f1040000..0x00f1041fff -> 0x0000040000 [ 9.733817][ T1] mvebu-pcie mbus@f1000000:pcie@82000000: MEM 0xffffffffffffffff..0x00fffffffe -> 0x0100000000 [ 9.733859][ T1] mvebu-pcie mbus@f1000000:pcie@82000000: IO 0xffffffffffffffff..0x00fffffffe -> 0x0100000000 [ 9.734257][ T1] mvebu-pcie mbus@f1000000:pcie@82000000: PCI host bridge to bus 0000:00 [ 9.734288][ T1] pci_bus 0000:00: root bus resource [bus 00-ff] [ 9.734319][ T1] pci_bus 0000:00: root bus resource [mem 0xf1040000-0xf1041fff] (bus address [0x00040000-0x00041fff]) [ 9.734346][ T1] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff] [ 9.734370][ T1] pci_bus 0000:00: root bus resource [io 0x1000-0xeffff] [ 9.734538][ T1] pci 0000:00:01.0: [11ab:6281] type 01 class 0x060400 [ 9.734587][ T1] pci 0000:00:01.0: reg 0x38: [mem 0x00000000-0x000007ff pref] [ 9.736265][ T1] PCI: bus0: Fast back to back transfers disabled [ 9.736314][ T1] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 9.737758][ T1] PCI: bus1: Fast back to back transfers enabled [ 9.737796][ T1] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 [ 9.738063][ T1] pci 0000:00:01.0: BAR 6: assigned [mem 0xe0000000-0xe00007ff pref] [ 9.738101][ T1] pci 0000:00:01.0: PCI bridge to [bus 01] [ 9.738920][ T1] mv_xor f1060800.xor: Marvell shared XOR driver [ 9.796221][ T1] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy intr ) [ 9.799418][ T1] mv_xor f1060900.xor: Marvell shared XOR driver [ 9.856226][ T1] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy intr ) [ 9.859806][ T1] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 9.861640][ T1] printk: console [ttyS0] disabled [ 9.861764][ T1] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 26, base_baud = 12500000) is a 16550A [ 10.838292][ T1] printk: console [ttyS0] enabled [ 10.854267][ T1] loop: module loaded [ 10.859235][ T1] sata_mv f1080000.sata: slots 32 ports 2 [ 10.869683][ T1] scsi host0: sata_mv [ 10.874376][ T1] scsi host1: sata_mv [ 10.878658][ T1] ata1: SATA max UDMA/133 irq 33 [ 10.883493][ T1] ata2: SATA max UDMA/133 irq 33 [ 10.889618][ T1] nand: device found, Manufacturer ID: 0xec, Chip ID: 0xda [ 10.896762][ T1] nand: Samsung NAND 256MiB 3,3V 8-bit [ 10.902108][ T1] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 [ 10.910798][ T1] Scanning device for bad blocks [ 10.923421][ T1] Bad eraseblock 64 at 0x000000800000 [ 10.928777][ T1] Bad eraseblock 65 at 0x000000820000 [ 10.941195][ T1] Bad eraseblock 125 at 0x000000fa0000 [ 11.081930][ T1] Bad eraseblock 1250 at 0x000009c40000 [ 11.183854][ T1] 3 cmdlinepart partitions found on MTD device orion_nand [ 11.190922][ T1] Creating 3 MTD partitions on "orion_nand": [ 11.196846][ T1] 0x000000000000-0x000000100000 : "uboot" [ 11.204395][ T1] 0x000000100000-0x000000500000 : "kernel" [ 11.211991][ T1] 0x000000500000-0x000010000000 : "rootfs" [ 11.217785][ T94] ata1: SATA link down (SStatus 0 SControl F300) [ 11.227866][ T1] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information. [ 11.236560][ T1] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. [ 11.248678][ T1] libphy: Fixed MDIO Bus: probed [ 11.255452][ T1] libphy: orion_mdio_bus: probed [ 11.260304][ T1] [Firmware Warn]: /ocp@f1000000/mdio-bus@72004/ethernet-phy@8: Whitelisted compatible string. Please remove [ 11.273611][ T1] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4 [ 11.576594][ T96] ata2: SATA link down (SStatus 0 SControl F300) [ 12.036093][ T1] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address 52:3b:20:9c:11:51 [ 12.045804][ T1] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 12.053106][ T1] ehci-pci: EHCI PCI platform driver [ 12.058381][ T1] ehci-orion: EHCI orion driver [ 12.063364][ T1] orion-ehci f1050000.ehci: EHCI Host Controller [ 12.069663][ T1] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1 [ 12.078315][ T1] orion-ehci f1050000.ehci: irq 30, io mem 0xf1050000 [ 12.114903][ T1] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00 [ 12.122026][ T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.13 [ 12.131079][ T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 12.139075][ T1] usb usb1: Product: EHCI Host Controller [ 12.144683][ T1] usb usb1: Manufacturer: Linux 5.13.6-kirkwood-tld-1 ehci_hcd [ 12.152145][ T1] usb usb1: SerialNumber: f1050000.ehci [ 12.158468][ T1] hub 1-0:1.0: USB hub found [ 12.163015][ T1] hub 1-0:1.0: 1 port detected [ 12.168706][ T1] usbcore: registered new interface driver usb-storage [ 12.176035][ T1] mousedev: PS/2 mouse device common for all mice [ 12.454899][ T17] usb 1-1: new high-speed USB device number 2 using orion-ehci [ 12.658574][ T17] usb 1-1: New USB device found, idVendor=13fe, idProduct=4300, bcdDevice= 1.10 [ 12.667544][ T17] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 12.675470][ T17] usb 1-1: Product: QUMO [ 12.679595][ T17] usb 1-1: Manufacturer: [ 12.684503][ T17] usb 1-1: SerialNumber: 0721214E1D1A0741 [ 12.690945][ T17] usb-storage 1-1:1.0: USB Mass Storage device detected [ 12.698595][ T17] scsi host2: usb-storage 1-1:1.0 [ 13.204914][ T1] rtc-mv f1010300.rtc: internal RTC not ticking [ 13.211279][ T1] i2c /dev entries driver [ 13.223318][ T1] rtc-pcf8563 0-0051: registered as rtc0 [ 13.230164][ T1] rtc-pcf8563 0-0051: setting system clock to 2022-11-12T20:47:33 UTC (1668286053) [ 13.241505][ T1] device-mapper: uevent: version 1.0.3 [ 13.247296][ T1] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com [ 13.257076][ T1] device-mapper: multipath round-robin: version 1.2.0 loaded [ 13.264350][ T1] device-mapper: multipath queue-length: version 0.2.0 loaded [ 13.271783][ T1] device-mapper: multipath service-time: version 0.3.0 loaded [ 13.279247][ T1] device-mapper: dm-log-userspace: version 1.3.0 loaded [ 13.286110][ T1] device-mapper: raid: Loading target version 1.15.1 [ 13.295527][ T1] hid: raw HID events driver (C) Jiri Kosina [ 13.301823][ T1] drop_monitor: Initializing network drop monitor service [ 13.309468][ T1] NET: Registered protocol family 10 [ 13.316465][ T1] Segment Routing with IPv6 [ 13.320862][ T1] RPL Segment Routing with IPv6 [ 13.325813][ T1] NET: Registered protocol family 17 [ 13.331290][ T1] Key type dns_resolver registered [ 13.336997][ T1] registered taskstats version 1 [ 13.341833][ T1] Loading compiled-in X.509 certificates [ 13.347974][ T1] zswap: loaded using pool lzo/zbud [ 13.353475][ T1] Key type ._fscrypt registered [ 13.358327][ T1] Key type .fscrypt registered [ 13.362980][ T1] Key type fscrypt-provisioning registered [ 13.371438][ T1] Key type big_key registered [ 13.381057][ T1] Key type encrypted registered [ 13.390822][ T1] md: Waiting for all devices to be available before autodetect [ 13.398503][ T1] md: If you don't use raid, use raid=noautodetect [ 13.404994][ T1] md: Autodetecting RAID arrays. [ 13.409815][ T1] md: autorun ... [ 13.413319][ T1] md: ... autorun DONE. [ 13.418295][ T1] VFS: Cannot open root device "(null)" or unknown-block(0,0): error -6 [ 13.426624][ T1] Please append a correct "root=" boot option; here are the available partitions: [ 13.435831][ T1] 1f00 1024 mtdblock0 [ 13.435845][ T1] (driver?) [ 13.443812][ T1] 1f01 4096 mtdblock1 [ 13.443823][ T1] (driver?) [ 13.451916][ T1] 1f02 257024 mtdblock2 [ 13.451930][ T1] (driver?) [ 13.459966][ T1] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0) [ 13.468983][ T1] CPU: 0 PID: 1 Comm: swapper Not tainted 5.13.6-kirkwood-tld-1 #1.0 [ 13.476948][ T1] Hardware name: Marvell Kirkwood (Flattened Device Tree) [ 13.483955][ T1] [<8010e0a4>] (unwind_backtrace) from [<8010a8ac>] (show_stack+0x10/0x14) [ 13.492474][ T1] [<8010a8ac>] (show_stack) from [<80afddf4>] (panic+0xfc/0x328) [ 13.500113][ T1] [<80afddf4>] (panic) from [<81101ad0>] (mount_block_root+0x1e0/0x26c) [ 13.508353][ T1] [<81101ad0>] (mount_block_root) from [<81101c4c>] (mount_root+0xf0/0x120) [ 13.516940][ T1] [<81101c4c>] (mount_root) from [<81101dc0>] (prepare_namespace+0x144/0x180) [ 13.525696][ T1] [<81101dc0>] (prepare_namespace) from [<811015e4>] (kernel_init_freeable+0x1d0/0x234) [ 13.535331][ T1] [<811015e4>] (kernel_init_freeable) from [<80b091cc>] (kernel_init+0x8/0x118) [ 13.544269][ T1] [<80b091cc>] (kernel_init) from [<80100148>] (ret_from_fork+0x14/0x2c) [ 13.552596][ T1] Exception stack(0x814a5fb0 to 0x814a5ff8) [ 13.558381][ T1] 5fa0: 00000000 00000000 00000000 00000000 [ 13.567304][ T1] 5fc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 13.576223][ T1] 5fe0: 00000000 00000000 00000000 00000000 00000013 00000000 [ 13.583584][ T1] ---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0) ]---
Re: Change openWRT to debian on STORA November 15, 2022 04:31PM |
Admin Registered: 12 years ago Posts: 18,137 |
Netgear Stora> setenv usb_set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 ${mtdparts} earlyprintk=serial' Netgear Stora> setenv load_uimage 'ext2load usb 0:1 0x800000 /boot/uImage' Netgear Stora> setenv load_uinitrd 'ext2load usb 0:1 0x2100000 /boot/uInitrd' Netgear Stora> setenv usb_boot 'mw 0x800000 0 1; run load_uimage; run load_uinitrd; bootm 0x800000 0x2100000' Netgear Stora> setenv usb_bootcmd 'run usb_set_bootargs; run usb_boot' Netgear Stora> setenv bootcmd_debian 'usb reset; run usb_bootcmd; usb stop' Netgear Stora> setenv bootcmd_owrt 'setenv bootargs ${console} ${mtdparts} ${bootargs_root}; ubi part ubi; ubifsmount ubi:rootfs; ubi read 0x800000 kernel; bootm 0x800000' Netgear Stora> setenv bootcmd 'run bootcmd_debian; run bootcmd_owrt; reset'
saveenv printenvAnd then boot into Debian.
cat /proc/mtd
cd /tmp nanddump --noecc --omitoob -f mtd0.owrt.uboot.2020.04.stora /dev/mtd0
Re: Change openWRT to debian on STORA November 18, 2022 04:58PM |
Registered: 1 year ago Posts: 19 |
Re: Change openWRT to debian on STORA November 18, 2022 05:16PM |
Admin Registered: 12 years ago Posts: 18,137 |
nanddump --noecc --omitoob -f mtd1.owrt.uboot.2020.04.stora /dev/mtd1
Re: Change openWRT to debian on STORA November 18, 2022 05:20PM |
Registered: 1 year ago Posts: 19 |
Re: Change openWRT to debian on STORA November 18, 2022 05:47PM |
Admin Registered: 12 years ago Posts: 18,137 |
Netgear Stora> printenv arcNumber=2743 baudrate=115200 bootcmd=setenv bootargs ${console} ${mtdparts} ${bootargs_root}; ubi part ubi; ubifsmount ubi:rootfs; ubi read 0x800000 kernel; bootm 0x800000 bootdelay=2 console=console=ttyS0,115200 ethact=egiga0 ethaddr=52:3b:20:9c:11:51 ipaddr=192.168.0.2 mtdids=nand0=orion_nand mtdparts=mtdparts=orion_nand:0x180000@0x0(uboot),0x20000@0x180000(uboot_env),-@0x200000(ubi) serverip=192.168.0.1 stderr=serial stdin=serial stdout=serial Environment size: 454/131068 bytes
Netgear Stora> setenv usb_set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 ${mtdparts} earlyprintk=serial' Netgear Stora> setenv load_uimage 'ext2load usb 0:1 0x800000 /boot/uImage' Netgear Stora> setenv load_uinitrd 'ext2load usb 0:1 0x2100000 /boot/uInitrd' Netgear Stora> setenv usb_boot 'mw 0x800000 0 1; run load_uimage; run load_uinitrd; bootm 0x800000 0x2100000' Netgear Stora> setenv usb_bootcmd 'run usb_set_bootargs; run usb_boot' Netgear Stora> setenv bootcmd_debian 'usb reset; run usb_bootcmd; usb stop' Netgear Stora> setenv bootcmd_owrt 'setenv bootargs ${console} ${mtdparts} ${bootargs_root}; ubi part ubi; ubifsmount ubi:rootfs; ubi read 0x800000 kernel; bootm 0x800000' Netgear Stora> setenv bootcmd 'run bootcmd_debian; run bootcmd_owrt; reset'
cd /boot cp -a uImage uImage.stora.dtb cp -a uImage.orig uImage
Re: Change openWRT to debian on STORA November 19, 2022 03:40AM |
Registered: 8 years ago Posts: 422 |
Re: Change openWRT to debian on STORA November 19, 2022 02:37PM |
Admin Registered: 12 years ago Posts: 18,137 |