<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>no longer able to boot from usb stick after using USB hub</title>
        <description> I have used davygravy&amp;#039;s NSA320 tarball rootfs to create a usb stick and it boots fine on my Goflex Home.

However, since it only has 1 usb port I have attempted to use the same usb stick with a usb hub connected to the Goflex Home but it wont boot.

What do I need to do in order to get the stick to boot while using a usb hub??? 




NC logs when USB Hub is used:

U-Boot 2011.12 (Apr 18 2012 - 23:08:20)
Seagate GoFlexNet
arm-none-linux-gnueabi-gcc (Sourcery G++ Lite 2009q3-67) 4.4.1
GNU ld (Sourcery G++ Lite 2009q3-67) 2.19.51.20090709
Hit any key to stop autoboot:  0
(Re)start USB...
USB:   Register 10011 NbrPorts 1
USB EHCI 1.00
scanning bus for devices... 3 USB Device(s) found
       scanning bus for storage devices... EHCI timed out on TD - token=0x80008c80
1 Storage Device(s) found
Loading file &amp;quot;/rescueme&amp;quot; from usb device 0:1 (usbda1)
** File not found /rescueme
reading /rescueme.txt

** Unable to read &amp;quot;/rescueme.txt&amp;quot; from usb 0:1 **
Creating 1 MTD partitions on &amp;quot;nand0&amp;quot;:
0x000002500000-0x000010000000 : &amp;quot;mtd=3&amp;quot;
UBI: attaching mtd1 to ubi0
UBI: physical eraseblock size:   131072 bytes (128 KiB)
UBI: logical eraseblock size:    129024 bytes
UBI: smallest flash I/O unit:    2048
UBI: sub-page size:              512
UBI: VID header offset:          512 (aligned 512)
UBI: data offset:                2048
UBI error: validate_ec_hdr: bad VID header offset 2048, expected 512
UBI error: validate_ec_hdr: bad EC header
UBI error: ubi_io_read_ec_hdr: validation failed for PEB 0
UBI error: ubi_init: cannot attach mtd1
UBI error: ubi_init: UBI error: cannot initialize UBI, error -22
UBI init error 22
Loading file &amp;quot;/boot/uImage&amp;quot; from usb device 0:1 (usbda1)
1 bytes read
Found bootable drive on usb 0:1
Loading file &amp;quot;/boot/uImage&amp;quot; from usb device 0:1 (usbda1)
EHCI timed out on TD - token=0x800d8d80
EHCI timed out on TD - token=0x800d8d80
EHCI timed out on TD - token=0x800d8d80</description>
        <link>https://forum.doozan.com/read.php?2,9667,9667#msg-9667</link>
        <lastBuildDate>Sun, 15 Mar 2026 15:26:40 -0500</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://forum.doozan.com/read.php?2,9667,9710#msg-9710</guid>
            <title>Re: no longer able to boot from usb stick after using USB hub</title>
            <link>https://forum.doozan.com/read.php?2,9667,9710#msg-9710</link>
            <description><![CDATA[ Thanks. My problem solved!<br />
<br />
It turns out it is the usb drive and not the hub.<br />
<br />
I changed to another usb drive and it works immediately! Many thanks for your help!]]></description>
            <dc:creator>protocold</dc:creator>
            <category>Debian</category>
            <pubDate>Sun, 23 Sep 2012 09:14:55 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,9667,9689#msg-9689</guid>
            <title>Re: no longer able to boot from usb stick after using USB hub</title>
            <link>https://forum.doozan.com/read.php?2,9667,9689#msg-9689</link>
            <description><![CDATA[ Here it is!<br />
<br />
<pre class="bbcode">
# fw_printenv
ethact=egiga0
bootdelay=3
baudrate=115200
mainlineLinux=yes
console=ttyS0,115200
led_init=green blinking
led_exit=green off
led_error=orange blinking
mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
mtdids=nand0=orion_nand
partition=nand0,2
stdin=serial
stdout=serial
stderr=serial
rescue_installed=0
rescue_set_bootargs=setenv bootargs console=$console ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs $mtdparts $rescue_custom_params
rescue_bootcmd=if test $rescue_installed -eq 1; then run rescue_set_bootargs; nand read.e 0x800000 0x100000 0x400000; bootm 0x800000; else run pogo_bootcmd; fi
pogo_bootcmd=if fsload uboot-original-mtd0.kwb; then go 0x800200; fi
force_rescue=0
force_rescue_bootcmd=if test $force_rescue -eq 1 || ext2load usb 0:1 0x1700000 /rescueme 1 || fatload usb 0:1 0x1700000 /rescueme.txt 1; then run rescue_bootcmd; fi
ubifs_mtd=3
ubifs_set_bootargs=setenv bootargs console=$console ubi.mtd=$ubifs_mtd root=ubi0:rootfs rootfstype=ubifs $mtdparts $ubifs_custom_params
ubifs_bootcmd=run ubifs_set_bootargs; if ubi part data &amp;&amp; ubifsmount rootfs &amp;&amp; ubifsload 0x800000 /boot/uImage &amp;&amp; ubifsload 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; fi
usb_scan=usb_scan_done=0;for scan in $usb_scan_list; do run usb_scan_$scan; if test $usb_scan_done -eq 0 &amp;&amp; ext2load usb $usb 0x800000 /boot/uImage 1; then usb_scan_done=1; echo &quot;Found bootable drive on usb $usb&quot;; setenv usb_device $usb; setenv usb_root /dev/$dev; fi; done
usb_scan_list=1 2 3 4
usb_scan_1=usb=0:1 dev=sda1
usb_scan_2=usb=1:1 dev=sdb1
usb_scan_3=usb=2:1 dev=sdc1
usb_scan_4=usb=3:1 dev=sdd1
usb_device=0:1
usb_root=/dev/sda1
usb_rootfstype=ext2
usb_rootdelay=10
usb_set_bootargs=setenv bootargs console=$console root=$usb_root rootdelay=$usb_rootdelay rootfstype=$usb_rootfstype $mtdparts $usb_custom_params
usb_bootcmd=run usb_init; run usb_set_bootargs; run usb_boot
usb_boot=mw 0x800000 0 1; ext2load usb $usb_device 0x800000 /boot/uImage; if ext2load usb $usb_device 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi
serverip=192.168.0.220
ipaddr=192.168.0.226
if_netconsole=ping $serverip
start_netconsole=setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version;
preboot=run if_netconsole start_netconsole
arcNumber=3338
usb_init=run usb_scan ; setenv usb_root LABEL=rootfs
sata_boot=ide reset; mw 0x800000 0 1; ext2load ide 0:1 0x800000 /boot/uImage; if ext2load ide 0:1 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi
sata_bootcmd=run usb_set_bootargs; run sata_boot
bootcmd=usb start; run force_rescue_bootcmd; run ubifs_bootcmd; run usb_bootcmd; usb stop; run sata_bootcmd; run rescue_bootcmd; run pogo_bootcmd; reset</pre>
<br />
<br />
What type of USB hub are you using?]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Fri, 21 Sep 2012 22:49:04 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,9667,9688#msg-9688</guid>
            <title>Re: no longer able to boot from usb stick after using USB hub</title>
            <link>https://forum.doozan.com/read.php?2,9667,9688#msg-9688</link>
            <description><![CDATA[ @bodhi<br />
<br />
Let me get another one to try..<br />
<br />
Can you please share your fw_printenv?]]></description>
            <dc:creator>protocold</dc:creator>
            <category>Debian</category>
            <pubDate>Fri, 21 Sep 2012 20:18:10 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,9667,9684#msg-9684</guid>
            <title>Re: no longer able to boot from usb stick after using USB hub</title>
            <link>https://forum.doozan.com/read.php?2,9667,9684#msg-9684</link>
            <description><![CDATA[ @protocold,<br />
<br />
There should be no problem booting with a USB hub. I&#039;m booting the GoFlex Home with a non-powered 4-port Belkin hub right now. Your problem seems to be with the hub. Have you tried a different one?]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Fri, 21 Sep 2012 16:56:46 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,9667,9669#msg-9669</guid>
            <title>Re: no longer able to boot from usb stick after using USB hub</title>
            <link>https://forum.doozan.com/read.php?2,9667,9669#msg-9669</link>
            <description><![CDATA[ root@debian-kirkwood-wide:~# fw_printenv<br />
ethact=egiga0<br />
bootdelay=3<br />
baudrate=115200<br />
mainlineLinux=yes<br />
console=ttyS0,115200<br />
led_init=green blinking<br />
led_exit=green off<br />
led_error=orange blinking<br />
mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)<br />
mtdids=nand0=orion_nand<br />
partition=nand0,2<br />
stdin=serial<br />
stdout=serial<br />
stderr=serial<br />
rescue_set_bootargs=setenv bootargs console=$console ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs $mtdparts $rescue_custom_params<br />
rescue_bootcmd=if test $rescue_installed -eq 1; then run rescue_set_bootargs; nand read.e 0x800000 0x100000 0x400000; bootm 0x800000; else run pogo_bootcmd; fi<br />
pogo_bootcmd=if fsload uboot-original-mtd0.kwb; then go 0x800200; fi<br />
force_rescue=0<br />
force_rescue_bootcmd=if test $force_rescue -eq 1 || ext2load usb 0:1 0x1700000 /rescueme 1 || fatload usb 0:1 0x1700000 /rescueme.txt 1; then run rescue_bootcmd; fi<br />
ubifs_mtd=3<br />
ubifs_set_bootargs=setenv bootargs console=$console ubi.mtd=$ubifs_mtd root=ubi0:rootfs rootfstype=ubifs $mtdparts $ubifs_custom_params<br />
ubifs_bootcmd=run ubifs_set_bootargs; if ubi part data &amp;&amp; ubifsmount rootfs &amp;&amp; ubifsload 0x800000 /boot/uImage &amp;&amp; ubifsload 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; fi<br />
usb_scan=usb_scan_done=0;for scan in $usb_scan_list; do run usb_scan_$scan; if test $usb_scan_done -eq 0 &amp;&amp; ext2load usb $usb 0x800000 /boot/uImage 1; then usb_scan_done=1; echo &quot;Found bootable drive on usb $usb&quot;; setenv usb_device $usb; setenv usb_root /dev/$dev; fi; done<br />
usb_scan_list=1 2 3 4<br />
usb_scan_1=usb=0:1 dev=sda1<br />
usb_scan_2=usb=1:1 dev=sdb1<br />
usb_scan_3=usb=2:1 dev=sdc1<br />
usb_scan_4=usb=3:1 dev=sdd1<br />
usb_rootdelay=10<br />
usb_set_bootargs=setenv bootargs console=$console root=$usb_root rootdelay=$usb_rootdelay rootfstype=$usb_rootfstype $mtdparts $usb_custom_params<br />
usb_bootcmd=run usb_init; run usb_set_bootargs; run usb_boot<br />
usb_boot=mw 0x800000 0 1; ext2load usb $usb_device 0x800000 /boot/uImage; if ext2load usb $usb_device 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi<br />
bootcmd=usb start; run force_rescue_bootcmd; run ubifs_bootcmd; run usb_bootcmd; usb stop; run rescue_bootcmd; run pogo_bootcmd; reset<br />
arcNumber=3089<br />
usb_rootfstype=ext3<br />
usb_init=run usb_scan; setenv usb_root LABEL=ROOTFS<br />
set_bootargs_rescue=setenv bootargs console=$console ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs $mtdparts<br />
bootcmd_rescue=run set_bootargs_rescue; nand read.e 0x800000 0x100000 0x400000; bootm 0x800000<br />
bootcmd_pogo=run bootcmd_rescue<br />
rescue_installed=1<br />
usb_root=/dev/sdb1<br />
usb_device=0:1<br />
serverip=192.168.0.101<br />
ipaddr=192.168.0.102<br />
if_netconsole=ping $serverip<br />
start_netconsole=setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version;<br />
preboot=run if_netconsole start_netconsole<br />
root@debian-kirkwood-wide:~#]]></description>
            <dc:creator>protocold</dc:creator>
            <category>Debian</category>
            <pubDate>Thu, 20 Sep 2012 05:18:58 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,9667,9668#msg-9668</guid>
            <title>Re: no longer able to boot from usb stick after using USB hub</title>
            <link>https://forum.doozan.com/read.php?2,9667,9668#msg-9668</link>
            <description><![CDATA[ NC log when USB hub is NOT used:<br />
<br />
U-Boot 2011.12 (Apr 18 2012 - 23:08:20)<br />
Seagate GoFlexNet<br />
arm-none-linux-gnueabi-gcc (Sourcery G++ Lite 2009q3-67) 4.4.1<br />
GNU ld (Sourcery G++ Lite 2009q3-67) 2.19.51.20090709<br />
Hit any key to stop autoboot:  0<br />
(Re)start USB...<br />
USB:   Register 10011 NbrPorts 1<br />
USB EHCI 1.00<br />
scanning bus for devices... 2 USB Device(s) found<br />
       scanning bus for storage devices... EHCI timed out on TD - token=0x80008c<br />
80<br />
1 Storage Device(s) found<br />
Loading file &quot;/rescueme&quot; from usb device 0:1 (usbda1)<br />
** File not found /rescueme<br />
reading /rescueme.txt<br />
<br />
** Unable to read &quot;/rescueme.txt&quot; from usb 0:1 **<br />
Creating 1 MTD partitions on &quot;nand0&quot;:<br />
0x000002500000-0x000010000000 : &quot;mtd=3&quot;<br />
UBI: attaching mtd1 to ubi0<br />
UBI: physical eraseblock size:   131072 bytes (128 KiB)<br />
UBI: logical eraseblock size:    129024 bytes<br />
UBI: smallest flash I/O unit:    2048<br />
UBI: sub-page size:              512<br />
UBI: VID header offset:          512 (aligned 512)<br />
UBI: data offset:                2048<br />
UBI error: validate_ec_hdr: bad VID header offset 2048, expected 512<br />
UBI error: validate_ec_hdr: bad EC header<br />
UBI error: ubi_io_read_ec_hdr: validation failed for PEB 0<br />
UBI error: ubi_init: cannot attach mtd1<br />
UBI error: ubi_init: UBI error: cannot initialize UBI, error -22<br />
UBI init error 22<br />
Loading file &quot;/boot/uImage&quot; from usb device 0:1 (usbda1)<br />
1 bytes read<br />
Found bootable drive on usb 0:1<br />
Loading file &quot;/boot/uImage&quot; from usb device 0:1 (usbda1)<br />
2279256 bytes read<br />
Loading file &quot;/boot/uInitrd&quot; from usb device 0:1 (usbda1)<br />
7004538 bytes read<br />
## Booting kernel from Legacy Image at 00800000 ...<br />
   Image Name:   Linux-3.3.2<br />
   Image Type:   ARM Linux Kernel Image (uncompressed)<br />
   Data Size:    2279192 Bytes = 2.2 MiB<br />
   Load Address: 00008000<br />
   Entry Point:  00008000<br />
   Verifying Checksum ... OK<br />
## Loading init Ramdisk from Legacy Image at 01100000 ...<br />
   Image Name:   initramfs-3.3.2-kirkwood-dg<br />
   Image Type:   ARM Linux RAMDisk Image (gzip compressed)<br />
   Data Size:    7004474 Bytes = 6.7 MiB<br />
   Load Address: 00000000<br />
   Entry Point:  00000000<br />
   Verifying Checksum ... OK<br />
   Loading Kernel Image ... OK<br />
OK<br />
<br />
Starting kernel ...]]></description>
            <dc:creator>protocold</dc:creator>
            <category>Debian</category>
            <pubDate>Thu, 20 Sep 2012 05:14:05 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,9667,9667#msg-9667</guid>
            <title>no longer able to boot from usb stick after using USB hub</title>
            <link>https://forum.doozan.com/read.php?2,9667,9667#msg-9667</link>
            <description><![CDATA[ I have used davygravy&#039;s NSA320 tarball rootfs to create a usb stick and it boots fine on my Goflex Home.<br />
<br />
However, since it only has 1 usb port I have attempted to use the same usb stick with a usb hub connected to the Goflex Home but it wont boot.<br />
<br />
What do I need to do in order to get the stick to boot while using a usb hub??? <br />
<br />
<br />
<br />
<br />
NC logs when USB Hub is used:<br />
<br />
U-Boot 2011.12 (Apr 18 2012 - 23:08:20)<br />
Seagate GoFlexNet<br />
arm-none-linux-gnueabi-gcc (Sourcery G++ Lite 2009q3-67) 4.4.1<br />
GNU ld (Sourcery G++ Lite 2009q3-67) 2.19.51.20090709<br />
Hit any key to stop autoboot:  0<br />
(Re)start USB...<br />
USB:   Register 10011 NbrPorts 1<br />
USB EHCI 1.00<br />
scanning bus for devices... 3 USB Device(s) found<br />
       scanning bus for storage devices... EHCI timed out on TD - token=0x80008c80<br />
1 Storage Device(s) found<br />
Loading file &quot;/rescueme&quot; from usb device 0:1 (usbda1)<br />
** File not found /rescueme<br />
reading /rescueme.txt<br />
<br />
** Unable to read &quot;/rescueme.txt&quot; from usb 0:1 **<br />
Creating 1 MTD partitions on &quot;nand0&quot;:<br />
0x000002500000-0x000010000000 : &quot;mtd=3&quot;<br />
UBI: attaching mtd1 to ubi0<br />
UBI: physical eraseblock size:   131072 bytes (128 KiB)<br />
UBI: logical eraseblock size:    129024 bytes<br />
UBI: smallest flash I/O unit:    2048<br />
UBI: sub-page size:              512<br />
UBI: VID header offset:          512 (aligned 512)<br />
UBI: data offset:                2048<br />
UBI error: validate_ec_hdr: bad VID header offset 2048, expected 512<br />
UBI error: validate_ec_hdr: bad EC header<br />
UBI error: ubi_io_read_ec_hdr: validation failed for PEB 0<br />
UBI error: ubi_init: cannot attach mtd1<br />
UBI error: ubi_init: UBI error: cannot initialize UBI, error -22<br />
UBI init error 22<br />
Loading file &quot;/boot/uImage&quot; from usb device 0:1 (usbda1)<br />
1 bytes read<br />
Found bootable drive on usb 0:1<br />
Loading file &quot;/boot/uImage&quot; from usb device 0:1 (usbda1)<br />
EHCI timed out on TD - token=0x800d8d80<br />
EHCI timed out on TD - token=0x800d8d80<br />
EHCI timed out on TD - token=0x800d8d80]]></description>
            <dc:creator>protocold</dc:creator>
            <category>Debian</category>
            <pubDate>Thu, 20 Sep 2012 05:11:06 -0500</pubDate>
        </item>
    </channel>
</rss>
