Unfortunately I had a power cut and the GoFlex Home unit rebooted to a flashing green light, so I guess that is the end of the experiment. Now I'll have to break in and see if I can salvage anything.
↧
Re: How to unbrick GoFlex Home?
↧
Re: How to unbrick GoFlex Home?
Before breaking in, I thought I would try and reinstall Seagate original firmware - http://support.goflexhome.hipserv.com/en/reflash/index.html
What happens is that the flashing green light goes to steady and then starts flashing orange for 30secs and then goes back to steady green for 3osecs and this cycle goes on repeating itself ad infinitum. What could it be doing?
What happens is that the flashing green light goes to steady and then starts flashing orange for 30secs and then goes back to steady green for 3osecs and this cycle goes on repeating itself ad infinitum. What could it be doing?
↧
↧
Re: How to unbrick GoFlex Home?
balanga,
> Unfortunately I had a power cut and the GoFlex
> Home unit rebooted to a flashing green light, so I
> guess that is the end of the experiment.
You have flashed mtd0 succesfully, so the box is not bricked. Without mtd2, stock OS is not running.
Connect serial console and all will be OK. Once you have console, interrupt u-boot at count down and post back.
> Unfortunately I had a power cut and the GoFlex
> Home unit rebooted to a flashing green light, so I
> guess that is the end of the experiment.
You have flashed mtd0 succesfully, so the box is not bricked. Without mtd2, stock OS is not running.
Connect serial console and all will be OK. Once you have console, interrupt u-boot at count down and post back.
↧
Re: U-Boot 2015.10 for Iomega HMNHDCE
I think, I'm starting to understand...
There's no NAND flash on the Iomega Home Media CE (HMNHDCE). Everything (including U-boot) is written on the HDD. So if I understand it right, there's no need for MTD partitions support...
Description of the first 32MB of the HDD:
Here is the code to write everything needed to the first 32MB:
So how did DaveP do it with the new U-boot?
There's no NAND flash on the Iomega Home Media CE (HMNHDCE). Everything (including U-boot) is written on the HDD. So if I understand it right, there's no need for MTD partitions support...
Description of the first 32MB of the HDD:
start/sector size content 0 512 Legacy MBR 1 1536 GPT Partition table 34 8736 Stage-1 Bootloader 154 103552 U-Boot 558 At least 608 U-Boot environment 1290 2189216 uImage kernel 16674 2787216 uImage initrd 57080 5 0x69 0xD3 0xAB 0x52 0x31 unknown - not Serial number, not the MAC address, same on all devices 57088 4640 Stage-1 Bootloader (2nd copy) 57208 103568 U-Boot (2nd copy) 58344 2189216 uImage kernel (2nd copy)
Here is the code to write everything needed to the first 32MB:
dd if=bootrom.wrapped of=$1 bs=512 dd if=stage1.wrapped of=$1 seek=34 dd if=u-boot.sd.wrapped of=$1 seek=154 dd if=u-boot.sd.env of=$1 seek=558 dd if=uImage.wrapped of=$1 seek=1290 dd if=initrd.wrapped of=$1 seek=16674 dd if=serial.warpped of=$1 seek=57080 dd if=stage1.wrapped of=$1 seek=57088 dd if=u-boot.sd.wrapped of=$1 seek=57208 dd if=uImage.wrapped of=$1 seek=58344
So how did DaveP do it with the new U-boot?
↧
Re: How to unbrick GoFlex Home?
bodhi,
I'm not really sure what has happened but it seems to have booted up using Stock. I have been able to ping it and would be able to ssh but can't get past the password prompt - have tried all the methods I've used before. I can access it via the GUI and have had to re-register. Am reluctant to break in because I always break a clip or two, but I'll give it a try...
I'm not really sure what has happened but it seems to have booted up using Stock. I have been able to ping it and would be able to ssh but can't get past the password prompt - have tried all the methods I've used before. I can access it via the GUI and have had to re-register. Am reluctant to break in because I always break a clip or two, but I'll give it a try...
↧
↧
Re: How to unbrick GoFlex Home?
balanga Wrote:
-------------------------------------------------------
> bodhi,
>
> I'm not really sure what has happened but it seems
> to have booted up using Stock.
Cool! so the error on mtd2 was not that bad.
> I have been able to
> ping it and would be able to ssh but can't get
> past the password prompt - have tried all the
> methods I've used before. I can access it via the
> GUI and have had to re-register.
That's enough to restart.
> Am reluctant to
> break in because I always break a clip or two, but
> I'll give it a try...
Can you still activate SSH through the web page?
-------------------------------------------------------
> bodhi,
>
> I'm not really sure what has happened but it seems
> to have booted up using Stock.
Cool! so the error on mtd2 was not that bad.
> I have been able to
> ping it and would be able to ssh but can't get
> past the password prompt - have tried all the
> methods I've used before. I can access it via the
> GUI and have had to re-register.
That's enough to restart.
> Am reluctant to
> break in because I always break a clip or two, but
> I'll give it a try...
Can you still activate SSH through the web page?
↧
Re: U-Boot 2015.10 for Iomega HMNHDCE
mari8b Wrote:
-------------------------------------------------------
> I think, I'm starting to understand...
>
> There's no NAND flash on the Iomega Home Media CE
> (HMNHDCE). Everything (including U-boot) is
> written on the HDD. So if I understand it right,
> there's no need for MTD partitions support...
>
> Description of the first 32MB of the HDD:
>
> Here is the code to write everything needed to the
> first 32MB:
>
> So how did DaveP do it with the new U-boot?
My guess is DaveP flashed (using dd):
- SPL image to Stage-1 Bootloader
- new u-boot image to U-Boot
- new u-boot env image to U-Boot environment
But that is only an educated guess. That's what I would do if I have serial console and not afraid of bricking the box, and have cloned the HDD to another HDD as backup.
-------------------------------------------------------
> I think, I'm starting to understand...
>
> There's no NAND flash on the Iomega Home Media CE
> (HMNHDCE). Everything (including U-boot) is
> written on the HDD. So if I understand it right,
> there's no need for MTD partitions support...
>
> Description of the first 32MB of the HDD:
>
> start/sector size content > 0 512 Legacy MBR > 1 1536 GPT Partition table > 34 8736 Stage-1 Bootloader > 154 103552 U-Boot > 558 At least 608 U-Boot environment > 1290 2189216 uImage kernel > 16674 2787216 uImage initrd > 57080 5 0x69 0xD3 0xAB 0x52 0x31 > unknown - not Serial number, not the MAC > address, same on all devices > 57088 4640 Stage-1 Bootloader (2nd copy) > 57208 103568 U-Boot (2nd copy) > 58344 2189216 uImage kernel (2nd copy) > >>
> Here is the code to write everything needed to the
> first 32MB:
>
> dd if=bootrom.wrapped of=$1 bs=512 > dd if=stage1.wrapped of=$1 seek=34 > dd if=u-boot.sd.wrapped of=$1 seek=154 > dd if=u-boot.sd.env of=$1 seek=558 > dd if=uImage.wrapped of=$1 seek=1290 > dd if=initrd.wrapped of=$1 seek=16674 > dd if=serial.warpped of=$1 seek=57080 > dd if=stage1.wrapped of=$1 seek=57088 > dd if=u-boot.sd.wrapped of=$1 seek=57208 > dd if=uImage.wrapped of=$1 seek=58344 >>
> So how did DaveP do it with the new U-boot?
34 8736 Stage-1 Bootloader 154 103552 U-Boot 558 At least 608 U-Boot environment
My guess is DaveP flashed (using dd):
- SPL image to Stage-1 Bootloader
- new u-boot image to U-Boot
- new u-boot env image to U-Boot environment
But that is only an educated guess. That's what I would do if I have serial console and not afraid of bricking the box, and have cloned the HDD to another HDD as backup.
↧
Re: Restoring GoFlex Home Stock system
Another useful link is this:- https://archlinuxarm.org/forum/viewtopic.php?f=53&t=4334
which show how to bypass the registration process and reset root password when installing. I think it depends on a previous version of the firmware - goflex_2_7_1_firmware.zip which no longer seems to be available anywhere. If anyone does know where to find it, please let me know.
which show how to bypass the registration process and reset root password when installing. I think it depends on a previous version of the firmware - goflex_2_7_1_firmware.zip which no longer seems to be available anywhere. If anyone does know where to find it, please let me know.
↧
Re: Dell Wyse T10 / T50
> Linux variant of T50 has EOL a long time back and
> we don’t provide any kind of support. Also the
> T50 (and T series thinclients) were not using
> u-boot. They had W-boot (Wyse boot), our
> proprietary bios.
I think this is wrong. Unless I misread the log you've posted previously. It is apparently based on u-boot, therefore it cannot be proprietary.
The Wyse boxes that has AMD SoC uses BIOS. ARM boxes such as this one do not have BIOS.
https://forum.doozan.com/read.php?2,63499,64009#msg-64009
> we don’t provide any kind of support. Also the
> T50 (and T series thinclients) were not using
> u-boot. They had W-boot (Wyse boot), our
> proprietary bios.
I think this is wrong. Unless I misread the log you've posted previously. It is apparently based on u-boot, therefore it cannot be proprietary.
The Wyse boxes that has AMD SoC uses BIOS. ARM boxes such as this one do not have BIOS.
https://forum.doozan.com/read.php?2,63499,64009#msg-64009
↧
↧
Re: Dell Wyse T10 / T50
Koen,
By the way, let me emphasize this.
Meaning we don't need to find out more about the Dove SoC info. Everything was already in mainline Linux. Which I already pulled in by the DTS and DTB attached in this post:
https://forum.doozan.com/read.php?2,63499,64469#msg-64469
That attched DTB has everything we need. Except Ethernet. So the last piece of the puzzle is how to define Ethernet PHY. In your previous post, you mentioned a different LAN chip (not one internal to the Dove SoC itself). So I think the remaining investigation should be about Ethernet chip. IOW, why it is there? is it being used or the one internal to the SoC being used?....
By the way, let me emphasize this.
Quote
This SoC DTS tree has everything we need already (except Ethernet which might take some works). We just need to turn it on in the dove-wyse-t50.dts.
Meaning we don't need to find out more about the Dove SoC info. Everything was already in mainline Linux. Which I already pulled in by the DTS and DTB attached in this post:
https://forum.doozan.com/read.php?2,63499,64469#msg-64469
That attched DTB has everything we need. Except Ethernet. So the last piece of the puzzle is how to define Ethernet PHY. In your previous post, you mentioned a different LAN chip (not one internal to the Dove SoC itself). So I think the remaining investigation should be about Ethernet chip. IOW, why it is there? is it being used or the one internal to the SoC being used?....
↧
Re: LG N1T1 NAS
Hey,
Just wanted to say thankyou! I now have Debian 9.5 on my n1t1
Currently i am booting via serial each time the device starts, im a little confused about what i need to change to be able to dual boot both USB and HDD stock os?
Just wanted to say thankyou! I now have Debian 9.5 on my n1t1
_sudZUZ#Z#XZo=_ Hostname: debian _jmZZ2!!~---~!!X##wx OS: Debian 9.5 armv5tel .<wdP~~ -!YZL, Kernel: 4.17.2-kirkwood-tld-1 .mX2' _xaaa__ XZ[. Uptime: 1:06 oZ[ _jdXY!~?S#wa ]Xb; Shell: Bash _#e' .]X2( ~Xw| )XXc Terminal: Xterm-256color .2Z` ]X[. xY| ]oZ( Packages: 309 .2#; )3k; _s!~ jXf` CPU: CPU implementer : 0x56 1Z> -]Xb/ ~ __#2( RAM: -148 MB / 114 MB -Zo; +!4ZwerfgnZZXY' Disk: 944M / 7.4G *#[, ~-?!!!!!!-~ XUb;. )YXL,, +3#bc, -)SSL,, ~~~~~
Currently i am booting via serial each time the device starts, im a little confused about what i need to change to be able to dual boot both USB and HDD stock os?
↧
Re: U-Boot 2015.10 for Iomega HMNHDCE
bodhi Wrote:
> My guess is DaveP flashed (using dd):
>
> - SPL image to Stage-1 Bootloader
> - new u-boot image to U-Boot
> - new u-boot env image to U-Boot environment
>
> But that is only an educated guess. That's what I
> would do if I have serial console and not afraid
> of bricking the box, and have cloned the HDD to
> another HDD as backup.
It's not working...
New U-boot is too big. I really can't imagine how DaveP did it (if he did it).
I think the only way for a new Debian is to compile new kernel, that is small enough (max 2918400 bytes) for loading with current U-boot. I don't know if it's possible, I have no experience with that.
Here are scripts (settings, patches) from seidler2547, who did the first Debian kernel for HMNHDCE...
> My guess is DaveP flashed (using dd):
>
> - SPL image to Stage-1 Bootloader
> - new u-boot image to U-Boot
> - new u-boot env image to U-Boot environment
>
> But that is only an educated guess. That's what I
> would do if I have serial console and not afraid
> of bricking the box, and have cloned the HDD to
> another HDD as backup.
It's not working...
New U-boot is too big. I really can't imagine how DaveP did it (if he did it).
I think the only way for a new Debian is to compile new kernel, that is small enough (max 2918400 bytes) for loading with current U-boot. I don't know if it's possible, I have no experience with that.
Here are scripts (settings, patches) from seidler2547, who did the first Debian kernel for HMNHDCE...
↧
Re: Dell Wyse T10 / T50
Here is another DTB update. With lcd0, lcd1, and GPU enabled.
↧
↧
Re: LG N1T1 NAS
trx30,
> Just wanted to say thankyou! I now have Debian 9.5
> on my n1t1
Cool!
> Currently i am booting via serial each time the
> device starts, im a little confused about what i
> need to change to be able to dual boot both USB
> and HDD stock os?
You need to adjust u-boot envs to do that.
In Debian, get the output of
and post here.
> Just wanted to say thankyou! I now have Debian 9.5
> on my n1t1
Cool!
> Currently i am booting via serial each time the
> device starts, im a little confused about what i
> need to change to be able to dual boot both USB
> and HDD stock os?
You need to adjust u-boot envs to do that.
In Debian, get the output of
cat /etc/fw_env.config fw_printenv
and post here.
↧
Re: Help with Netgear Stora u-boot installation
Do not work!
printenv:
U-Boot 2017.07-tld-1 (Sep 05 2017 - 00:38:05 -0700) Netgear Stora MS2110 SoC: Kirkwood 88F6281_A0 DRAM: 128 MiB WARNING: Caches not enabled NAND: 256 MiB In: serial Out: serial Err: serial Net: egiga0 PHY reset timed out 88E1116 Initialized on egiga0 Hit any key to stop autoboot: 0 starting USB... USB0: USB EHCI 1.00 scanning bus 0 for devices... 2 USB Device(s) found scanning usb for storage devices... Use USB retry period from the environment: 15 second(s) 1 Storage Device(s) found Reset IDE: Bus 0: OK Bus 1: OK Device 0: Model: WDC WD5003ABYX-01WERA0 Firm: 01.01S01 Ser#: WD-WMAYP0860594 Type: Hard Disk Supports 48-bit addressing Capacity: 476938.9 MB = 465.7 GB (976771055 x 512) Device 1: Model: WDC WD5003ABYX-01WERA0 Firm: 01.01S01 Ser#: WD-WMAYP0856880 Type: Hard Disk Supports 48-bit addressing Capacity: 476938.9 MB = 465.7 GB (976771055 x 512) Unknown command 'mmc' - try 'help' Partition Map for USB device 0 -- Partition Type: DOS Part Start Sector Num Sectors UUID Type 1 2048 62940622 6f20736b-01 83 Boot ## Unknown partition table type 0 ## Unknown partition table type 0 ## Unknown partition table type 0 ## Unknown partition table type 0 ## Unknown partition table type 0 ## Unknown partition table type 0 loading envs from usb 0 ... ** File not found /boot/uEnv.txt ** Partition Map for IDE device 0 -- Partition Type: DOS Part Start Sector Num Sectors UUID Type 1 2048 976279552 00021091-01 83 Boot 2 976283646 485378 00021091-02 05 Extd 5 976283648 485376 00021091-05 82 Partition Map for IDE device 1 -- Partition Type: DOS Part Start Sector Num Sectors UUID Type 1 63 976768002 0000fe9e-01 fd Unknown command 'mmc' - try 'help' running scan_disk ... Scan device usb device usb 0:1 1 bytes read in 692 ms (0 Bytes/s) Found bootable drive on usb 0 loading uImage ... loading uInitrd ... loading DTB /boot/dts/kirkwood-netgear_stora_ms2000.dtb ... 11869 bytes read in 2615 ms (3.9 KiB/s) Wrong Image Format for bootm command ERROR: can't get kernel image! Netgear Stora>
printenv:
Netgear Stora> printenv arcNumber=2743 bootargs=console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 bootcmd=run bootcmd_uenv; run scan_disk; run set_bootargs; run bootcmd_exec bootcmd_exec=run load_uimage; if run load_initrd; then if run load_dtb; then bootm $load_uimage_addr $load_initrd_addr $load_dtb_addr; else bootm $load_uimage_addr $load_initrd_addr; fi; else if run load_dtb; then bootm $load_uimage_addr - $load_dtb_addr; else bootm $load_uimage_addr; fi; fi bootcmd_uenv=run uenv_load; if test $uenv_loaded -eq 1; then run uenv_import; fi; sleep 3 bootdelay=10 bootdev=usb device=0:1 devices=usb ide mmc disks=0 1 2 3 dtb_file=/boot/dts/kirkwood-netgear_stora_ms2000.dtb ethact=egiga0 ethaddr=00:26:f2:03:04:27 fileaddr=1c00000 filesize=2e5d if_netconsole=ping $serverip init_ide=ide reset init_mmc=mmc rescan init_usb=usb start ipaddr=192.168.7.199 led_error=orange blinking led_exit=green off led_init=green blinking load_dtb=echo loading DTB $dtb_file ...; load $bootdev $device $load_dtb_addr $dtb_file load_dtb_addr=0x1c00000 load_initrd=echo loading uInitrd ...; load $bootdev $device $load_initrd_addr /boot/uInitrd load_initrd_addr=0x1100000 load_uimage=echo loading uImage ...; load $bootdev $device $load_uimage_addr /boot/uImage load_uimage_addr=0x800000 mainlineLinux=yes mtdids=nand0=orion_nand partition=nand0,2 preboot_nc=run if_netconsole start_netconsole scan_disk=echo running scan_disk ...; scan_done=0; setenv scan_usb "usb start"; setenv scan_ide "ide reset"; setenv scan_mmc "mmc rescan"; for dev in $devices; do if test $scan_done -eq 0; then echo Scan device $dev; run scan_$dev; for disknum in $disks; do if test $scan_done -eq 0; then echo device $dev $disknum:1; if load $dev $disknum:1 $load_uimage_addr /boot/uImage 1; then scan_done=1; echo Found bootable drive on $dev $disknum; setenv device $disknum:1; setenv bootdev $dev; fi; fi; done; fi; done scan_ide=ide reset scan_mmc=mmc rescan scan_usb=usb start serverip=192.168.7.220 set_bootargs=setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 $mtdparts $custom_params start_netconsole=setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version; stderr=serial stdin=serial stdout=serial uenv_addr=0x810000 uenv_import=echo importing envs ...; env import -t $uenv_addr $filesize uenv_init_devices=setenv init_usb "usb start"; setenv init_ide "ide reset"; setenv init_mmc "mmc rescan"; for devtype in $devices; do run init_$devtype; done; uenv_load=run uenv_init_devices; setenv uenv_loaded 0; for devtype in $devices; do for disknum in 0; do run uenv_read_disk; done; done; uenv_loaded=0 uenv_read=echo loading envs from $devtype $disknum ...; if load $devtype $disknum:1 $uenv_addr /boot/uEnv.txt; then setenv uenv_loaded 1; fi uenv_read_disk=if test $devtype -eq mmc; then if $devtype part; then run uenv_read; fi; else if $devtype part $disknum; then run uenv_read; fi; fi usb_ready_retry=15 Environment size: 3035/131068 bytes Netgear Stora>
↧
Re: U-Boot 2015.10 for Iomega HMNHDCE
Here is how boot with direct SATA on Pogo Pro
https://forum.doozan.com/read.php?2,32994,33021#msg-33021
https://forum.doozan.com/read.php?2,32994,33021#msg-33021
↧
Re: Help with Netgear Stora u-boot installation
Copy /boot on TFTP-server
Scan device usb device usb 0:1 1 bytes read in 692 ms (0 Bytes/s) Found bootable drive on usb 0 loading uImage ... loading uInitrd ... loading DTB /boot/dts/kirkwood-netgear_stora_ms2000.dtb ... 11869 bytes read in 2614 ms (3.9 KiB/s) Wrong Image Format for bootm command ERROR: can't get kernel image! Netgear Stora> bootp BOOTP broadcast 1 BOOTP broadcast 2 BOOTP broadcast 3 BOOTP broadcast 4 BOOTP broadcast 5 BOOTP broadcast 6 BOOTP broadcast 7 *** Unhandled DHCP Option in OFFER/ACK: 44 *** Unhandled DHCP Option in OFFER/ACK: 252 *** Unhandled DHCP Option in OFFER/ACK: 44 *** Unhandled DHCP Option in OFFER/ACK: 252 DHCP client bound to address 192.168.7.105 (7787 ms) Using egiga0 device TFTP from server 192.168.7.220; our IP address is 192.168.7.105 Filename 'pxelinux.0'. Load address: 0x800000 Loading: ###### 1.9 MiB/s done Bytes transferred = 26442 (674a hex) Netgear Stora> tftpboot 0x800000 Stora/uImage Using egiga0 device TFTP from server 192.168.7.220; our IP address is 192.168.7.105 Filename 'Stora/uImage'. Load address: 0x800000 Loading: ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################ 3.2 MiB/s done Bytes transferred = 3821592 (3a5018 hex) Netgear Stora> tftpboot 0x1100000 Stora/uInitrd Using egiga0 device TFTP from server 192.168.7.220; our IP address is 192.168.7.105 Filename 'Stora/uInitrd'. Load address: 0x1100000 Loading: ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################### 3.2 MiB/s done Bytes transferred = 7245696 (6e8f80 hex) Netgear Stora> tftpboot 0x1c00000 Stora/kirkwood-netgear_stora_ms2000.dtb Using egiga0 device TFTP from server 192.168.7.220; our IP address is 192.168.7.105 Filename 'Stora/kirkwood-netgear_stora_ms2000.dtb'. Load address: 0x1c00000 Loading: ### 1.4 MiB/s done Bytes transferred = 11869 (2e5d hex) Netgear Stora> bootm 0x800000 0x1100000 0x1c00000 ## Booting kernel from Legacy Image at 00800000 ... Image Name: Linux-4.12.1-kirkwood-tld-1 Created: 2017-07-20 8:11:24 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 3821528 Bytes = 3.6 MiB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK ## Loading init Ramdisk from Legacy Image at 01100000 ... Image Name: initramfs-4.12.1-kirkwood-tld-1 Created: 2017-07-24 0:18:23 UTC Image Type: ARM Linux RAMDisk Image (gzip compressed) Data Size: 7245632 Bytes = 6.9 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 01c00000 Booting using the fdt blob at 0x1c00000 Loading Kernel Image ... OK Loading Ramdisk to 03917000, end 03ffff40 ... OK Loading Device Tree to 03911000, end 03916e5c ... OK Starting kernel ...Ok, but:
Warning: fsck not present, so skipping root file system [ 23.180468] EXT4-fs (sdc1): mounting ext3 file system using the ext4 subsystem [ 23.201924] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null) done. Begin: Running /scripts/local-bottom ... done. Begin: Running /scripts/init-bottom ... done. run-init: /sbin/init: No such file or directory Target filesystem doesn't have requested /sbin/init. run-init: /sbin/init: No such file or directory run-init: /etc/init: Permission denied run-init: /bin/init: No such file or directory run-init: /bin/sh: Permission denied run-init: : No such file or directory No init found. Try passing init= bootarg. BusyBox v1.22.1 (Debian 1:1.22.0-19+b3) built-in shell (ash) Enter 'help' for a list of built-in commands. (initramfs) [ 113.362847] random: crng init done (initramfs)
↧
↧
Re: Dell Wyse T10 / T50
bodhi Wrote:
-------------------------------------------------------
> > Linux variant of T50 has EOL a long time back
> and
> > we don’t provide any kind of support. Also
> the
> > T50 (and T series thinclients) were not using
> > u-boot. They had W-boot (Wyse boot), our
>
> > proprietary bios.
>
> I think this is wrong. Unless I misread the log
> you've posted previously. It is apparently based
> on u-boot, therefore it cannot be proprietary.
>
> The Wyse boxes that has AMD SoC uses BIOS. ARM
> boxes such as this one do not have BIOS.
>
> https://forum.doozan.com/read.php?2,63499,64009#msg-64009
Hi bodhi,
I agree and will write another reply to Dell but the legal person responding to my emails probably doesn't know this and just relays the message to the technical department.
I can only assume that since there is a separate ethernet PHY chip it is going to be used otherwise it would just be a waste of money.
I'll try your latest dtb file and will write the output from dmesg in the next message. Do I need to install Xorg and other graphics related stuff to see if the gpu works? And does it need different boot arguments or should I stick with the current ones?
Koen
-------------------------------------------------------
> > Linux variant of T50 has EOL a long time back
> and
> > we don’t provide any kind of support. Also
> the
> > T50 (and T series thinclients) were not using
> > u-boot. They had W-boot (Wyse boot), our
>
> > proprietary bios.
>
> I think this is wrong. Unless I misread the log
> you've posted previously. It is apparently based
> on u-boot, therefore it cannot be proprietary.
>
> The Wyse boxes that has AMD SoC uses BIOS. ARM
> boxes such as this one do not have BIOS.
>
> https://forum.doozan.com/read.php?2,63499,64009#msg-64009
Hi bodhi,
I agree and will write another reply to Dell but the legal person responding to my emails probably doesn't know this and just relays the message to the technical department.
I can only assume that since there is a separate ethernet PHY chip it is going to be used otherwise it would just be a waste of money.
I'll try your latest dtb file and will write the output from dmesg in the next message. Do I need to install Xorg and other graphics related stuff to see if the gpu works? And does it need different boot arguments or should I stick with the current ones?
Koen
↧
Re: Dell Wyse T10 / T50
dmesg output booting using the latest dove-wyse-t50.dtb file
root@debian:~# dmesg [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 4.12.4-mvebu-tld-1 (root@tldDebianVM) (gcc version 5.4.0 20160609 (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4) ) #1 SMP PREEMPT Sat Jul 29 21:56:37 PDT 2017 [ 0.000000] CPU: ARMv7 Processor [560f5815] revision 5 (ARMv7), cr=10c5387d [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache [ 0.000000] OF: fdt: Machine model: Dell Wyse T50 [ 0.000000] Memory policy: Data cache writeback [ 0.000000] On node 0 totalpages: 262144 [ 0.000000] free_area_init_node: node 0, pgdat c0d9d700, node_mem_map e6ff8000 [ 0.000000] Normal zone: 1264 pages used for memmap [ 0.000000] Normal zone: 0 pages reserved [ 0.000000] Normal zone: 161792 pages, LIFO batch:31 [ 0.000000] HighMem zone: 100352 pages, LIFO batch:31 [ 0.000000] CPU: All CPU(s) started in SVC mode. [ 0.000000] percpu: Embedded 17 pages/cpu @e6fd9000 s40460 r8192 d20980 u69632 [ 0.000000] pcpu-alloc: s40460 r8192 d20980 u69632 alloc=17*4096 [ 0.000000] pcpu-alloc: [0] 0 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 260880 [ 0.000000] Kernel command line: rootdelay=5 root=/dev/sdb1 pm_disable usb0Mode=host usb1Mode=host video=dovefb:lcd0:1024x600-16@60-edid,lcd1:1024x768-16@60-edid clcd.lcd0_enable=1 clcd.lcd1_enable=1 clcd.lcd0_clk=3 clcd.lcd1_clk=1 vmalloc=384M [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) [ 0.000000] Memory: 1017980K/1048576K available (8192K kernel code, 712K rwdata, 2080K rodata, 1024K init, 331K bss, 30596K reserved, 0K cma-reserved, 401408K highmem) [ 0.000000] Virtual kernel memory layout: vector : 0xffff0000 - 0xffff1000 ( 4 kB) fixmap : 0xffc00000 - 0xfff00000 (3072 kB) vmalloc : 0xe8000000 - 0xff800000 ( 376 MB) lowmem : 0xc0000000 - 0xe7800000 ( 632 MB) pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB) modules : 0xbf000000 - 0xbfe00000 ( 14 MB) .text : 0xc0008000 - 0xc0900000 (9184 kB) .init : 0xc0c00000 - 0xc0d00000 (1024 kB) .data : 0xc0d00000 - 0xc0db2308 ( 713 kB) .bss : 0xc0db9a84 - 0xc0e0ca58 ( 332 kB) [ 0.000000] Preemptible hierarchical RCU implementation. [ 0.000000] RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1. [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 [ 0.000000] NR_IRQS:16 nr_irqs:16 16 [ 0.000000] clocksource: orion_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 11467562657 ns [ 0.000007] sched_clock: 32 bits at 166MHz, resolution 6ns, wraps every 12884901885ns [ 0.000041] Switching to timer-based delay loop, resolution 6ns [ 0.000579] Console: colour dummy device 80x30 [ 0.001319] console [tty0] enabled [ 0.001362] Calibrating delay loop (skipped), value calculated using timer frequency.. 333.33 BogoMIPS (lpj=1666666) [ 0.001426] pid_max: default: 32768 minimum: 301 [ 0.001617] Security Framework initialized [ 0.001732] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes) [ 0.001776] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes) [ 0.002574] CPU: Testing write buffer coherency: ok [ 0.002930] CPU0: thread -1, cpu 0, socket -1, mpidr 0 [ 0.040179] Setting up static identity map for 0x100000 - 0x100060 [ 0.120088] smp: Bringing up secondary CPUs ... [ 0.120142] smp: Brought up 1 node, 1 CPU [ 0.120176] SMP: Total of 1 processors activated (333.33 BogoMIPS). [ 0.120210] CPU: All CPU(s) started in SVC mode. [ 0.121064] devtmpfs: initialized [ 0.130505] VFP support v0.3: implementor 56 architecture 2 part 20 variant 9 rev 5 [ 0.131082] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.131163] futex hash table entries: 256 (order: 2, 16384 bytes) [ 0.131452] prandom: seed boundary self test passed [ 0.134513] prandom: 100 self tests passed [ 0.134546] pinctrl core: initialized pinctrl subsystem [ 0.135640] NET: Registered protocol family 16 [ 0.136605] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.141188] cpuidle: using governor ladder [ 0.141286] cpuidle: using governor menu [ 0.141715] Dove 88AP510 SoC [ 0.141762] Tauros2: Disabling L2 prefetch. [ 0.141794] Tauros2: Disabling burst8 line fill. [ 0.141823] Tauros2: Enabling L2 cache. [ 0.141851] Tauros2: L2 cache support initialised in ARMv7 mode. [ 0.142242] hw-breakpoint: debug architecture 0x4 unsupported. [ 0.240623] vgaarb: loaded [ 0.240962] SCSI subsystem initialized [ 0.250155] libata version 3.00 loaded. [ 0.250406] usbcore: registered new interface driver usbfs [ 0.250498] usbcore: registered new interface driver hub [ 0.250576] usbcore: registered new device driver usb [ 0.250804] media: Linux media interface: v0.10 [ 0.250875] Linux video capture interface: v2.00 [ 0.260661] clocksource: Switched to clocksource orion_clocksource [ 0.335280] VFS: Disk quotas dquot_6.6.0 [ 0.335403] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 0.353946] NET: Registered protocol family 2 [ 0.355048] TCP established hash table entries: 8192 (order: 3, 32768 bytes) [ 0.355149] TCP bind hash table entries: 8192 (order: 4, 65536 bytes) [ 0.355258] TCP: Hash tables configured (established 8192 bind 8192) [ 0.355379] UDP hash table entries: 512 (order: 2, 16384 bytes) [ 0.355435] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) [ 0.355621] NET: Registered protocol family 1 [ 0.376264] RPC: Registered named UNIX socket transport module. [ 0.376309] RPC: Registered udp transport module. [ 0.376339] RPC: Registered tcp transport module. [ 0.376369] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.376406] PCI: CLS 0 bytes, default 64 [ 0.376593] Unpacking initramfs... [ 0.855515] Freeing initrd memory: 8072K [ 0.855989] NetWinder Floating Point Emulator V0.97 (double precision) [ 0.857718] audit: initializing netlink subsys (disabled) [ 0.858908] Initialise system trusted keyrings [ 0.858989] Key type blacklist registered [ 0.859102] audit: type=2000 audit(0.857:1): state=initialized audit_enabled=0 res=1 [ 0.859346] workingset: timestamp_bits=30 max_order=18 bucket_order=0 [ 0.859488] zbud: loaded [ 0.880848] NFS: Registering the id_resolver key type [ 0.880905] Key type id_resolver registered [ 0.880935] Key type id_legacy registered [ 0.880972] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 0.881006] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 0.881245] jffs2: version 2.2. (NAND) (SUMMARY) \xffffffc2\xffffffa9 2001-2006 Red Hat, Inc. [ 0.881756] orangefs_debugfs_init: called with debug mask: :none: :0: [ 0.882017] orangefs_init: module version upstream loaded [ 0.887305] Key type asymmetric registered [ 0.887344] Asymmetric key parser 'x509' registered [ 0.887431] bounce: pool size: 64 pages [ 0.887503] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248) [ 0.887554] io scheduler noop registered [ 0.887583] io scheduler deadline registered [ 0.887660] io scheduler cfq registered (default) [ 0.888418] dove-pinctrl f10d0200.pin-ctrl: falling back to hardcoded PMU resource [ 0.888588] dove-pinctrl f10d0200.pin-ctrl: [Firmware Bug]: Missing pinctrl regs in DTB. Please update your firmware. [ 0.889321] dove-pinctrl f10d0200.pin-ctrl: registered pinctrl driver [ 0.893023] mvebu-pcie mbus:pcie: PCI host bridge to bus 0000:00 [ 0.893075] pci_bus 0000:00: root bus resource [io 0x1000-0xfffff] [ 0.893113] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff] [ 0.893152] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.893187] pci_bus 0000:00: scanning bus [ 0.893219] pci 0000:00:01.0: [11ab:0510] type 01 class 0x060400 [ 0.893262] pci 0000:00:01.0: calling pci_fixup_ide_bases+0x0/0x3c [ 0.894560] pci 0000:00:02.0: [11ab:0510] type 01 class 0x060400 [ 0.894595] pci 0000:00:02.0: calling pci_fixup_ide_bases+0x0/0x3c [ 0.894976] pci_bus 0000:00: fixups for bus [ 0.894992] PCI: bus0: Fast back to back transfers disabled [ 0.895040] pci 0000:00:01.0: scanning [bus 00-00] behind bridge, pass 0 [ 0.895049] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 0.895108] pci 0000:00:02.0: scanning [bus 00-00] behind bridge, pass 0 [ 0.895116] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 0.895172] pci 0000:00:01.0: scanning [bus 00-00] behind bridge, pass 1 [ 0.895655] pci_bus 0000:01: scanning bus [ 0.895691] pci 0000:01:00.0: [1814:3090] type 00 class 0x028000 [ 0.895722] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x0000ffff] [ 0.895783] pci 0000:01:00.0: calling pci_fixup_ide_bases+0x0/0x3c [ 0.920897] pci_bus 0000:01: fixups for bus [ 0.920910] PCI: bus1: Fast back to back transfers disabled [ 0.920953] pci_bus 0000:01: bus scan returning with max=01 [ 0.920966] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 [ 0.920980] pci 0000:00:02.0: scanning [bus 00-00] behind bridge, pass 1 [ 0.921200] pci_bus 0000:02: scanning bus [ 0.921211] pci_bus 0000:02: fixups for bus [ 0.921217] PCI: bus2: Fast back to back transfers enabled [ 0.921255] pci_bus 0000:02: bus scan returning with max=02 [ 0.921265] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02 [ 0.921276] pci_bus 0000:00: bus scan returning with max=02 [ 0.921289] pci 0000:00:01.0: fixup irq: got 0 [ 0.921296] pci 0000:00:01.0: assigning IRQ 00 [ 0.921306] pci 0000:00:02.0: fixup irq: got 0 [ 0.921313] pci 0000:00:02.0: assigning IRQ 00 [ 0.921406] pci 0000:01:00.0: fixup irq: got 42 [ 0.921414] pci 0000:01:00.0: assigning IRQ 42 [ 0.921451] pci 0000:00:01.0: BAR 14: assigned [mem 0xe0000000-0xe00fffff] [ 0.921496] pci 0000:01:00.0: BAR 0: assigned [mem 0xe0000000-0xe000ffff] [ 0.921537] pci 0000:00:01.0: PCI bridge to [bus 01] [ 0.921575] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe00fffff] [ 0.921616] pci 0000:00:02.0: PCI bridge to [bus 02] [ 0.921726] pcieport 0000:00:01.0: enabling device (0140 -> 0142) [ 0.921777] pcieport 0000:00:01.0: enabling bus mastering [ 0.921855] pcieport 0000:00:02.0: enabling bus mastering [ 0.922617] mv_xor f1060800.dma-engine: Marvell shared XOR driver [ 0.981551] mv_xor f1060800.dma-engine: Marvell XOR (Registers Mode): ( xor cpy sg intr ) [ 0.981917] mv_xor f1060900.dma-engine: Marvell shared XOR driver [ 1.041543] mv_xor f1060900.dma-engine: Marvell XOR (Registers Mode): ( xor cpy sg intr ) [ 1.162972] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled [ 1.166457] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 21, base_baud = 10416666) is a 16550A [ 1.167530] f1012100.serial: ttyS1 at MMIO 0xf1012100 (irq = 22, base_baud = 10416666) is a 16550A [ 1.169689] sata_mv f10a0000.sata-host: version 1.28 [ 1.169845] sata_mv f10a0000.sata-host: slots 32 ports 1 [ 1.182310] scsi host0: sata_mv [ 1.182708] ata1: SATA max UDMA/133 irq 32 [ 1.184473] m25p80 spi0.0: s25fl064k (8192 Kbytes) [ 1.186903] libphy: Fixed MDIO Bus: probed [ 1.188152] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 1.188204] ehci-pci: EHCI PCI platform driver [ 1.188299] ehci-orion: EHCI orion driver [ 1.188483] orion-ehci f1050000.usb-host: EHCI Host Controller [ 1.188543] orion-ehci f1050000.usb-host: new USB bus registered, assigned bus number 1 [ 1.188727] orion-ehci f1050000.usb-host: irq 26, io mem 0xf1050000 [ 1.210704] orion-ehci f1050000.usb-host: USB 2.0 started, EHCI 1.00 [ 1.210998] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 1.211040] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.211091] usb usb1: Product: EHCI Host Controller [ 1.211123] usb usb1: Manufacturer: Linux 4.12.4-mvebu-tld-1 ehci_hcd [ 1.211159] usb usb1: SerialNumber: f1050000.usb-host [ 1.212008] hub 1-0:1.0: USB hub found [ 1.212078] hub 1-0:1.0: 1 port detected [ 1.212609] orion-ehci f1051000.usb-host: EHCI Host Controller [ 1.212669] orion-ehci f1051000.usb-host: new USB bus registered, assigned bus number 2 [ 1.212843] orion-ehci f1051000.usb-host: irq 27, io mem 0xf1051000 [ 1.240638] orion-ehci f1051000.usb-host: USB 2.0 started, EHCI 1.00 [ 1.240904] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002 [ 1.240945] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.240996] usb usb2: Product: EHCI Host Controller [ 1.241029] usb usb2: Manufacturer: Linux 4.12.4-mvebu-tld-1 ehci_hcd [ 1.241064] usb usb2: SerialNumber: f1051000.usb-host [ 1.241836] hub 2-0:1.0: USB hub found [ 1.241903] hub 2-0:1.0: 1 port detected [ 1.242999] usbcore: registered new interface driver usblp [ 1.243216] usbcore: registered new interface driver usb-storage [ 1.243670] mousedev: PS/2 mouse device common for all mice [ 1.244796] rtc-mv f10d8500.real-time-clock: rtc core: registered f10d8500.real-time- as rtc0 [ 1.245141] i2c /dev entries driver [ 1.248865] orion_wdt: Initial timeout 25 sec [ 1.251620] marvell-cesa f1030000.crypto-engine: CESA device successfully registered [ 1.251923] hidraw: raw HID events driver (C) Jiri Kosina [ 1.252406] usbcore: registered new interface driver usbhid [ 1.252443] usbhid: USB HID core driver [ 1.252675] drop_monitor: Initializing network drop monitor service [ 1.252770] Netfilter messages via NETLINK v0.30. [ 1.252817] ip_set: protocol 6 [ 1.253144] NET: Registered protocol family 10 [ 1.264259] Segment Routing with IPv6 [ 1.264354] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 1.266100] NET: Registered protocol family 17 [ 1.266195] 8021q: 802.1Q VLAN Support v1.8 [ 1.266267] Key type dns_resolver registered [ 1.266696] ThumbEE CPU extension supported. [ 1.266733] Registering SWP/SWPB emulation handler [ 1.266764] PJ4 iWMMXt v2 coprocessor enabled. [ 1.267641] registered taskstats version 1 [ 1.267677] Loading compiled-in X.509 certificates [ 1.267758] zswap: loaded using pool lzo/zbud [ 1.356638] Key type big_key registered [ 1.363488] Key type encrypted registered [ 1.365701] rtc-mv f10d8500.real-time-clock: setting system clock to 2018-08-14 20:51:29 UTC (1534279889) [ 1.365899] PM: Hibernation image not present or could not be loaded. [ 1.590629] usb 1-1: new high-speed USB device number 2 using orion-ehci [ 1.680635] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl F300) [ 1.710829] ata1.00: CFA: 1GB ATA Flash Disk, AD B612J, max UDMA/66 [ 1.710868] ata1.00: 2001888 sectors, multi 0: LBA [ 1.740817] ata1.00: configured for UDMA/66 [ 1.751442] scsi 0:0:0:0: Direct-Access ATA 1GB ATA Flash Di 612J PQ: 0 ANSI: 5 [ 1.752929] sd 0:0:0:0: [sda] 2001888 512-byte logical blocks: (1.02 GB/977 MiB) [ 1.753045] sd 0:0:0:0: [sda] Write Protect is off [ 1.753082] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.753190] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.755365] sda: sda1 sda2 sda3 [ 1.757202] sd 0:0:0:0: [sda] Attached SCSI disk [ 1.758851] Freeing unused kernel memory: 1024K [ 1.782618] usb 1-1: New USB device found, idVendor=05e3, idProduct=0608 [ 1.782677] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 [ 1.782714] usb 1-1: Product: USB2.0 Hub [ 1.783694] hub 1-1:1.0: USB hub found [ 1.784108] hub 1-1:1.0: 4 ports detected [ 1.853207] random: systemd-udevd: uninitialized urandom read (16 bytes read) [ 1.853773] random: systemd-udevd: uninitialized urandom read (16 bytes read) [ 1.853916] random: systemd-udevd: uninitialized urandom read (16 bytes read) [ 1.867508] random: udevadm: uninitialized urandom read (16 bytes read) [ 1.868550] random: udevadm: uninitialized urandom read (16 bytes read) [ 1.869123] random: udevadm: uninitialized urandom read (16 bytes read) [ 1.869691] random: udevadm: uninitialized urandom read (16 bytes read) [ 1.870227] random: udevadm: uninitialized urandom read (16 bytes read) [ 1.870907] random: udevadm: uninitialized urandom read (16 bytes read) [ 1.871511] random: udevadm: uninitialized urandom read (16 bytes read) [ 2.100687] usb 1-1.1: new high-speed USB device number 3 using orion-ehci [ 2.251738] usb 1-1.1: New USB device found, idVendor=0781, idProduct=5530 [ 2.251798] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 2.251849] usb 1-1.1: Product: Cruzer [ 2.251880] usb 1-1.1: Manufacturer: SanDisk [ 2.251911] usb 1-1.1: SerialNumber: 20060775210A3B80C5B2 [ 2.252812] usb-storage 1-1.1:1.0: USB Mass Storage device detected [ 2.255156] i2c i2c-0: Added multiplexed i2c bus 1 [ 2.260827] i2c i2c-0: Added multiplexed i2c bus 2 [ 2.271201] i2c i2c-0: Added multiplexed i2c bus 3 [ 2.271314] scsi host1: usb-storage 1-1.1:1.0 [ 2.383657] sdhci: Secure Digital Host Controller Interface driver [ 2.383710] sdhci: Copyright(c) Pierre Ossman [ 2.384393] sdhci-pltfm: SDHCI platform and OF driver helper [ 2.441745] mmc0: SDHCI controller on f1090000.sdio-host [f1090000.sdio-host] using DMA [ 2.501837] mmc1: SDHCI controller on f1092000.sdio-host [f1092000.sdio-host] using DMA [ 2.624761] random: fast init done [ 3.141254] usbcore: registered new interface driver uas [ 3.294570] scsi 1:0:0:0: Direct-Access SanDisk Cruzer 1.26 PQ: 0 ANSI: 5 [ 3.310753] sd 1:0:0:0: [sdb] 15633408 512-byte logical blocks: (8.00 GB/7.45 GiB) [ 3.311514] sd 1:0:0:0: [sdb] Write Protect is off [ 3.311556] sd 1:0:0:0: [sdb] Mode Sense: 43 00 00 00 [ 3.312261] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 3.317372] sdb: sdb1 [ 3.320705] sd 1:0:0:0: [sdb] Attached SCSI removable disk [ 8.870803] EXT4-fs (sdb1): mounting ext3 file system using the ext4 subsystem [ 8.892043] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null) [ 11.274972] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 11.275262] sd 1:0:0:0: Attached scsi generic sg1 type 0 [ 12.003639] pci 0000:00:01.0: enabling bus mastering [ 12.003658] rt2800pci 0000:01:00.0: enabling device (0140 -> 0142) [ 12.003721] rt2800pci 0000:01:00.0: enabling bus mastering [ 12.003733] rt2800pci 0000:01:00.0: enabling Mem-Wr-Inval [ 12.009819] ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 3090, rev 3212 detected [ 12.018803] ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 0005 detected [ 12.055487] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht' [ 13.061882] rt2800pci 0000:01:00.0 wlp1s0: renamed from wlan0 [ 13.703830] EXT4-fs (sdb1): re-mounted. Opts: errors=remount-ro [ 13.937318] random: crng init done root@debian:~#
↧
Re: LG N1T1 NAS
root@debian:~# cat /etc/fw_env.config # MTD device name Device offset Env. size Flash sector size Number of sectors /dev/mtd0 0xc0000 0x20000 0x20000 root@debian:~# fw_printenv Warning: Bad CRC, using default environment bootargs= bootcmd= bootdelay=2 baudrate=115200 arch=sandbox cpu=sandbox board=sandbox board_name=sandbox stdin=serial,cros-ec-keyb,usbkbd stdout=serial,vidconsole stderr=serial,vidconsole ethaddr=00:00:11:22:33:44 eth1addr=00:00:11:22:33:45 eth3addr=00:00:11:22:33:46 eth5addr=00:00:11:22:33:47 ipaddr=1.2.3.4 host_boot=if host dev ${devnum}; then setenv devtype host; run scan_dev_for_boot_part; fi boot_net_pci_enum=pci enum boot_net_usb_start=usb start usb_boot=usb start; if usb dev ${devnum}; then setenv devtype usb; run scan_dev_for_boot_part; fi boot_prefixes=/ /boot/ boot_scripts=boot.scr.uimg boot.scr boot_script_dhcp=boot.scr.uimg boot_targets=host1 host0 boot_extlinux=sysboot ${devtype} ${devnum}:${distro_bootpart} any ${scriptaddr} ${prefix}extlinux/extlinux.conf scan_dev_for_extlinux=if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}extlinux/extlinux.conf; then echo Found ${prefix}extlinux/extlinux.conf; run boot_extlinux; echo SCRIPT FAILED: continuing...; fi boot_a_script=load ${devtype} ${devnum}:${distro_bootpart} ${scriptaddr} ${prefix}${script}; source ${scriptaddr} scan_dev_for_scripts=for script in ${boot_scripts}; do if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}${script}; then echo Found U-Boot script ${prefix}${script}; run boot_a_script; echo SCRIPT FAILED: continuing...; fi; done scan_dev_for_boot=echo Scanning ${devtype} ${devnum}:${distro_bootpart}...; for prefix in ${boot_prefixes}; do run scan_dev_for_extlinux; run scan_dev_for_scripts; done; scan_dev_for_boot_part=part list ${devtype} ${devnum} -bootable devplist; env exists devplist || setenv devplist 1; for distro_bootpart in ${devplist}; do if fstype ${devtype} ${devnum}:${distro_bootpart} bootfstype; then run scan_dev_for_boot; fi; done bootcmd_host1=setenv devnum 1; run host_boot bootcmd_host0=setenv devnum 0; run host_boot distro_bootcmd=for target in ${boot_targets}; do run bootcmd_${target}; done bootm_size=0x10000000 kernel_addr_r=0x1000000 fdt_addr_r=0xc00000 ramdisk_addr_r=0x2000000 scriptaddr=0x1000 pxefile_addr_r=0x2000
↧