Welcome! Log In Create A New Profile

Advanced

Debian on GlobalScale Dreamplug

Posted by rayknight 
dreamplug
April 07, 2023 09:27PM
does anyone still mess with these? i got 2 off ebay for 30 bucks new. and i got the jtag as well for the uart to usb.
Re: dreamplug
April 07, 2023 09:52PM
mrc333777,

It is fully supported.

https://forum.doozan.com/read.php?3,42359

Step 1 is to prepare the rootfs. You already have a Debian rootfs from a different Kirkwood box, then start from Step 2. Or create new rootfs again.

Note that you will be booting with new u-boot. So skip Step 4 (the uImage is original, no DTB embedded).

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



Edited 3 time(s). Last edit at 04/07/2023 10:01PM by bodhi.
Re: dreamplug
April 09, 2023 07:10AM
Latest kernels seem to get internal wifi and bt working again based on latest experimentation with my pair. Nice device with built in audio output plus the esata port should support sata ii port multiplication. Hack away!
Re: dreamplug
April 09, 2023 02:46PM
LeggoMyEggo,

> Latest kernels seem to get internal wifi and bt
> working again based on latest experimentation with
> my pair.

Thanks for the report!

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: dreamplug
April 26, 2023 06:19AM
bodhi Wrote:
-------------------------------------------------------
> mrc333777,
>
> It is fully supported.
>
> https://forum.doozan.com/read.php?3,42359
>
> Step 1 is to prepare the rootfs. You already have
> a Debian rootfs from a different Kirkwood box,
> then start from Step 2. Or create new rootfs
> again.
>
> Note that you will be booting with new u-boot. So
> skip Step 4 (the uImage is original, no DTB
> embedded
).

i was following the steps from that link you gave, but i ran into some issues.

mkdir -p /tmp/sda1
mount -o noatime /dev/sda1 /media/sda1 <--- should that be /tmp/sda1 ? 
cd /tmp/sda1
mv uImage uImage.stock
cp -a /tmp/sdc1/boot/zImage-4.12.1-kirkwood-tld-1 zImage.fdt <--- where to get zImage-4.12.1-kirkwood-tld-1 from ?
cat /tmp/sdc1/boot/dts/kirkwood-dreamplug.dtb >> zImage.fdt
mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-4.12.1-kirkwood-tld-1 -d zImage.fdt uImage <--- where to get Linux-4.12.1-kirkwood-tld-1 from ?
sync



Edited 1 time(s). Last edit at 04/26/2023 06:20AM by mrc333777.
Re: dreamplug
April 26, 2023 03:00PM
mrc333777,

> mkdir -p /tmp/sda1
> mount -o noatime /dev/sda1 /media/sda1 <--- should
> that be /tmp/sda1 ?

Yes, that was a typo!

And the installation instruction was written long ago when the rootfs was Debian rootfs Debian-4.12.1-kirkwood-tld-1-rootfs-bodhi.tar.bz2.

You can use the latest rootfs Debian-5.13.6-kirkwood-tld-1-rootfs-bodhi.tar.bz2. Replace the kernel version in the instruction (4.12.1-kirkwood-tld-1 with 5.13.6-kirkwood-tld-1).

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: dreamplug
April 26, 2023 04:11PM
bodhi Wrote:
-------------------------------------------------------
> mrc333777,
>
> > mkdir -p /tmp/sda1
> > mount -o noatime /dev/sda1 /media/sda1 <---
> should
> > that be /tmp/sda1 ?
>
> Yes, that was a typo!
>
> And the installation instruction was written long
> ago when the rootfs was Debian rootfs
> Debian-4.12.1-kirkwood-tld-1-rootfs-bodhi.tar.bz2.
>
>
> You can use the latest rootfs
> Debian-5.13.6-kirkwood-tld-1-rootfs-bodhi.tar.bz2.
> Replace the kernel version in the instruction
> (4.12.1-kirkwood-tld-1 with
> 5.13.6-kirkwood-tld-1).

excuse my ignorance, but what about this? i dont see either of these files in the .tar
5.13.6-kirkwood-tld-1

mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-4.12.1-kirkwood-tld-1 -d zImage.fdt uImage
 <--- where to get Linux-4.12.1-kirkwood-tld-1 from ?



Edited 1 time(s). Last edit at 04/26/2023 04:12PM by mrc333777.
Re: dreamplug
April 26, 2023 04:24PM
Create the rootfs with Debian-5.13.6-kirkwood-tld-1-rootfs-bodhi.tar.bz2. In the release thread, scroll down to

Quote

Updated 26 Sept 2021

Basic Debian bullseye Kirkwood rootfs for most Kirwood plugs:

The kernel in the latest rootfs is 5.13.6. Replace 4.12.1 with 5.13.6 in the instruction.

mkdir -p /tmp/sda1
mount -o noatime /dev/sda1 /tmp/sda1
cd /tmp/sda1
mv uImage uImage.stock
cp -a /tmp/sdc1/boot/zImage-5.13.6-kirkwood-tld-1 zImage.fdt
cat /tmp/sdc1/boot/dts/kirkwood-dreamplug.dtb >> zImage.fdt
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

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: dreamplug
April 26, 2023 05:51PM
bodhi Wrote:
-------------------------------------------------------
> Create the rootfs with
> Debian-5.13.6-kirkwood-tld-1-rootfs-bodhi.tar.bz2.
> In the
> release
> thread
, scroll down to
>
>
Quote

Updated 26 Sept 2021
>
> Basic Debian bullseye Kirkwood rootfs for most
> Kirwood plugs:
>
> The kernel in the latest rootfs is 5.13.6. Replace
> 4.12.1 with 5.13.6 in the instruction.
>
>
> mkdir -p /tmp/sda1
> mount -o noatime /dev/sda1 /tmp/sda1
> cd /tmp/sda1
> mv uImage uImage.stock
> cp -a /tmp/sdc1/boot/zImage-5.13.6-kirkwood-tld-1
> zImage.fdt
> cat /tmp/sdc1/boot/dts/kirkwood-dreamplug.dtb >>
> zImage.fdt
> 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
>


cant get mkimage to install with apt-get update or apt-get install u-boot-tools
the sources.list is outdated and i am not sure what to put to install this u-boot-tools_2012.04.01-2_armel.deb
cant even find it as a stand alone download



Edited 1 time(s). Last edit at 04/26/2023 05:54PM by mrc333777.
Re: dreamplug
April 26, 2023 06:17PM
> cant get mkimage to install with apt-get update or
> apt-get install u-boot-tools
> the sources.list is outdated and i am not sure
> what to put to install this
> u-boot-tools_2012.04.01-2_armel.deb
> cant even find it as a stand alone download

Try
/tmp/sdc1/usr/bin/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
If that does not work, copy it to the /usr/bin (check to see if it is there or not first).
ls /usr/bin/mkimage

And then
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

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: dreamplug
April 26, 2023 06:19PM

yea i did try root@debian-gti:/tmp/sda1# /tmp/sdc1/usr/bin/mkimage
/tmp/sdc1/usr/bin/mkimage: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory
root@debian-gti:/tmp/sda1#

Re: dreamplug
April 26, 2023 06:27PM
OK you can chroot in to the USB rootfs and run mkimage.

chroot /tmp/sdc1 /bin/sh
run the mkimage
cd /boot 
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.dreamplug
and exit chroot
exit

Now you are back to the Dreamplug stock

cd /tmp/sda1
cp -a /tmp/sdc1/boot/uImage.dreamplug uImage

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



Edited 1 time(s). Last edit at 04/26/2023 06:28PM by bodhi.
Re: dreamplug
April 26, 2023 06:30PM
I think I need to modify the installation to recommend creating the rootfs on another Linux box first. This stock OS is too ancient.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: dreamplug
April 26, 2023 06:42PM
https://www.dropbox.com/s/gsuy1ukfzd508ja/u-boot-tools_2012.04.01-2_armel.deb?dl=0

grab that if you need it, i downloaded the isos and extracted it. lets see how it goes
Re: dreamplug
April 26, 2023 06:55PM
i had to remove the usb stick to boot, it doesnt like it when its in

[   20.524608][    T1] [<80b091cc>] (kernel_init) from [<80100148>] (ret_from_fork+0x14/0x2c)
[   20.532926][    T1] Exception stack(0x814affb0 to 0x814afff8)
[   20.538701][    T1] ffa0:                                     00000000 00000000 00000000 00000000
[   20.547624][    T1] ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[   20.556543][    T1] ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
[   20.563903][    T1] ---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(8,2) ]---

root@debian-gti:~# cat /proc/mtd
dev:    size   erasesize  name
mtd0: 00080000 00001000 "u-boot"
mtd1: 00010000 00001000 "u-boot env"
mtd2: 00010000 00001000 "dtb"
root@debian-gti:~#
should i continue onward with the next steps of installing the new uboot?

i already noticed flashcp and -bash: /tmp/sdc1/usr/bin/fw_setenv: No such file or directory is not installed , and where to get that from?



Edited 4 time(s). Last edit at 04/26/2023 07:53PM by mrc333777.
Re: dreamplug
April 26, 2023 07:55PM
> i already noticed flashcp is not installed , and
> where to get that from?

It's in the rootfs

/tmp/sdc1/usr/sbin/flashcp

And again, you'll need to chroot to run flashcp.

Strange, it seems as though you are not running the same stock OS that I did.

====

Now with all the trouble you had, I would recommend booting with UART first, before installing new u-boot. Here is an example

https://forum.doozan.com/read.php?3,51739,51919#msg-51919

If you can run the new u-boot over UART with kwboot, then yes, proceed to install new u-boot (finishing the installation steps).

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: dreamplug
April 26, 2023 08:06PM
bodhi Wrote:
-------------------------------------------------------
> > i already noticed flashcp is not installed ,
> and
> > where to get that from?
>
> It's in the rootfs
>
>
> /tmp/sdc1/usr/sbin/flashcp
>
>
> And again, you'll need to chroot to run flashcp.
>
> Strange, it seems as though you are not running
> the same stock OS that I did.
>
> ====
>
> Now with all the trouble you had, I would
> recommend booting with UART first, before
> installing new u-boot. Here is an example
>
> https://forum.doozan.com/read.php?3,51739,51919#msg-51919
>
> If you can run the new u-boot over UART with
> kwboot, then yes, proceed to install new u-boot
> (finishing the installation steps).


yea it worked with the uart, i bought the jtag box and cables from globalscale figured i would need it all with 7 of these
new dreamplugs.

but now i am at this spot of the tasks and apt-get install libubootenv-tool gives hella errors


root@debian-gti:/tmp/sdc1/boot# /tmp/sdc1/usr/bin/fw_setenv ethaddr 'xx:xx:xx:xx:xx:xx'
-bash: /tmp/sdc1/usr/bin/fw_setenv: No such file or directory
root@debian-gti:/tmp/sdc1/boot#

Re: dreamplug
April 26, 2023 08:19PM
i guess its not safe to reboot yet?
i am on step 6b and that file /tmp/sdc1/usr/bin/fw_setenv is missing
Re: dreamplug
April 26, 2023 08:25PM
Get the fw_setenv from here:

https://forum.doozan.com/read.php?3,27280

==============

Without setting the env in Linux, you can also do this to boot successfully:

In serial console, to boot the dreamplug

setenv devices 'usb ide'
setenv dtb_file '/boot/dts/kirkwood-dreamplug.dtb'

And use fw_setenv after logged into Debian to adjust the envs permanently.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: dreamplug
April 26, 2023 08:28PM
BTW, you don't need that expensive JTAG to run serial console. The UART port is outside the case, so just use a normal serial module converter (CP2xxx or PL3XX):

https://forum.doozan.com/read.php?8,13263

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: dreamplug
April 26, 2023 08:28PM
bodhi Wrote:
-------------------------------------------------------
> Get the fw_setenv from here:
>
> https://forum.doozan.com/read.php?3,27280
>
> ==============
>
> Without setting the env in Linux, you can also do
> this to boot successfully:
>
> In serial console, to boot the dreamplug
>
>
> setenv devices 'usb ide'
> setenv dtb_file
> '/boot/dts/kirkwood-dreamplug.dtb'
>
>
> And use fw_setenv after logged into Debian to
> adjust the envs permanently.


i have those tools downloaded already, but there is no file name fw_setenv in the tar file
Re: dreamplug
April 26, 2023 08:35PM
bodhi Wrote:
-------------------------------------------------------
> BTW, you don't need that expensive JTAG to run
> serial console. The UART port is outside the case,
> so just use a normal serial module converter
> (CP2xxx or PL3XX):
>
> https://forum.doozan.com/read.php?8,13263

i know, i have all those different adapters of all shapes and forms since the 1990's or something when i started uart'ing and jtagging dish network and ip cameras. i have the latest ones too. i even have those JST cables. i just wanted the
jtag box for the heck of it.might need it later, who knows. and i have extra money to blow on this little hobby of mine.
messing with all these different devices gives me something to do and frees my mind from outside worldly head aches.
Re: dreamplug
April 26, 2023 08:37PM
https://forum.doozan.com/read.php?3,27280

Quote


This binpack contains these files:
tools/
tools/busybox
tools/e2fsck
tools/nanddump
tools/fw_printenv
tools/flash_erase
tools/nandwrite
tools/fw_env.config

Note that fw_printenv is the same binary as fw_setenv. And the fw_env.config should be in /etc so it can be used to set envs after you have installed new u-boot.
cd tools
ln -s fw_printenv fw_setenv
cp -a fw_env.config /etc/

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: dreamplug
April 26, 2023 08:40PM
> messing with all these different devices gives me
> something to do and frees my mind from outside
> worldly head aches.

:D damn good Zen therapy.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: dreamplug
April 26, 2023 08:55PM
now i got this error

root@debian-gti:/tmp/sdc1/boot# fw_setenv ethaddr 'F0:AD:4E:03:2A:97'
Can't overwrite "ethaddr"
root@debian-gti:/tmp/sdc1/boot#
Re: dreamplug
April 26, 2023 08:57PM
i am curious, is there a discord or irc or live chat channels for this forums?
Re: dreamplug
April 26, 2023 09:08PM
> now i got this error
>
>
> root@debian-gti:/tmp/sdc1/boot# fw_setenv ethaddr
> 'F0:AD:4E:03:2A:97'
> Can't overwrite "ethaddr"
> root@debian-gti:/tmp/sdc1/boot#
>

Ignore it. ethaddr can be set later. You will boot with a randomly generated MAC address (in the default env). So just watch for the dynamic IP to appear in your router. Or try pinging debian.local.

And there is no IRC or other channel for this forum (intentionally so).

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: dreamplug
April 26, 2023 09:24PM
here is the final thing i suppose, it boots...will you look over it and see if i screwed anything up?


[2023-04-26 21:44:27.605] root@debian-gti:/tmp/sdc1/boot# 
[2023-04-26 21:44:28.004] root@debian-gti:/tmp/sdc1/boot# 
[2023-04-26 21:44:28.180] root@debian-gti:/tmp/sdc1/boot# sync
[2023-04-26 21:44:29.699] root@debian-gti:/tmp/sdc1/boot# ln -s fw_printenv fw_setenv 
[2023-04-26 21:44:39.521] root@debian-gti:/tmp/sdc1/boot# cp -a fw_env.config /etc/
[2023-04-26 21:44:44.849] root@debian-gti:/tmp/sdc1/boot# echo "/dev/mtd1 0x00000 0x10000 0x10000" > /etc/ fw_env.config
[2023-04-26 21:45:39.404] root@debian-gti:/tmp/sdc1/boot# cat /etc/fw_env.config
[2023-04-26 21:45:53.369] /dev/mtd1 0x00000 0x10000 0x10000
[2023-04-26 21:45:53.385] root@debian-gti:/tmp/sdc1/boot# [ 7001.067021][    C0] mv643xx_eth_port mv643xx_eth_port.0 eth0: link down
[2023-04-26 21:49:12.426] [ 7004.999135][    C0] mv643xx_eth_port mv643xx_eth_port.1 eth1: link up, 1000 Mb/s, full duplex, flow control disabled
[2023-04-26 21:49:12.453] [ 7005.009802][   T17] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
[2023-04-26 21:50:08.280] 
[2023-04-26 21:50:08.311] root@debian-gti:/tmp/sdc1/boot# cat /etc/fw_env.configecho "/dev/mtd1 0x00000 0x10000 0x10000" > /etc/ffw_env.configti:/tmp/sdc1/boot# cp -a fw_env.config
[2023-04-26 21:50:10.027] root@debian-gti:/tmp/sdc1/boot# cp -a fw_env.config /etc/echo "/dev/mtd1 0x00000 0x10000 0x10000" > /etc/ffw_env.configti:/tmp/sdc1/boot# cat /etc/fw_env.config
[2023-04-26 21:50:10.707] root@debian-gti:/tmp/sdc1/boot# cat /etc/fw_env.configifconfig
[2023-04-26 21:50:14.154] eth0      Link encap:Ethernet  HWaddr f0:ad:4e:03:2a:97  
[2023-04-26 21:50:14.154]           inet addr:192.168.0.109  Bcast:192.168.0.255  Mask:255.255.255.0
[2023-04-26 21:50:14.154]           inet6 addr: fe80::f2ad:4eff:fe03:2a97/64 Scope:Link
[2023-04-26 21:50:14.154]           inet6 addr: 2603:6011:7500:7102:f2ad:4eff:fe03:2a97/64 Scope:Global
[2023-04-26 21:50:14.154]           UP BROADCAST MULTICAST  MTU:1500  Metric:1
[2023-04-26 21:50:14.154]           RX packets:3443 errors:0 dropped:0 overruns:0 frame:0
[2023-04-26 21:50:14.154]           TX packets:1058 errors:0 dropped:0 overruns:0 carrier:0
[2023-04-26 21:50:14.154]           collisions:0 txqueuelen:1000 
[2023-04-26 21:50:14.154]           RX bytes:4227026 (4.0 MiB)  TX bytes:130722 (127.6 KiB)
[2023-04-26 21:50:14.154]           Interrupt:37 
[2023-04-26 21:50:14.154] 
[2023-04-26 21:50:14.154] eth1      Link encap:Ethernet  HWaddr f0:ad:4e:03:2a:98  
[2023-04-26 21:50:14.154]           inet6 addr: fe80::f2ad:4eff:fe03:2a98/64 Scope:Link
[2023-04-26 21:50:14.154]           inet6 addr: 2603:6011:7500:7102:f2ad:4eff:fe03:2a98/64 Scope:Global
[2023-04-26 21:50:14.154]           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
[2023-04-26 21:50:14.154]           RX packets:2 errors:0 dropped:0 overruns:0 frame:0
[2023-04-26 21:50:14.154]           TX packets:7 errors:0 dropped:0 overruns:0 carrier:0
[2023-04-26 21:50:14.154]           collisions:0 txqueuelen:1000 
[2023-04-26 21:50:14.158]           RX bytes:324 (324.0 B)  TX bytes:602 (602.0 B)
[2023-04-26 21:50:14.158]           Interrupt:38 
[2023-04-26 21:50:14.158] 
[2023-04-26 21:50:14.158] lo        Link encap:Local Loopback  
[2023-04-26 21:50:14.158]           inet addr:127.0.0.1  Mask:255.0.0.0
[2023-04-26 21:50:14.158]           inet6 addr: ::1/128 Scope:Host
[2023-04-26 21:50:14.158]           UP LOOPBACK RUNNING  MTU:65536  Metric:1
[2023-04-26 21:50:14.158]           RX packets:0 errors:0 dropped:0 overruns:0 frame:0
[2023-04-26 21:50:14.158]           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
[2023-04-26 21:50:14.158]           collisions:0 txqueuelen:1000 
[2023-04-26 21:50:14.158]           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
[2023-04-26 21:50:14.158] 
[2023-04-26 21:50:14.158] root@debian-gti:/tmp/sdc1/boot# /tmp/sdc1/usr/bin/fw_setenv
[2023-04-26 21:53:00.146] -bash: /tmp/sdc1/usr/bin/fw_setenv: No such file or directory
[2023-04-26 21:53:00.161] root@debian-gti:/tmp/sdc1/boot# fw_setenv
[2023-04-26 21:53:29.707] root@debian-gti:/tmp/sdc1/boot# fw_setenv ethaddr 'F0:AD:4E:03:2A:97'
[2023-04-26 21:54:13.200] Can't overwrite "ethaddr"
[2023-04-26 21:54:14.000] root@debian-gti:/tmp/sdc1/boot# ^C
[2023-04-26 21:54:45.385] root@debian-gti:/tmp/sdc1/boot# fw_setenv arcNumber 3550' 
[2023-04-26 22:15:16.120] root@debian-gti:/tmp/sdc1/boot# fw_setenv devices 'usb ide'
[2023-04-26 22:15:25.671] root@debian-gti:/tmp/sdc1/boot# fw_setenv dtb_file '/boot/dts/kirkwood-dreamplug .dtb'
[2023-04-26 22:15:35.763] root@debian-gti:/tmp/sdc1/boot# fw_setenv dtb_file '/boot/dts/kirkwood-dreamplug .dtb''
[2023-04-26 22:15:56.815] > 
[2023-04-26 22:15:58.158] > 
[2023-04-26 22:15:58.575] > ^C
[2023-04-26 22:15:59.871] root@debian-gti:/tmp/sdc1/boot# 
[2023-04-26 22:16:00.398] root@debian-gti:/tmp/sdc1/boot# fw_setenv ethaddr 'F0:AD:4E:03:2A:97'
[2023-04-26 22:16:10.924] Can't overwrite "ethaddr"
[2023-04-26 22:16:11.723] root@debian-gti:/tmp/sdc1/boot# 
[2023-04-26 22:16:12.443] root@debian-gti:/tmp/sdc1/boot# fw_setenv ethaddr 'F0:AD:4E:03:2A:97'1
[2023-04-26 22:16:16.378] root@debian-gti:/tmp/sdc1/boot# fw_setenv eth1addr 'F0:AD:4E:03:2A:97'97'8'
[2023-04-26 22:16:34.214] root@debian-gti:/tmp/sdc1/boot# fw_setenv eth1addr 'F0:AD:4E:03:2A:98'7'addr 'F0:AD:4E:03:2A:97'dtb_file '/boot/dts/kirkwood-dreamplug..dtb''
[2023-04-26 22:16:40.764] 
[2023-04-26 22:16:41.836] .dtb'
[2023-04-26 22:16:41.836] 
[2023-04-26 22:16:41.836] .dtb'debian-gti:/tmp/sdc1/boot# fw_setenv devices 'usb ide'
[2023-04-26 22:16:42.681] root@debian-gti:/tmp/sdc1/boot# fw_setenv devices 'usb ide'tb_file '/boot/dts/kirkwood-dreamplug..dtb''
[2023-04-26 22:16:51.095] 
[2023-04-26 22:16:51.474] root@debian-gti:/tmp/sdc1/boot# fw_setenv ethaddr 'F0:AD:4E:03:2A:97'
[2023-04-26 22:16:51.474] 
[2023-04-26 22:16:51.474] 
[2023-04-26 22:16:51.474] root@debian-gti:/tmp/sdc1/boot# fw_setenv ethaddr 'F0:AD:4E:03:2A:97'1addr 'F0:AD:4E:03:2A:97'8'root@debian-gti:/tmp/sdc1/boot# fw_setenv dtb_file '/boot/dts/kirkwood-dreamplug .dtb'
[2023-04-26 22:17:12.252] root@debian-gti:/tmp/sdc1/boot# 
[2023-04-26 22:17:12.860] root@debian-gti:/tmp/sdc1/boot# 
[2023-04-26 22:17:13.084] root@debian-gti:/tmp/sdc1/boot# 
[2023-04-26 22:17:19.946] root@debian-gti:/tmp/sdc1/boot# fw_setenv mtdparts 'mtdparts=spi0.0:0x80000@0(u- boot),0x10000@0xC0000(u-boot-env),0x10000@0x100000(u-boot-env-stock),0x10000@0x1 80000(dtb-stock)'
[2023-04-26 22:17:22.171] root@debian-gti:/tmp/sdc1/boot# fw_setenv mtdids
[2023-04-26 22:17:58.306] root@debian-gti:/tmp/sdc1/boot# fw_setenv partition
[2023-04-26 22:18:06.384] root@debian-gti:/tmp/sdc1/boot# fw_setenv machid
[2023-04-26 22:18:13.214] root@debian-gti:/tmp/sdc1/boot# 
[2023-04-26 22:18:14.447] root@debian-gti:/tmp/sdc1/boot# sync
[2023-04-26 22:18:26.283] root@debian-gti:/tmp/sdc1/boot# 
[2023-04-26 22:18:27.051] root@debian-gti:/tmp/sdc1/boot# 
[2023-04-26 22:18:36.025] root@debian-gti:/tmp/sdc1/boot# 
[2023-04-26 22:18:36.233] root@debian-gti:/tmp/sdc1/boot# cd ~
[2023-04-26 22:18:38.136] root@debian-gti:~# 
[2023-04-26 22:18:38.504] root@debian-gti:~# 
[2023-04-26 22:18:38.713] root@debian-gti:~# reboot
[2023-04-26 22:18:56.422] 
[2023-04-26 22:18:56.422] Broadcast message from root@debian-gti (ttyS0) (Sat Jan  1 04:39:39 2000):
[2023-04-26 22:18:56.452] The system is going down for reboot NOW!
[2023-04-26 22:18:56.452] INIT: Switching to runINIT: Sending processes the TERM signal
[2023-04-26 22:18:57.555] [info] Using makefile-style concurrent boot in runlevel 6.
[2023-04-26 22:18:58.051] [....] Shutting down ALSA...[ ok done (none loaded).
[2023-04-26 22:18:58.131] [....] Stopping bluetooth: rfcommCan't open RFCOMM control socket: Address family not supported by protocol
[2023-04-26 22:18:58.163]  /usr/sbin/bluetoothd[ ok .
[2023-04-26 22:18:58.163] [....] Stopping web server: apache2Stopping very small Busybox based DHCP server: No /usr/sbin/udhcpd found running; none killed.
[2023-04-26 22:18:58.207] udhcpd.
[2023-04-26 22:18:58.224] Stopping nginx: nginx.
[2023-04-26 22:19:15.499] 
[2023-04-26 22:19:19.873] [ 8812.394749][    C0] mv643xx_eth_port mv643xx_eth_port.1 eth1: link down
[2023-04-26 22:19:28.027] [ 8820.547779][    C0] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 1000 Mb/s, full duplex, flow control disabled
[2023-04-26 22:19:28.488] apache2: Could not reliably determine the server's fully qualified domain name, using 192.168.0.118 for ServerName
[2023-04-26 22:19:28.520]  ... waiting [ ok .
[2023-04-26 22:19:29.703] [....] Stopping DNS forwarder and DHCP server: dnsmasq[ ok .
[2023-04-26 22:19:29.992] [....] Asking all remaining processes to terminate...[ ok done.
[2023-04-26 22:19:30.296] [....] All processes ended within 1 seconds...[ ok done.
[2023-04-26 22:19:30.423] [....] Stopping enhanced syslogd: rsyslogd[ ok .
[2023-04-26 22:19:31.230] [info] Saving the system clock.
[2023-04-26 22:19:31.230] [info] Hardware Clock updated to Sat Jan  1 04:40:14 UTC 2000.
[2023-04-26 22:19:31.230] [....] Deconfiguring network interfaces...Internet Systems Consortium DHCP Client 4.2.2
[2023-04-26 22:19:31.230] Copyright 2004-2011 Internet Systems Consortium.
[2023-04-26 22:19:31.230] All rights reserved.
[2023-04-26 22:19:31.230] For info, please visit https://www.isc.org/software/dhcp/
[2023-04-26 22:19:31.230] 
[2023-04-26 22:19:31.230] Listening on LPF/eth1/f0:ad:4e:03:2a:98
[2023-04-26 22:19:31.230] Sending on   LPF/eth1/f0:ad:4e:03:2a:98
[2023-04-26 22:19:31.230] Sending on   Socket/fallback
[2023-04-26 22:19:31.230] DHCPRELEASE on eth1 to 192.168.0.1 port 67
[2023-04-26 22:19:31.230] Internet Systems Consortium DHCP Client 4.2.2
[2023-04-26 22:19:31.230] Copyright 2004-2011 Internet Systems Consortium.
[2023-04-26 22:19:31.230] All rights reserved.
[2023-04-26 22:19:31.230] For info, please visit https://www.isc.org/software/dhcp/
[2023-04-26 22:19:31.230] 
[2023-04-26 22:19:31.230] Listening on LPF/eth0/f0:ad:4e:03:2a:97
[2023-04-26 22:19:31.230] Sending on   LPF/eth0/f0:ad:4e:03:2a:97
[2023-04-26 22:19:31.230] Sending on   Socket/fallback
[2023-04-26 22:19:31.230] DHCPRELEASE on eth0 to 192.168.0.1 port 67
[2023-04-26 22:19:31.405] [ ok done.
[2023-04-26 22:19:31.614] [....] Deactivating swap...[ ok done.
[2023-04-26 22:19:31.709] [....] Unmounting local filesystems...[ ok done.
[2023-04-26 22:19:31.949] [ 8824.490209][ T5418] EXT4-fs (sda2): re-mounted. Opts: (null). Quota mode: none.
[2023-04-26 22:19:32.082] [info] Will now restart.
[2023-04-26 22:19:34.098] [ 8826.627794][ T5426] reboot: Restarting system
[2023-04-26 22:19:34.705] 
[2023-04-26 22:19:34.705] 
[2023-04-26 22:19:34.705] U-Boot 2017.07-tld-1 (Sep 05 2017 - 01:06:05 -0700)
[2023-04-26 22:19:34.705] Marvell-DreamPlug
[2023-04-26 22:19:34.705] 
[2023-04-26 22:19:34.705] SoC:   Kirkwood 88F6281_A1
[2023-04-26 22:19:34.705] SPI:   ready
[2023-04-26 22:19:34.705] DRAM:  512 MiB
[2023-04-26 22:19:34.705] WARNING: Caches not enabled
[2023-04-26 22:19:34.746] SF: Detected mx25l1605d with page size 256 Bytes, erase size 64 KiB, total 2 MiB
[2023-04-26 22:19:34.841] *** Warning - bad CRC, using default environment
[2023-04-26 22:19:34.841] 
[2023-04-26 22:19:34.954] In:    serial
[2023-04-26 22:19:34.954] Out:   serial
[2023-04-26 22:19:34.954] Err:   serial
[2023-04-26 22:19:34.977] Net:   egiga0, egiga1
[2023-04-26 22:19:34.977] 88E1116 Initialized on egiga0
[2023-04-26 22:19:34.977] 88E1116 Initialized on egiga1
[2023-04-26 22:19:34.977] Hit any key to stop autoboot: 10  9  8  7  0 
[2023-04-26 22:19:38.865] Dreamplug> 
[2023-04-26 22:19:40.496] Dreamplug> 
[2023-04-26 22:19:52.190] Dreamplug> 
[2023-04-26 22:19:52.398] Dreamplug> 
[2023-04-26 22:19:52.590] Dreamplug> reset
[2023-04-26 22:19:54.638] resetting ...
[2023-04-26 22:19:55.296] 
[2023-04-26 22:19:55.296] 
[2023-04-26 22:19:55.296] U-Boot 2017.07-tld-1 (Sep 05 2017 - 01:06:05 -0700)
[2023-04-26 22:19:55.296] Marvell-DreamPlug
[2023-04-26 22:19:55.296] 
[2023-04-26 22:19:55.296] SoC:   Kirkwood 88F6281_A1
[2023-04-26 22:19:55.296] SPI:   ready
[2023-04-26 22:19:55.296] DRAM:  512 MiB
[2023-04-26 22:19:55.296] WARNING: Caches not enabled
[2023-04-26 22:19:55.337] SF: Detected mx25l1605d with page size 256 Bytes, erase size 64 KiB, total 2 MiB
[2023-04-26 22:19:55.432] *** Warning - bad CRC, using default environment
[2023-04-26 22:19:55.432] 
[2023-04-26 22:19:55.545] In:    serial
[2023-04-26 22:19:55.545] Out:   serial
[2023-04-26 22:19:55.545] Err:   serial
[2023-04-26 22:19:55.569] Net:   egiga0, egiga1
[2023-04-26 22:19:55.569] 88E1116 Initialized on egiga0
[2023-04-26 22:19:55.569] 88E1116 Initialized on egiga1
[2023-04-26 22:19:55.569] Hit any key to stop autoboot: 10  9  8  7  6  5  4  3  2  1  0 
[2023-04-26 22:20:05.594] starting USB...
[2023-04-26 22:20:05.594] USB0:   USB EHCI 1.00
[2023-04-26 22:20:05.594] scanning bus 0 for devices... ERROR: Invalid USB EP length (9)
[2023-04-26 22:20:05.994] ERROR: Invalid USB EP length (9)
[2023-04-26 22:20:07.169] 7 USB Device(s) found
[2023-04-26 22:20:07.169]        scanning usb for storage devices... 
[2023-04-26 22:20:07.186] Use USB retry period from the environment: 15 second(s)
[2023-04-26 22:20:07.250] 
[2023-04-26 22:20:07.250] Use USB retry period from the environment: 15 second(s)
[2023-04-26 22:20:07.618] 
[2023-04-26 22:20:07.618] Use USB retry period from the environment: 15 second(s)
[2023-04-26 22:20:07.649] Device NOT ready
[2023-04-26 22:20:07.671]    Request Sense returned 02 3A 00
[2023-04-26 22:20:07.671] 2 Storage Device(s) found
[2023-04-26 22:20:07.671] 
[2023-04-26 22:20:07.671] Reset IDE: ide_preinit failed
[2023-04-26 22:20:07.701] 
[2023-04-26 22:20:07.701] Partition Map for USB device 0  --   Partition Type: EFI
[2023-04-26 22:20:07.701] 
[2023-04-26 22:20:07.762] Part	Start LBA	End LBA		Name
[2023-04-26 22:20:07.762] 	Attributes
[2023-04-26 22:20:07.762] 	Type GUID
[2023-04-26 22:20:07.762] 	Partition GUID
[2023-04-26 22:20:07.762]   1	0x00000800	0x00ee8bc0	""
[2023-04-26 22:20:07.762] 	attrs:	0x0000000000000000
[2023-04-26 22:20:07.762] 	type:	0fc63daf-8483-4772-8e79-3d69d8477de4
[2023-04-26 22:20:07.762] 	type:	linux
[2023-04-26 22:20:07.762] 	guid:	572a91b1-6868-ff49-97e8-8af4da83620c
[2023-04-26 22:20:07.762] 
[2023-04-26 22:20:07.762] 
[2023-04-26 22:20:07.762] Partition Map for USB device 1  --   Partition Type: DOS
[2023-04-26 22:20:07.762] 
[2023-04-26 22:20:07.762] Part	Start Sector	Num Sectors	UUID		Type
[2023-04-26 22:20:07.807]   1	2048      	204800    	a3a5d034-01	83
[2023-04-26 22:20:07.807]   2	206848    	6291456   	a3a5d034-02	83
[2023-04-26 22:20:07.807]   3	6498304   	1246208   	a3a5d034-03	0b
[2023-04-26 22:20:07.807] 
[2023-04-26 22:20:07.807] ## Unknown partition table type 0
[2023-04-26 22:20:07.807] 
[2023-04-26 22:20:07.807] ## Unknown partition table type 0
[2023-04-26 22:20:07.807] 
[2023-04-26 22:20:07.807] ## Unknown partition table type 0
[2023-04-26 22:20:07.807] 
[2023-04-26 22:20:07.807] ## Unknown partition table type 0
[2023-04-26 22:20:07.807] 
[2023-04-26 22:20:07.807] ## Unknown partition table type 0
[2023-04-26 22:20:07.807] loading envs from usb 0 ...
[2023-04-26 22:20:09.214] ** File not found /boot/uEnv.txt **
[2023-04-26 22:20:09.239] 
[2023-04-26 22:20:09.239] no IDE devices available
[2023-04-26 22:20:09.239] running scan_disk ...
[2023-04-26 22:20:09.239] Scan device usb
[2023-04-26 22:20:09.239] device usb 0:1
[2023-04-26 22:20:09.896] 1 bytes read in 569 ms (0 Bytes/s)
[2023-04-26 22:20:09.912] Found bootable drive on usb 0
[2023-04-26 22:20:09.912] loading uImage ...
[2023-04-26 22:20:10.919] 5435888 bytes read in 919 ms (5.6 MiB/s)
[2023-04-26 22:20:10.936] loading uInitrd ...
[2023-04-26 22:20:11.950] 9671091 bytes read in 911 ms (10.1 MiB/s)
[2023-04-26 22:20:11.950] loading DTB /boot/dts/kirkwood-dreamplug.dtb ...
[2023-04-26 22:20:14.459] 9961 bytes read in 2383 ms (3.9 KiB/s)
[2023-04-26 22:20:14.459] ## Booting kernel from Legacy Image at 00800000 ...
[2023-04-26 22:20:14.459]    Image Name:   Linux-5.13.6-kirkwood-tld-1
[2023-04-26 22:20:14.459]    Created:      2021-09-24   0:22:58 UTC
[2023-04-26 22:20:14.459]    Image Type:   ARM Linux Kernel Image (uncompressed)
[2023-04-26 22:20:14.459]    Data Size:    5435824 Bytes = 5.2 MiB
[2023-04-26 22:20:14.459]    Load Address: 00008000
[2023-04-26 22:20:14.459]    Entry Point:  00008000
[2023-04-26 22:20:14.459]    Verifying Checksum ... OK
[2023-04-26 22:20:14.779] ## Loading init Ramdisk from Legacy Image at 01100000 ...
[2023-04-26 22:20:14.821]    Image Name:   initramfs-5.13.6-kirkwood-tld-1
[2023-04-26 22:20:14.821]    Created:      2021-09-24   1:06:32 UTC
[2023-04-26 22:20:14.821]    Image Type:   ARM Linux RAMDisk Image (gzip compressed)
[2023-04-26 22:20:14.821]    Data Size:    9671027 Bytes = 9.2 MiB
[2023-04-26 22:20:14.821]    Load Address: 00000000
[2023-04-26 22:20:14.821]    Entry Point:  00000000
[2023-04-26 22:20:14.821]    Verifying Checksum ... OK
[2023-04-26 22:20:15.419] ## Flattened Device Tree blob at 01c00000
[2023-04-26 22:20:15.419]    Booting using the fdt blob at 0x1c00000
[2023-04-26 22:20:15.419]    Loading Kernel Image ... OK
[2023-04-26 22:20:15.482]    Loading Ramdisk to 0f6c6000, end 0ffff173 ... OK
[2023-04-26 22:20:16.186]    Loading Device Tree to 0f6c0000, end 0f6c56e8 ... OK
[2023-04-26 22:20:16.203] 
[2023-04-26 22:20:16.203] Starting kernel ...
[2023-04-26 22:20:16.203] 
[2023-04-26 22:20:16.265] Uncompressing Linux... done, booting the kernel.
[2023-04-26 22:20:28.535] [    0.000000][    T0] Booting Linux on physical CPU 0x0
[2023-04-26 22:20:28.899] [    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
[2023-04-26 22:20:28.899] [    0.000000][    T0] CPU: Feroceon 88FR131 [56251311] revision 1 (ARMv5TE), cr=0005397f
[2023-04-26 22:20:28.899] [    0.000000][    T0] CPU: VIVT data cache, VIVT instruction cache
[2023-04-26 22:20:28.899] [    0.000000][    T0] OF: fdt: Machine model: Globalscale Technologies Dreamplug
[2023-04-26 22:20:28.899] [    0.000000][    T0] Memory policy: Data cache writeback
[2023-04-26 22:20:28.899] [    0.000000][    T0] Zone ranges:
[2023-04-26 22:20:28.899] [    0.000000][    T0]   Normal   [mem 0x0000000000000000-0x000000001fffffff]
[2023-04-26 22:20:28.899] [    0.000000][    T0] Movable zone start for each node
[2023-04-26 22:20:28.899] [    0.000000][    T0] Early memory node ranges
[2023-04-26 22:20:28.899] [    0.000000][    T0]   node   0: [mem 0x0000000000000000-0x000000001fffffff]
[2023-04-26 22:20:28.899] [    0.000000][    T0] Initmem setup node 0 [mem 0x0000000000000000-0x000000001fffffff]
[2023-04-26 22:20:28.899] [    0.000000][    T0] Built 1 zonelists, mobility grouping on.  Total pages: 130048
[2023-04-26 22:20:28.899] [    0.000000][    T0] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=spi0.0:0x80000@0(u-boot),0x10000@0xC0000(u-boot-env),0x10000@0x100000(u-boot-env-stock),0x80000@0x180000(u-boot-stock)
[2023-04-26 22:20:28.916] [    0.000000][    T0] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes, linear)
[2023-04-26 22:20:28.916] [    0.000000][    T0] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes, linear)
[2023-04-26 22:20:28.916] [    0.000000][    T0] mem auto-init: stack:off, heap alloc:on, heap free:off
[2023-04-26 22:20:28.916] [    0.000000][    T0] Memory: 490964K/524288K available (11264K kernel code, 1553K rwdata, 4272K rodata, 1024K init, 309K bss, 33324K reserved, 0K cma-reserved)
[2023-04-26 22:20:28.916] [    0.000000][    T0] random: get_random_u32 called from ____cache_alloc+0x408/0x7b4 with crng_init=0
[2023-04-26 22:20:28.916] [    0.000000][    T0] trace event string verifier disabled
[2023-04-26 22:20:28.916] [    0.000000][    T0] rcu: Preemptible hierarchical RCU implementation.
[2023-04-26 22:20:28.916] [    0.000000][    T0] 	Trampoline variant of Tasks RCU enabled.
[2023-04-26 22:20:28.916] [    0.000000][    T0] 	Tracing variant of Tasks RCU enabled.
[2023-04-26 22:20:28.916] [    0.000000][    T0] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[2023-04-26 22:20:28.931] [    0.000000][    T0] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[2023-04-26 22:20:28.931] [    0.000000][    T0] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns
[2023-04-26 22:20:28.931] [    0.000002][    T0] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns
[2023-04-26 22:20:28.931] [    0.000058][    T0] Switching to timer-based delay loop, resolution 5ns
[2023-04-26 22:20:28.931] [    0.000936][    T0] Console: colour dummy device 80x30
[2023-04-26 22:20:28.931] [    0.001012][    T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=2000000)
[2023-04-26 22:20:28.931] [    0.001055][    T0] pid_max: default: 32768 minimum: 301
[2023-04-26 22:20:28.931] [    0.001467][    T0] LSM: Security Framework initializing
[2023-04-26 22:20:28.931] [    0.001650][    T0] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[2023-04-26 22:20:28.931] [    0.001698][    T0] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[2023-04-26 22:20:28.931] [    0.003160][    T0] CPU: Testing write buffer coherency: ok
[2023-04-26 22:20:28.934] [    0.005617][    T1] Setting up static identity map for 0x100000 - 0x100058
[2023-04-26 22:20:28.934] [    0.005921][    T1] mvebu-soc-id: MVEBU SoC ID=0x6281, Rev=0x3
[2023-04-26 22:20:28.934] [    0.006282][    T1] rcu: Hierarchical SRCU implementation.
[2023-04-26 22:20:28.934] [    0.007749][    T1] devtmpfs: initialized
[2023-04-26 22:20:28.934] [    0.013396][    T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[2023-04-26 22:20:28.934] [    0.013453][    T1] futex hash table entries: 256 (order: -1, 3072 bytes, linear)
[2023-04-26 22:20:28.934] [    0.050963][    T1] prandom32: self test passed (less than 6 bits correlated)
[2023-04-26 22:20:28.934] [    0.051008][    T1] prandom: seed boundary self test passed
[2023-04-26 22:20:28.934] [    0.055218][    T1] prandom: 100 self tests passed
[2023-04-26 22:20:28.934] [    0.055238][    T1] pinctrl core: initialized pinctrl subsystem
[2023-04-26 22:20:28.934] [    0.056886][    T1] NET: Registered protocol family 16
[2023-04-26 22:20:28.934] [    0.057736][    T1] DMA: preallocated 256 KiB pool for atomic coherent allocations
[2023-04-26 22:20:28.934] [    0.058754][    T1] audit: initializing netlink subsys (disabled)
[2023-04-26 22:20:29.245] [    0.060264][    T1] thermal_sys: Registered thermal governor 'step_wise'
[2023-04-26 22:20:29.245] [    0.060631][   T16] audit: type=2000 audit(0.050:1): state=initialized audit_enabled=0 res=1
[2023-04-26 22:20:29.245] [    0.060796][    T1] cpuidle: using governor ladder
[2023-04-26 22:20:29.245] [    0.060895][    T1] cpuidle: using governor menu
[2023-04-26 22:20:29.245] [    0.061414][    T1] Feroceon L2: Enabling L2
[2023-04-26 22:20:29.245] [    0.061469][    T1] Feroceon L2: Cache support initialised.
[2023-04-26 22:20:29.245] [    0.070885][    T1] No ATAGs?
[2023-04-26 22:20:29.245] [    2.560065][    C0] random: fast init done
[2023-04-26 22:20:29.245] [    4.958373][   T39] "cryptomgr_test" (39) uses obsolete ecb(arc4) skcipher
[2023-04-26 22:20:29.245] [    4.985034][   T59] wait_for_initramfs() called before rootfs_initcalls
[2023-04-26 22:20:29.245] [    5.180239][    T1] raid6: int32x8  gen()   108 MB/s
[2023-04-26 22:20:29.245] [    5.350116][    T1] raid6: int32x8  xor()    68 MB/s
[2023-04-26 22:20:29.245] [    5.520176][    T1] raid6: int32x4  gen()   109 MB/s
[2023-04-26 22:20:29.245] [    5.690232][    T1] raid6: int32x4  xor()    71 MB/s
[2023-04-26 22:20:29.245] [    5.860186][    T1] raid6: int32x2  gen()   140 MB/s
[2023-04-26 22:20:29.245] [    6.030183][    T1] raid6: int32x2  xor()    85 MB/s
[2023-04-26 22:20:29.245] [    6.200249][    T1] raid6: int32x1  gen()    99 MB/s
[2023-04-26 22:20:29.260] [    6.370155][    T1] raid6: int32x1  xor()    58 MB/s
[2023-04-26 22:20:29.260] [    6.370174][    T1] raid6: using algorithm int32x2 gen() 140 MB/s
[2023-04-26 22:20:29.260] [    6.370188][    T1] raid6: .... xor() 85 MB/s, rmw enabled
[2023-04-26 22:20:29.260] [    6.370201][    T1] raid6: using intx1 recovery algorithm
[2023-04-26 22:20:29.260] [    6.370496][    T1] vgaarb: loaded
[2023-04-26 22:20:29.260] [    6.371080][    T1] SCSI subsystem initialized
[2023-04-26 22:20:29.260] [    6.371645][    T1] usbcore: registered new interface driver usbfs
[2023-04-26 22:20:29.260] [    6.371721][    T1] usbcore: registered new interface driver hub
[2023-04-26 22:20:29.260] [    6.371782][    T1] usbcore: registered new device driver usb
[2023-04-26 22:20:29.260] [    6.372000][    T1] pps_core: LinuxPPS API ver. 1 registered
[2023-04-26 22:20:29.260] [    6.372018][    T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[2023-04-26 22:20:29.260] [    6.372054][    T1] PTP clock support registered
[2023-04-26 22:20:29.260] [    6.373971][    T1] clocksource: Switched to clocksource orion_clocksource
[2023-04-26 22:20:29.260] [    6.474679][    T1] VFS: Disk quotas dquot_6.6.0
[2023-04-26 22:20:29.260] [    6.474796][    T1] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[2023-04-26 22:20:29.277] [    6.493346][    T1] NET: Registered protocol family 2
[2023-04-26 22:20:29.277] [    6.493567][    T1] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
[2023-04-26 22:20:29.277] [    6.504427][    T1] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear)
[2023-04-26 22:20:29.277] [    6.504494][    T1] TCP established hash table entries: 4096 (order: 2, 16384 bytes, linear)
[2023-04-26 22:20:29.277] [    6.504572][    T1] TCP bind hash table entries: 4096 (order: 2, 16384 bytes, linear)
[2023-04-26 22:20:29.277] [    6.504634][    T1] TCP: Hash tables configured (established 4096 bind 4096)
[2023-04-26 22:20:29.277] [    6.504893][    T1] MPTCP token hash table entries: 512 (order: 0, 6144 bytes, linear)
[2023-04-26 22:20:29.277] [    6.504974][    T1] UDP hash table entries: 256 (order: 0, 4096 bytes, linear)
[2023-04-26 22:20:29.277] [    6.505015][    T1] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear)
[2023-04-26 22:20:29.277] [    6.505282][    T1] NET: Registered protocol family 1
[2023-04-26 22:20:29.277] [    6.506054][    T1] RPC: Registered named UNIX socket transport module.
[2023-04-26 22:20:29.277] [    6.506078][    T1] RPC: Registered udp transport module.
[2023-04-26 22:20:29.277] [    6.506091][    T1] RPC: Registered tcp transport module.
[2023-04-26 22:20:29.281] [    6.506103][    T1] RPC: Registered tcp NFSv4.1 backchannel transport module.
[2023-04-26 22:20:29.281] [    6.506121][    T1] PCI: CLS 0 bytes, default 32
[2023-04-26 22:20:29.281] [    6.506306][    T1] NetWinder Floating Point Emulator V0.97 (double precision)
[2023-04-26 22:20:29.281] [    6.506934][   T58] Trying to unpack rootfs image as initramfs...
[2023-04-26 22:20:29.281] [    8.251481][   T58] Freeing initrd memory: 9448K
[2023-04-26 22:20:29.281] [    8.873526][    T1] Initialise system trusted keyrings
[2023-04-26 22:20:29.281] [    8.873596][    T1] Key type blacklist registered
[2023-04-26 22:20:29.281] [    8.873871][    T1] workingset: timestamp_bits=30 max_order=17 bucket_order=0
[2023-04-26 22:20:29.281] [    8.874066][    T1] zbud: loaded
[2023-04-26 22:20:29.281] [    8.875629][    T1] NFS: Registering the id_resolver key type
[2023-04-26 22:20:29.281] [    8.875673][    T1] Key type id_resolver registered
[2023-04-26 22:20:29.281] [    8.875689][    T1] Key type id_legacy registered
[2023-04-26 22:20:29.281] [    8.875735][    T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[2023-04-26 22:20:29.281] [    8.875761][    T1] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[2023-04-26 22:20:29.529] [    8.875777][    T1] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[2023-04-26 22:20:29.529] [    8.876060][    T1] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[2023-04-26 22:20:29.529] [    8.876603][    T1] fuse: init (API version 7.34)
[2023-04-26 22:20:29.529] [    8.877027][    T1] orangefs_debugfs_init: called with debug mask: :none: :0:
[2023-04-26 22:20:29.529] [    8.877259][    T1] orangefs_init: module version upstream loaded
[2023-04-26 22:20:29.529] [    8.877280][    T1] SGI XFS with ACLs, security attributes, realtime, scrub, quota, no debug enabled
[2023-04-26 22:20:29.529] [    8.979085][    T1] xor: measuring software checksum speed
[2023-04-26 22:20:29.529] [    8.988053][    T1]    arm4regs        :  1113 MB/sec
[2023-04-26 22:20:29.529] [    9.002870][    T1]    8regs           :   667 MB/sec
[2023-04-26 22:20:29.529] [    9.013066][    T1]    32regs          :   971 MB/sec
[2023-04-26 22:20:29.529] [    9.013085][    T1] xor: using function: arm4regs (1113 MB/sec)
[2023-04-26 22:20:29.529] [    9.013109][    T1] async_tx: api initialized (async)
[2023-04-26 22:20:29.529] [    9.013129][    T1] Key type asymmetric registered
[2023-04-26 22:20:29.529] [    9.013144][    T1] Asymmetric key parser 'x509' registered
[2023-04-26 22:20:29.546] [    9.013209][    T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[2023-04-26 22:20:29.546] [    9.013290][    T1] io scheduler bfq registered
[2023-04-26 22:20:29.546] [    9.212959][    T1] kirkwood-pinctrl f1010000.pin-controller: registered pinctrl driver
[2023-04-26 22:20:29.546] [    9.215346][    T1] mv_xor f1060800.xor: Marvell shared XOR driver
[2023-04-26 22:20:29.546] [    9.275085][    T1] mv_xor f1060800.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[2023-04-26 22:20:29.546] [    9.277769][    T1] mv_xor f1060900.xor: Marvell shared XOR driver
[2023-04-26 22:20:29.546] [    9.335076][    T1] mv_xor f1060900.xor: Marvell XOR (Registers Mode): ( xor cpy intr )
[2023-04-26 22:20:29.546] [    9.337966][    T1] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
[2023-04-26 22:20:29.546] [    9.339403][    T1] printk: console [ttyS0] disabled
[2023-04-26 22:20:29.546] [    9.339507][    T1] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 26, base_baud = 12500000) is a 16550A
[2023-04-26 22:20:29.546] [   10.197118][    T1] printk: console [ttyS0] enabled
[2023-04-26 22:20:29.546] [   10.211134][    T1] loop: module loaded
[2023-04-26 22:20:29.546] [   10.215697][    T1] sata_mv f1080000.sata: slots 32 ports 1
[2023-04-26 22:20:29.546] [   10.223567][    T1] scsi host0: sata_mv
[2023-04-26 22:20:29.549] [   10.227819][    T1] ata1: SATA max UDMA/133 irq 33
[2023-04-26 22:20:29.549] [   10.234498][    T1] spi-nor spi0.0: mx25l1606e (2048 Kbytes)
[2023-04-26 22:20:29.549] [   10.240233][    T1] 4 cmdlinepart partitions found on MTD device spi0.0
[2023-04-26 22:20:29.549] [   10.246941][    T1] Creating 4 MTD partitions on "spi0.0":
[2023-04-26 22:20:29.549] [   10.252467][    T1] 0x000000000000-0x000000080000 : "u-boot"
[2023-04-26 22:20:29.549] [   10.259809][    T1] 0x0000000c0000-0x0000000d0000 : "u-boot-env"
[2023-04-26 22:20:29.549] [   10.267357][    T1] 0x000000100000-0x000000110000 : "u-boot-env-stock"
[2023-04-26 22:20:29.549] [   10.275408][    T1] 0x000000180000-0x000000200000 : "u-boot-stock"
[2023-04-26 22:20:29.549] [   10.283528][    T1] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
[2023-04-26 22:20:29.549] [   10.292194][    T1] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
[2023-04-26 22:20:29.549] [   10.303781][    T1] libphy: Fixed MDIO Bus: probed
[2023-04-26 22:20:29.549] [   10.310189][    T1] libphy: orion_mdio_bus: probed
[2023-04-26 22:20:29.620] [   10.346537][    T1] mv643xx_eth: MV-643xx 10/100/1000 ethernet driver version 1.4
[2023-04-26 22:20:29.620] [   10.357014][    T1] mv643xx_eth_port mv643xx_eth_port.0 eth0: port 0 with MAC address b6:d0:5e:0f:a1:17
[2023-04-26 22:20:29.620] [   10.368115][    T1] mv643xx_eth_port mv643xx_eth_port.1 eth1: port 0 with MAC address 7e:16:30:7e:c8:ac
[2023-04-26 22:20:29.620] [   10.377807][    T1] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[2023-04-26 22:20:29.620] [   10.385134][    T1] ehci-pci: EHCI PCI platform driver
[2023-04-26 22:20:29.620] [   10.390359][    T1] ehci-orion: EHCI orion driver
[2023-04-26 22:20:29.620] [   10.395320][    T1] orion-ehci f1050000.ehci: EHCI Host Controller
[2023-04-26 22:20:29.620] [   10.401567][    T1] orion-ehci f1050000.ehci: new USB bus registered, assigned bus number 1
[2023-04-26 22:20:29.620] [   10.410200][    T1] orion-ehci f1050000.ehci: irq 30, io mem 0xf1050000
[2023-04-26 22:20:29.888] [   10.444036][    T1] orion-ehci f1050000.ehci: USB 2.0 started, EHCI 1.00
[2023-04-26 22:20:29.888] [   10.451121][    T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.13
[2023-04-26 22:20:29.888] [   10.460190][    T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[2023-04-26 22:20:29.888] [   10.468196][    T1] usb usb1: Product: EHCI Host Controller
[2023-04-26 22:20:29.888] [   10.473832][    T1] usb usb1: Manufacturer: Linux 5.13.6-kirkwood-tld-1 ehci_hcd
[2023-04-26 22:20:29.888] [   10.481307][    T1] usb usb1: SerialNumber: f1050000.ehci
[2023-04-26 22:20:29.888] [   10.487509][    T1] hub 1-0:1.0: USB hub found
[2023-04-26 22:20:29.888] [   10.492066][    T1] hub 1-0:1.0: 1 port detected
[2023-04-26 22:20:29.888] [   10.497654][    T1] usbcore: registered new interface driver usb-storage
[2023-04-26 22:20:29.888] [   10.504882][    T1] mousedev: PS/2 mouse device common for all mice
[2023-04-26 22:20:29.888] [   10.512285][    T1] rtc-mv f1010300.rtc: registered as rtc0
[2023-04-26 22:20:29.888] [   10.518015][    T1] rtc-mv f1010300.rtc: setting system clock to 2000-01-01T04:41:12 UTC (946701672)
[2023-04-26 22:20:29.888] [   10.527556][    T1] i2c /dev entries driver
[2023-04-26 22:20:29.888] [   10.532495][    T1] device-mapper: uevent: version 1.0.3
[2023-04-26 22:20:29.888] [   10.538211][    T1] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[2023-04-26 22:20:29.904] [   10.547926][    T1] device-mapper: multipath round-robin: version 1.2.0 loaded
[2023-04-26 22:20:29.904] [   10.555253][   T94] ata1: SATA link down (SStatus 0 SControl F300)
[2023-04-26 22:20:29.904] [   10.561558][    T1] device-mapper: multipath queue-length: version 0.2.0 loaded
[2023-04-26 22:20:29.904] [   10.568947][    T1] device-mapper: multipath service-time: version 0.3.0 loaded
[2023-04-26 22:20:29.904] [   10.576415][    T1] device-mapper: dm-log-userspace: version 1.3.0 loaded
[2023-04-26 22:20:29.904] [   10.583241][    T1] device-mapper: raid: Loading target version 1.15.1
[2023-04-26 22:20:29.904] [   10.591582][    T1] hid: raw HID events driver (C) Jiri Kosina
[2023-04-26 22:20:29.904] [   10.597954][    T1] drop_monitor: Initializing network drop monitor service
[2023-04-26 22:20:29.904] [   10.605502][    T1] NET: Registered protocol family 10
[2023-04-26 22:20:29.904] [   10.612229][    T1] Segment Routing with IPv6
[2023-04-26 22:20:29.904] [   10.616720][    T1] RPL Segment Routing with IPv6
[2023-04-26 22:20:29.904] [   10.621549][    T1] NET: Registered protocol family 17
[2023-04-26 22:20:29.904] [   10.627009][    T1] Key type dns_resolver registered
[2023-04-26 22:20:29.904] [   10.632595][    T1] registered taskstats version 1
[2023-04-26 22:20:29.906] [   10.637652][    T1] Loading compiled-in X.509 certificates
[2023-04-26 22:20:29.906] [   10.643613][    T1] zswap: loaded using pool lzo/zbud
[2023-04-26 22:20:29.906] [   10.649136][    T1] Key type ._fscrypt registered
[2023-04-26 22:20:29.906] [   10.653872][    T1] Key type .fscrypt registered
[2023-04-26 22:20:29.906] [   10.658585][    T1] Key type fscrypt-provisioning registered
[2023-04-26 22:20:29.906] [   10.666568][    T1] Key type big_key registered
[2023-04-26 22:20:29.922] [   10.702047][    T1] Key type encrypted registered
[2023-04-26 22:20:29.922] [   10.713310][    T1] Freeing unused kernel memory: 1024K
[2023-04-26 22:20:29.949] [   10.734862][    T1] Checked W+X mappings: passed, no W+X pages found
[2023-04-26 22:20:29.949] [   10.741279][    T1] Run /init as init process
[2023-04-26 22:20:29.981] [   10.784098][  T103] usb 1-1: new high-speed USB device number 2 using orion-ehci
[2023-04-26 22:20:30.007] Loading, please wait...
[2023-04-26 22:20:30.087] Starting version 247.3-6
[2023-04-26 22:20:30.220] [   10.994829][  T103] usb 1-1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.11
[2023-04-26 22:20:30.220] [   11.003793][  T103] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[2023-04-26 22:20:30.236] [   11.034267][  T103] usb 1-1: Product: USB 2.0 Hub
[2023-04-26 22:20:30.264] [   11.044900][  T103] hub 1-1:1.0: USB hub found
[2023-04-26 22:20:30.264] [   11.054095][  T103] hub 1-1:1.0: 4 ports detected
[2023-04-26 22:20:30.717] [   11.504075][  T103] usb 1-1.1: new high-speed USB device number 3 using orion-ehci
[2023-04-26 22:20:31.012] [   11.764828][  T103] usb 1-1.1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.11
[2023-04-26 22:20:31.012] [   11.782891][  T103] usb 1-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[2023-04-26 22:20:31.012] [   11.799865][  T103] usb 1-1.1: Product: USB 2.0 Hub
[2023-04-26 22:20:31.012] [   11.811233][  T103] hub 1-1.1:1.0: USB hub found
[2023-04-26 22:20:31.029] [   11.821386][  T103] hub 1-1.1:1.0: 4 ports detected
[2023-04-26 22:20:31.221] [   12.024077][  T103] usb 1-1.3: new high-speed USB device number 4 using orion-ehci
[2023-04-26 22:20:31.544] [   12.285071][  T103] usb 1-1.3: New USB device found, idVendor=0781, idProduct=5530, bcdDevice= 1.26
[2023-04-26 22:20:31.544] [   12.294296][  T103] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[2023-04-26 22:20:31.544] [   12.302439][  T103] usb 1-1.3: Product: Cruzer
[2023-04-26 22:20:31.544] [   12.306994][  T103] usb 1-1.3: Manufacturer: SanDisk
[2023-04-26 22:20:31.544] [   12.312070][  T103] usb 1-1.3: SerialNumber: 20044528820A35408098
[2023-04-26 22:20:31.544] [   12.321431][  T103] usb-storage 1-1.3:1.0: USB Mass Storage device detected
[2023-04-26 22:20:31.544] [   12.331692][  T103] scsi host1: usb-storage 1-1.3:1.0
[2023-04-26 22:20:31.698] [   12.484008][   T17] usb 1-1.1.1: new high-speed USB device number 5 using orion-ehci
[2023-04-26 22:20:31.997] [   12.738070][   T17] usb 1-1.1.1: New USB device found, idVendor=05e3, idProduct=0723, bcdDevice=94.51
[2023-04-26 22:20:31.997] [   12.747446][   T17] usb 1-1.1.1: New USB device strings: Mfr=3, Product=4, SerialNumber=0
[2023-04-26 22:20:31.997] [   12.755768][   T17] usb 1-1.1.1: Product: USB Storage
[2023-04-26 22:20:31.997] [   12.760920][   T17] usb 1-1.1.1: Manufacturer: Generic 
[2023-04-26 22:20:31.997] [   12.769812][   T17] usb-storage 1-1.1.1:1.0: USB Mass Storage device detected
[2023-04-26 22:20:31.997] [   12.777626][   T17] usb-storage 1-1.1.1:1.0: Quirks match for vid 05e3 pid 0723: 8000
[2023-04-26 22:20:31.997] [   12.788165][   T17] scsi host2: usb-storage 1-1.1.1:1.0
[2023-04-26 22:20:32.148] [   12.934006][  T103] usb 1-1.4: new full-speed USB device number 6 using orion-ehci
[2023-04-26 22:20:32.422] [   13.186946][  T103] usb 1-1.4: New USB device found, idVendor=0d8c, idProduct=013c, bcdDevice= 1.00
[2023-04-26 22:20:32.422] [   13.196142][  T103] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[2023-04-26 22:20:32.422] [   13.204289][  T103] usb 1-1.4: Product: USB PnP Sound Device
[2023-04-26 22:20:32.422] [   13.210048][  T103] usb 1-1.4: Manufacturer: C-Media Electronics Inc.      
[2023-04-26 22:20:32.635] [   13.365060][    T7] scsi 1:0:0:0: Direct-Access     SanDisk  Cruzer           1.26 PQ: 0 ANSI: 5
[2023-04-26 22:20:32.635] [   13.383688][   T58] sd 1:0:0:0: [sda] 15633408 512-byte logical blocks: (8.00 GB/7.45 GiB)
[2023-04-26 22:20:32.635] [   13.392174][   T17] usb 1-1.1.2: new high-speed USB device number 7 using orion-ehci
[2023-04-26 22:20:32.635] [   13.408380][   T58] sd 1:0:0:0: [sda] Write Protect is off
[2023-04-26 22:20:32.635] [   13.419507][   T58] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[2023-04-26 22:20:32.668] [   13.468533][   T58]  sda: sda1
[2023-04-26 22:20:32.702] [   13.478380][   T58] sd 1:0:0:0: [sda] Attached SCSI removable disk
[2023-04-26 22:20:32.702] [   13.488696][  T143] usbcore: registered new interface driver uas
[2023-04-26 22:20:32.737] [   13.512981][  T136] input: C-Media Electronics Inc.       USB PnP Sound Device as /devices/platform/ocp@f1000000/f1050000.ehci/usb1/1-1/1-1.4/1-1.4:1.3/0003:0D8C:013C.0001/input/input0
[2023-04-26 22:20:32.800] [   13.586740][  T145] mmc0: new high speed SDIO card at address 0001
[2023-04-26 22:20:32.962] [   13.658201][   T17] usb 1-1.1.2: New USB device found, idVendor=05e3, idProduct=0723, bcdDevice=94.51
[2023-04-26 22:20:32.962] [   13.668149][  T136] hid-generic 0003:0D8C:013C.0001: input,hidraw0: USB HID v1.00 Device [C-Media Electronics Inc.       USB PnP Sound Device] on usb-f1050000.ehci-1.4/input3
[2023-04-26 22:20:32.962] [   13.683949][   T17] usb 1-1.1.2: New USB device strings: Mfr=3, Product=4, SerialNumber=0
[2023-04-26 22:20:32.962] [   13.692286][   T17] usb 1-1.1.2: Product: USB Storage
[2023-04-26 22:20:32.962] [   13.698634][   T17] usb 1-1.1.2: Manufacturer: Generic 
[2023-04-26 22:20:32.962] [   13.710712][  T136] usbcore: registered new interface driver usbhid
[2023-04-26 22:20:32.962] [   13.718456][   T17] usb-storage 1-1.1.2:1.0: USB Mass Storage device detected
[2023-04-26 22:20:32.962] [   13.728782][  T136] usbhid: USB HID core driver
[2023-04-26 22:20:32.962] [   13.736168][   T17] usb-storage 1-1.1.2:1.0: Quirks match for vid 05e3 pid 0723: 8000
[2023-04-26 22:20:32.962] [   13.752486][   T17] scsi host3: usb-storage 1-1.1.2:1.0
[2023-04-26 22:20:33.042] [   13.845976][    T7] scsi 2:0:0:0: Direct-Access     Generic  STORAGE DEVICE   9451 PQ: 0 ANSI: 0
[2023-04-26 22:20:33.159] Begin: Loading essential drivers ... done.
[2023-04-26 22:20:33.206] [   14.011374][   T58] sd 2:0:0:0: [sdb] 7744512 512-byte logical blocks: (3.97 GB/3.69 GiB)
[2023-04-26 22:20:33.246] [   14.020729][   T58] sd 2:0:0:0: [sdb] Write Protect is off
[2023-04-26 22:20:33.246] [   14.027358][   T58] sd 2:0:0:0: [sdb] No Caching mode page found
[2023-04-26 22:20:33.246] [   14.033424][   T58] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[2023-04-26 22:20:33.262] [   14.057504][   T58]  sdb: sdb1 sdb2 sdb3
[2023-04-26 22:20:33.292] [   14.078255][   T58] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[2023-04-26 22:20:34.035] [   14.805673][   T58] scsi 3:0:0:0: Direct-Access     Generic  STORAGE DEVICE   9451 PQ: 0 ANSI: 0
[2023-04-26 22:20:34.035] [   14.823130][  T157] sd 3:0:0:0: [sdc] Attached SCSI removable disk
[2023-04-26 22:20:43.188] Begin: Running /scripts/init-premount ... done.
[2023-04-26 22:20:43.188] Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
[2023-04-26 22:20:43.188] Begin: Running /scripts/local-premount ... done.
[2023-04-26 22:20:43.252] Begin: Will now check root file system ... fsck from util-linux 2.36.1
[2023-04-26 22:20:43.369] [/sbin/fsck.ext3 (1) -- /dev/sda1] fsck.ext3 -a -C0 /dev/sda1 
[2023-04-26 22:20:43.402] rootfs: clean, 15675/488640 files, 250706/1953912 blocks
[2023-04-26 22:20:43.434] done.
[2023-04-26 22:20:43.434] [   24.240039][  T175] EXT4-fs (sda1): mounting ext3 file system using the ext4 subsystem
[2023-04-26 22:20:43.556] [   24.342519][  T175] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[2023-04-26 22:20:43.557] done.
[2023-04-26 22:20:43.589] Begin: Running /scripts/local-bottom ... done.
[2023-04-26 22:20:43.605] Begin: Running /scripts/init-bottom ... done.
[2023-04-26 22:20:43.988] INIT: version 2.96 booting
[2023-04-26 22:20:44.197] Using makefile-style concurrent boot in runlevel S.
[2023-04-26 22:20:44.309] Setting hostname to 'debian'...done.
[2023-04-26 22:20:45.204] Starting hotplug events dispatcher: systemd-udevd.
[2023-04-26 22:20:45.445] Synthesizing the initial hotplug events (subsystems)...done.
[2023-04-26 22:20:45.605] Synthesizing the initial hotplug events (devices)...done.
[2023-04-26 22:20:46.261] Waiting for /dev to be fully populated...[   27.314073][    C0] random: crng init done
[2023-04-26 22:20:46.691] [   27.482869][  T361] orion_wdt: Initial timeout 21 sec
[2023-04-26 22:20:47.277] [   28.063203][  T367] marvell-cesa f1030000.crypto: CESA device successfully registered
[2023-04-26 22:20:47.385] [   28.168946][  T361] sd 1:0:0:0: Attached scsi generic sg0 type 0
[2023-04-26 22:20:47.411] [   28.185649][  T361] sd 2:0:0:0: Attached scsi generic sg1 type 0
[2023-04-26 22:20:47.441] [   28.237564][  T363] mc: Linux media interface: v0.10
[2023-04-26 22:20:47.479] [   28.266200][  T361] sd 3:0:0:0: Attached scsi generic sg2 type 0
[2023-04-26 22:20:47.735] [   28.520992][  T363] usbcore: registered new interface driver snd-usb-audio
[2023-04-26 22:20:48.198] [   29.004740][  T361] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[2023-04-26 22:20:48.363] [   29.168163][  T365] Bluetooth: Core ver 2.22
[2023-04-26 22:20:48.476] [   29.269464][  T365] NET: Registered protocol family 31
[2023-04-26 22:20:48.567] [   29.352782][  T365] Bluetooth: HCI device and connection manager initialized
[2023-04-26 22:20:48.653] [   29.439798][  T365] Bluetooth: HCI socket layer initialized
[2023-04-26 22:20:48.734] [   29.514136][  T365] Bluetooth: L2CAP socket layer initialized
[2023-04-26 22:20:48.734] [   29.519963][  T365] Bluetooth: SCO socket layer initialized
[2023-04-26 22:20:48.891] [   29.675023][  T366] Bluetooth: vendor=0x2df, device=0x911a, class=255, fn=2
[2023-04-26 22:20:49.081] [   29.884268][  T366] btmrvl_sdio mmc0:0001:2: Direct firmware load for mrvl/sd8787_uapsta.bin failed with error -2
[2023-04-26 22:20:49.172] [   29.957637][  T366] Bluetooth: request_firmware(firmware) failed, error code = -2
[2023-04-26 22:20:49.188] [   29.990518][  T361] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[2023-04-26 22:20:49.214] [   30.002492][  T366] Bluetooth: Failed to download firmware!
[2023-04-26 22:20:49.214] [   30.018620][  T145] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[2023-04-26 22:20:49.264] [   30.036227][  T366] Bluetooth: Downloading firmware failed!
[2023-04-26 22:20:49.264] [   30.042010][  T145] cfg80211: failed to load regulatory.db
[2023-04-26 22:20:49.264] [   30.053106][  T366] Bluetooth: vendor=0x2df, device=0x911b, class=255, fn=3
[2023-04-26 22:20:49.280] [   30.086217][   T17] mwifiex_sdio mmc0:0001:1: Direct firmware load for mrvl/sd8787_uapsta.bin failed with error -2
[2023-04-26 22:20:49.334] [   30.109441][   T17] mwifiex_sdio mmc0:0001:1: Failed to get firmware mrvl/sd8787_uapsta.bin
[2023-04-26 22:20:49.334] [   30.118035][   T17] mwifiex_sdio mmc0:0001:1: info: _mwifiex_fw_dpc: unregister device
[2023-04-26 22:20:49.410] [   30.174122][  T366] btmrvl_sdio mmc0:0001:3: Direct firmware load for mrvl/sd8787_uapsta.bin failed with error -2
[2023-04-26 22:20:49.410] [   30.184591][  T366] Bluetooth: request_firmware(firmware) failed, error code = -2
[2023-04-26 22:20:49.410] [   30.192216][  T366] Bluetooth: Failed to download firmware!
[2023-04-26 22:20:49.410] [   30.197941][  T366] Bluetooth: Downloading firmware failed!
[2023-04-26 22:20:49.427] done.
[2023-04-26 22:20:49.922] Activating swap:.
[2023-04-26 22:20:50.076] [   30.861560][  T522] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro. Quota mode: none.
[2023-04-26 22:20:51.036] Will now check all file systems.
[2023-04-26 22:20:51.051] Checking all file systems.
[2023-04-26 22:20:51.068] LABEL=rootfs is mounted
[2023-04-26 22:20:51.084] Done checking file systems.
[2023-04-26 22:20:51.122] Log is being saved in /var/log/fsck/checkfs if that location is writable.
[2023-04-26 22:20:51.331] Cleaning up temporary files...Cleaning /tmp...done.
[2023-04-26 22:20:51.331]  /tmp.
[2023-04-26 22:20:52.061] Will now mount local filesystems:.
[2023-04-26 22:20:52.061] Will now activate swapfile swap, if any:done.
[2023-04-26 22:20:52.061] Checking minimum space in /tmp...done.
[2023-04-26 22:20:52.108] Cleaning up temporary files....
[2023-04-26 22:20:52.269] Initializing random number generator...done.
[2023-04-26 22:20:52.285] Starting Setting kernel variables: sysctl.
[2023-04-26 22:20:55.339] [   36.143006][    C0] mv643xx_eth_port mv643xx_eth_port.0 eth0: link up, 1000 Mb/s, full duplex, flow control disabled
[2023-04-26 22:20:55.366] [   36.153661][   T17] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[2023-04-26 22:20:55.566] Configuring network interfaces...Internet Systems Consortium DHCP Client 4.4.1
[2023-04-26 22:20:55.566] Copyright 2004-2018 Internet Systems Consortium.
[2023-04-26 22:20:55.566] All rights reserved.
[2023-04-26 22:20:55.566] For info, please visit https://www.isc.org/software/dhcp/
[2023-04-26 22:20:55.566] 
[2023-04-26 22:20:55.566] Listening on LPF/eth0/b6:d0:5e:0f:a1:17
[2023-04-26 22:20:55.566] Sending on   LPF/eth0/b6:d0:5e:0f:a1:17
[2023-04-26 22:20:55.566] Sending on   Socket/fallback
[2023-04-26 22:20:55.566] DHCPREQUEST for 192.168.0.125 on eth0 to 255.255.255.255 port 67
[2023-04-26 22:20:57.530] DHCPREQUEST for 192.168.0.125 on eth0 to 255.255.255.255 port 67
[2023-04-26 22:20:57.530] DHCPACK of 192.168.0.125 from 192.168.0.1
[2023-04-26 22:20:57.530] bound to 192.168.0.125 -- renewal in 1379 seconds.
[2023-04-26 22:20:57.530] done.
[2023-04-26 22:20:57.882] Starting RPC port mapper daemon: rpcbind.
[2023-04-26 22:20:58.347] Starting NFS common utilities: statd idmapd.
[2023-04-26 22:20:58.459] Cleaning up temporary files....
[2023-04-26 22:20:58.523] INIT: Entering runlevel: 2
[2023-04-26 22:20:58.634] Using makefile-style concurrent boot in runlevel 2.
[2023-04-26 22:20:59.082] Starting busybox' syslogd implementation : syslogdStarting /sbin/syslogd...
[2023-04-26 22:20:59.103] 1073 (syslogd)
[2023-04-26 22:20:59.103] .
[2023-04-26 22:20:59.231] Starting NFS common utilities: statd idmapd.
[2023-04-26 22:20:59.583] Starting system message bus: dbus.
[2023-04-26 22:20:59.727] Starting Avahi mDNS/DNS-SD Daemon: avahi-daemon.
[2023-04-26 22:20:59.855] Not starting NFS kernel daemon: no exports. ... (warning).
[2023-04-26 22:21:00.255] Starting NTP server: ntpd.
[2023-04-26 22:21:00.415] Starting OpenBSD Secure Shell server: sshd.
[2023-04-26 22:21:01.430] Starting busybox' klogd implementation : klogdStarting /sbin/klogd...
[2023-04-26 22:21:01.430] 1114 (klogd)
[2023-04-26 22:21:01.430] .
[2023-04-26 22:21:01.445] Running local boot scripts (/etc/rc.local)
[2023-04-26 22:21:01.638] .
[2023-04-26 22:21:02.662] 
[2023-04-26 22:21:02.662] Debian GNU/Linux 11 debian ttyS0
[2023-04-26 22:21:02.662] 
[2023-04-26 22:21:02.662] debian login: root
[2023-04-26 22:21:06.133] Password: 
[2023-04-26 22:21:08.036] Linux debian 5.13.6-kirkwood-tld-1 #1.0 PREEMPT Sat Jul 31 22:10:39 PDT 2021 armv5tel
[2023-04-26 22:21:08.036] 
[2023-04-26 22:21:08.036] The programs included with the Debian GNU/Linux system are free software;
[2023-04-26 22:21:08.036] the exact distribution terms for each program are described in the
[2023-04-26 22:21:08.036] individual files in /usr/share/doc/*/copyright.
[2023-04-26 22:21:08.036] 
[2023-04-26 22:21:08.036] Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
[2023-04-26 22:21:08.036] permitted by applicable law.
[2023-04-26 22:21:08.036] Last login: Mon Apr 24 14:55:23 PDT 2023 on ttyS0
[2023-04-26 22:21:08.068] debian
[2023-04-26 22:21:08.099] 192.168.0.125
[2023-04-26 22:21:08.147] Globalscale Technologies Dreamplug
[2023-04-26 22:21:08.183] 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
[2023-04-26 22:21:08.183] Debian 11.0
[2023-04-26 22:21:08.199] Fri Dec 31 20:41:51 PST 1999 up 0 minutes
[2023-04-26 22:21:08.215] root@debian:~# 

Re: dreamplug
April 26, 2023 10:16PM
should the same usb stick boot from the other usb port as well? it just errors. and the esata port does nothing
when i plug a drive into it.
Re: dreamplug
April 26, 2023 10:37PM
[2023-04-26 22:19:55.296] U-Boot 2017.07-tld-1 (Sep 05 2017 - 01:06:05 -0700)
[2023-04-26 22:19:55.296] Marvell-DreamPlug
[2023-04-26 22:19:55.296] 
[2023-04-26 22:19:55.296] SoC:   Kirkwood 88F6281_A1
[2023-04-26 22:19:55.296] SPI:   ready
[2023-04-26 22:19:55.296] DRAM:  512 MiB
[2023-04-26 22:19:55.296] WARNING: Caches not enabled
[2023-04-26 22:19:55.337] SF: Detected mx25l1605d with page size 256 Bytes, erase size 64 KiB, total 2 MiB
[2023-04-26 22:19:55.432] *** Warning - bad CRC, using default environment
[2023-04-26 22:19:55.432]

The CRC error indicates that you might have not flashed the default envs in step 5.

Quote

5. Flash u-boot default envs to mtd1.

cd /tmp/sdc1/boot
flashcp -v uboot.2016.05-tld-1.environment.64K.img /dev/mtd1


Quote

should the same usb stick boot from the other usb port as well? it just errors. and the esata port does nothing
when i plug a drive into it.

Yes it should boot from other USB port. If there is "Kernel panic - ..... VFS .. rootfs mounting error" then check the USB rootfs partition label. It must be rootfs. The idea is that as long as only one USB rootfs is attached, and it is the first partition and labeled as rootfs, the u-boot and kernel willl find it successfully.

The eSATA port should work. Remember to connect power to the eSATA enclosure (most commonly mistake, this port has no power).

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

Subject:


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