Quantcast
Channel: Linux Device Hacking - uBoot
Viewing all 901 articles
Browse latest View live

pogoplug PRO P01. dual wireless N radios? suggestions! (no replies)

$
0
0
This is my second pogoplug purchase. was delivered last night, first thing I did was take the thing appart and connect a sata cord and drilled a hole for easy access to the cord.

I purchased a 8gig ssd ;-] around 10$ it almost fits inside the plastic case if i had a soft flexable cord.

my goal is to run dual wireless N wifi cards. i hope to avoid external usb cords. This device has the mini pcie wireless device already.

is there any way to use the pcie to get dual wireless n radios?
any hacks mods, soldering tricks? Mini pcie expansion splitters?
I hope to keep everything internal, no external cords! (Only power supply)
I guess I could solder a usb device directly to the board.

Any tips or suggestions.

NSA325 NAND flash gone wrong - kwboot a kwb file OK! (4 replies)

$
0
0
I've done something wrong with NAND flashing latest Arch Linux U-Boot in stock env on a NSA325v2.

Now the box isn't self-booting / self-hosting anymore.

But with kwboot and a decent U-Boot kwb file I'm able to boot the box and have access to a "NSA325>"-prompt.

Now how to write the U-Boot inside kwboot to correct addresses? Plus I'd could use some advise for checking the enviroment for booting.

--volker

netboot from pogoplug E02? (2 replies)

$
0
0
Is it possible to boot a Pogoplug E02 using netboot? I would like to keep the rootfs on a network drive as it would playing with it much easier.

Is this possible?

Thanks,

Rainer

Netconsole stopped working (4 replies)

$
0
0
Hi Bodhi,

It seems after I updated new u-boot 2015.10 the netconsole stopped working. It seems dockstar can not ping to my serverip. but I can use my another computer to ping the serverip.

I tried to use the old env and your new env for this. either one can ping serverip.
I remember I saw someone also has the similar issue but I can not find it anymore.

From 88F6281 to 88F6702 (1 reply)

$
0
0
Hi all,

I am trying to run Linux 2.6.32 built for a 88F6281 on a 88F6702 (provided with Linux 2.6.31). Both are from the same Kirkwood ARMv5TE family as you can notice by reading the page 10 of the 2016 Marvell product selector guide.
Here is what I have done until now without much success:
  1. When trying to boot the 88F6281 kernel from the zImage, it hangs and the system needs to be reset. I then understood that I must provide a uImage, not a zImage. My u-boot version doesn't support the "bootz" command and I don't want to flash a new one for the moment.
  2. If I make a 88F6281 uImage from the 88F6281 zImage with "mkimage", this results in a "software interrupt" and "Resetting CPU ..." , I don't understand why.
  3. If I load and boot the 88F6281 kernel + ramdisk images, same result as above.
  4. If I keep the original 88F6702 kernel (the one which is stored in the Flash memory) and ask it to boot the "new" ramdisk, it works well.

And the question is: Why does the 88F6281 kernel doesn't boot on the 88F6702, do I need to recompile it? If so, what compilation parameters should I edit?

Thank you in advance for your invaluable help ;)

NSA310 with uboot.2015.10-tld-1 HD detection (4 replies)

$
0
0
Hi bodhi!

Thanks for your great work!

I finally took the plunge and flashed the uboot.2015.10-tld-1 on my NSA310. I hade a couple of bad blocks on
00040000
00060000
but I did some reading and decided to take my chances on 'nand scrub 0x0 0x80000' and it worked. However, after reboot it seems that I cannot detect the SATA SSD disk properly anymore. I get only garbled description and wrong specs ending in SSD unreadable. It is a 16GB SSD that is formatted in three partitions. Partition 1 is boot in ext2 with uImage & Uinitrd. Partition 2 empty ext4. Partition 3 ext4 labeled "rootfs" with root on it.

Printeenv:
arcNumber=4022
baudrate=115200
bootcmd=run bootcmd_uenv; run bootcmd_usb; usb stop; run bootcmd_sata; reset
bootcmd_sata=run sata_init; run set_bootargs_sata; run sata_boot
bootcmd_uenv=run uenv_load; if test $uenv_loaded -eq 1; then run uenv_import; fi
bootcmd_usb=run usb_init; run set_bootargs_usb; run usb_boot
bootdelay=10
console=ttyS0,115200
device=0:1
ethact=egiga0
ethaddr=b6:d0:5e:0f:a1:17
led_error=orange blinking
led_exit=green off
led_init=green blinking
machid=118f
mainlineLinux=yes
mtdids=nand0=orion_nand
mtdparts=mtdparts=orion_nand:0x100000(uboot),0x80000(stock_uboot_env),0x80000(key_store),0x80000(info),0xA00000(etc),0xA00000(kernel_1),0x2FC0000(rootfs1),0xA00000(kernel_2),0x2FC0000(rootfs2)
partition=nand0,2
rootdelay=10
rootfstype=ext2
sata_boot=mw 0x800000 0 1; run sata_load_uimage; if run sata_load_uinitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi
sata_init=ide reset
sata_load_uimage=ext2load ide $device 0x800000 /boot/uImage
sata_load_uinitrd=ext2load ide $device 0x1100000 /boot/uInitrd
sata_root=/dev/sda3
set_bootargs_sata=setenv bootargs console=$console root=$sata_root rootdelay=$rootdelay rootfstype=$rootfstype $mtdparts
set_bootargs_usb=setenv bootargs console=$console root=$usb_root rootdelay=$rootdelay rootfstype=$rootfstype $mtdparts
stderr=serial
stdin=serial
stdout=serial
uenv_import=echo importing envs ...; env import -t 0x810000
uenv_load=usb start; setenv uenv_loaded 0; for devtype in usb; do for disknum in 0; do run uenv_read_disk; done; done
uenv_read=echo loading envs from $devtype $disknum ...; if load $devtype $disknum:1 0x810000 /boot/uEnv.txt; then setenv uenv_loaded 1; fi
uenv_read_disk=if $devtype part $disknum; then run uenv_read; fi
usb_boot=mw 0x800000 0 1; run usb_load_uimage; if run usb_load_uinitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi
usb_init=usb start
usb_load_uimage=ext2load usb $device 0x800000 /boot/uImage
usb_load_uinitrd=ext2load usb $device 0x1100000 /boot/uInitrd
usb_root=/dev/sda1


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


SoC:   Kirkwood 88F6281_A1
DRAM:  256 MiB (ECC not enabled)
WARNING: Caches not enabled
NAND:  128 MiB
In:    serial
Out:   serial
Err:   serial
Net:   egiga0
PHY reset timed out
MV88E1318 PHY initialized on egiga0
Hit any key to stop autoboot:  0
starting USB...
USB0:   USB EHCI 1.00
scanning bus 0 for devices... 2 USB Device(s) found
       scanning usb for storage devices... 0 Storage Device(s) found

no USB devices available
** Bad device usb 0 **
** Bad device usb 0 **
Wrong Image Format for bootm command
Error occured, error code = 112
ERROR: can't get kernel image!
stopping USB..

Reset IDE: Bus 0: OK Bus 1: not available
  Device 0: Model: ?▒?▒?▒?▒?▒?▒?▒?▒?▒?▒?▒?▒?▒?▒?▒?▒?▒?▒?▒?▒ Firm: ?▒?▒?▒?▒ Ser#: ?▒?▒?▒?▒?▒?▒?▒?▒?▒?▒
            Type: Hard Disk
            Supports 48-bit addressing
            Capacity: 427923841.5 MB = 417894.3 GB (4611474908973580287 x 512)
IDE read: device 0 not ready
IDE read: device 0 not ready
** No partition table - ide 0 **
** No partition table - ide 0 **
Wrong Image Format for bootm command
Error occured, error code = 112
ERROR: can't get kernel image!
resetting ...

Restore original u-boot on Pogoplug-E02 that has Doozan chained mtd3 u-boot (1 reply)

$
0
0
Hi folks

I have a Pogoplug-E03 here that I used to run Debian on from a USB HDD. At the time I followed Jeff's guide to install a chainloaded newer U-boot on mtd3.

The Pogoplug has been sitting unused for a while as the HDD died.

Now I want to install OpenWRT on following their guide (see "file:///home/dermot/WIP/CloudEngines%20Pogoplug%20[OpenWrt%20Wiki].html").

I have not yet decided whether to use their mtd0 u-boot or to chain-load - their guide covers both situations.

However before I start I wanted to return the Pogoplug back to its original U-boot (without the Doozan one first). I have a console cable and so I powered up the Pogoplug to have a look at its current state. Attached is what I saw - the initial Doozan U-Boot, its "printenv" output then, then the chainload original U-boot and its "printenv" output.

So how should I proceed? Just follow the notes in the "Old: Restore old uBoot on mtd0" section of this doc "http://projects.doozan.com/uboot/"? Do I just need to restore the original u-boot and nothing else? what about u-boot variable settings, I assume they will need fixed afterwards.

BTW I have obscured the real MAC address and cesvcid (pogoplug's unique id?) in the console output.

Thanks in advance for help

Enabling ECC ram: possible? (3 replies)

$
0
0
I was wondering about the possibility to enable ECC for the RAM.

The SoC supports it, and afaik the only difference in PC DIMMs is that they add a chip to compensate for the RAM space used by checksums.

So, would it be possible to enable ECC in a kirkwood? RAM space will probably decrease so it may be worth it for 256+ RAM devices only.

I'm asking in the uBoot section because I think it must be done by uBoot.

bad block on mtd (3 replies)

$
0
0
hi bhodi,
in your install instructions you write:

>4. Be sure there is no bad block in the first 2M of your NAND (check dmesg for bad block 0 to 16). This is very important, if >there is bad block in the first 2M, don't flash u-boot, because you will almost certainly brick your box. Please post your >question here (there is a work around for it).

and:

>13. For sanity check, print out uBoot envs to see if they were flashed OK. If there is error in listing the envs, do not reboot and >post your problem here.

are these workarounds already discussed? if yes, where?
how can i remap or exclude such bad blocks? or how is it solved?

tnx
jay

no .dtb file (4 replies)

$
0
0
Hello Bodhi,

Is it possible to boot using ONLY uImage kernel file without its .dtb file? If so, can you help me to modify the following uEnv.txt file so that it won't need the openwrt-oxnas-pogoplug-pro.dtb file to properly boot, i.e. what needs to change in the bootcmd_usb line?
bootargs_usb=setenv bootargs 'console=ttyS0,115200n8 root=/dev/sda1 rootdelay=2 rootfstype=ext4 LABEL=usb_rootfs'
bootcmd_usb=run bootargs_usb; ext2load $bootdev $device $u_image_addr $u_image; ext2load $bootdev $device $dtb_image_addr $dtb_image; bootm $u_image_addr - $dtb_image_addr
dtb_image=/boot/openwrt-oxnas-pogoplug-pro.dtb
dtb_image_addr=0x62c00000
initrd_image_addr=0x62000000
u_image=/boot/openwrt-oxnas-uImage
u_image_addr=0x60500000

Pogoplug PRO Bootloader no start with flash disk (5 replies)

$
0
0
Hi

I`m install debian in Pogoplug Pro from this instruction http://blog.qnology.com/2015/04/hacking-pogoplug-v3oxnas-proclassic.html?showComment=1464198116974#c7190902143829429000 .
- I untar debian package in flash disk on pogoplug device and restart.
- Pogoplug don`t boot, don`t see flash drive ....
- I connect serial cable and see this :

U-Boot SPL 2013.10-tld-4 (Sep 07 2014 - 14:10:12)
  Boot device: NAND
Attempting to set PLLA to 850 MHz ...
  plla_ctrl0 : 0000020a
  plla_ctrl1 : 00330000
  plla_ctrl2 : 0065008b
  plla_ctrl3 : 000000f1

PLLA Set
Please help to fix this problem.

[request] making bad blocks less bad - starting U-Boot from another NAND position (3 replies)

$
0
0
I've read that some guys have bad blocks (0 - 1024 kb) and there is no place for flashing U-Boot in typical size (512 kb - 1 mb).
is it possible to "jump" to another working NAND position and start U-Boot there?
The loader (U-Boot) which can do this should be configured freely.

I remember that is was possible to start another U-Boot from stock U-Boot (Cloud Engines)
Is it possible to create a super small U-Boot binary (no shell, no env, no filesystems, no EFI, ...)
(<256k) with the ability to start another U-Boot?
compared with GRUB, this could be the stage 1 or 1,5
how many code is necessary to make that possible?
How small can we get it with standard functions?

SATA booting on Kirkwood boxes? (4 replies)

$
0
0
bodhi Wrote:
-------------------------------------------------------
> This is WarheadsSE's instruction (the original)
> (using Arch):
> https://archlinuxarm.org/forum/viewtopic.php?f=55&amp;
> t=2146&sid=f4dc4863e3a93822a4f9e925b3cbda45
>

I quickly browsed through some few posts on the 1st page of the above discussion thread and noticed WarHeadsSE mentioned in this post that the SoC on a PogoPlug V3 has a tiny ROM to read data from SATA, SPI, then NAND, respectively, and to boot without touching the NAND storage. I know I should asked WarHeadsSE but wonder if you and/or anyone here knows a Seagate GoFLEX Home/Net device has a built-in of such an SoC to perform the same thing to allow booting off of an external SATA storage through its original/stock uboot.

NSA-325 Bricked HDD2 LED constantly active (3 replies)

$
0
0
I have a bricked NSA-325. I tried to uartboot it with kwboot without success:

ubuntu@ubuntu:~/Desktop/kwboot-tool$ sudo ./kwboot -b uboot.2015.10-tld-1.nsa325.mtd0.kwb -t -B 115200 /dev/ttyUSB0 -p
Sending boot message. Please reboot the target...|
Sending boot image...
  0 % [......................................................................]
  1 % [......................................................................]
  3 % [......................................................................]
  5 % [......................................................................]
  6 % [......................................................................]
  8 % [......................................................................]
 10 % [......................................................................]
 11 % [......................................................................]
 13 % [......................................................................]
 15 % [......................................................................]
 17 % [......................................................................]
 18 % [......................................................................]
 20 % [......................................................................]
 22 % [......................................................................]
 23 % [......................................................................]
 25 % [......................................................................]
 27 % [......................................................................]
 29 % [......................................................................]
 30 % [......................................................................]
 32 % [......................................................................]
 34 % [......................................................................]
 35 % [......................................................................]
 37 % [......................................................................]
 39 % [......................................................................]
 41 % [......................................................................]
 42 % [......................................................................]
 44 % [......................................................................]
 46 % [......................................................................]
 47 % [......................................................................]
 49 % [......................................................................]
 51 % [......................................................................]
 53 % [......................................................................]
 54 % [......................................................................]
 56 % [......................................................................]
 58 % [......................................................................]
 59 % [......................................................................]
 61 % [......................................................................]
 63 % [......................................................................]
 64 % [......................................................................]
 66 % [......................................................................]
 68 % [......................................................................]
 70 % [......................................................................]
 71 % [......................................................................]
 73 % [......................................................................]
 75 % [......................................................................]
 76 % [......................................................................]
 78 % [......................................................................]
 80 % [......................................................................]
 82 % [......................................................................]
 83 % [......................................................................]
 85 % [......................................................................]
 87 % [......................................................................]
 88 % [......................................................................]
 90 % [......................................................................]
 92 % [......................................................................]
 94 % [......................................................................]
 95 % [......................................................................]
 97 % [......................................................................]
 99 % [....................................]
[Type Ctrl-\ + c to quit]
?

The device was in use but suddenly stopped working and seems like it is not booting via UART. Is is also not booting anything from NAND neither outputs anything on UART.


Is there anything else I could try?

Boot from GPT formated disk? (8 replies)

$
0
0
Hi

I installed the new uboot on my GoFlex net and would like to boot from a USB hdd which is GPT and not MBR formated. In addition, the rootfs labeled partition is partition 5.

How can I boot from this rootfs?

I read somewhere here about booting from UEFI, but I can't find it anymore?

Just booting the GoFlex does not work.

Any suggestions?

Thanks,

Rainer

OpenWrt u-boot with Read-Only mtd0? (2 replies)

$
0
0
Results:

root@debian:~# fw_printenv | grep -i dtb
root@debian:~# fw_printenv bootcmd
bootcmd=run bootcmd_uenv; run bootcmd_usb; run bootcmd_nand; reset
root@debian:~# fw_printenv mtdparts
mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
root@debian:~# ls -l /boot/dts/*e02*
-rw-r--r-- 1 root root 10446 May 18 2016 /boot/dts/kirkwood-pogo_e02.dtb
root@debian:~# uname -a
Linux debian 4.6.0-kirkwood-tld-1 #1 PREEMPT Wed May 18 03:54:14 PDT 2016 armv5tel GNU/Linux

Additional results:
root@debian:~# myinfo
debian

eth0: error fetching interface information: Device not found
Machine model: CloudEngines Pogoplug E02
Linux version 4.6.0-kirkwood-tld-1 (root@tldDebian) (gcc version 4.9.2 (Debian 4.9.2-10) ) #1 PREEMPT Wed May 18 03:54:14 PDT 2016

Troubling items from dmesg:

[ 0.160975] [Firmware Info]: /ocp@f1000000/ethernet-controller@72000/ethernet0-port@0: local-mac-address is not set
[ 0.165887] No ATAGs?

Which explains why I can't bring up the ethernet port. I have serial access.

Thanks for whatever help you can provide.

Ray

Recovery Help on Dockstar (1 reply)

$
0
0
It seems I've done something incorrectly in updating my Dockstar. I was trying to upgrade to the most current u-boot and rootfs, but it fails to boot. Though I've read through a lot of helpful content here, I haven't figured out how to resolve it myself. I have netconsole access, so I've provided my boot messages and envs

U-Boot 2015.10-tld-1 (Nov 06 2015 - 15:56:21 -0800)
Seagate FreeAgent DockStar
gcc (Debian 4.9.2-10) 4.9.2
GNU ld (GNU Binutils for Debian) 2.25
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... 0 Storage Device(s) found
Unknown command 'ide' - try 'help'
Unknown command 'mmc' - try 'help'

no USB devices available
Unknown command 'ide' - try 'help'
Unknown command 'mmc' - try 'help'
running scan_disk ...
Scan device usb
device usb 0:1
** Bad device usb 0 **
device usb 1:1
** Bad device usb 1 **
device usb 2:1
** Bad device usb 2 **
device usb 3:1
** Bad device usb 3 **
Scan device ide
Unknown command 'ide' - try 'help'
device ide 0:1
** Bad device ide 0 **
device ide 1:1
** Bad device ide 1 **
device ide 2:1
** Bad device ide 2 **
device ide 3:1
** Bad device ide 3 **
Scan device mmc
Unknown command 'mmc' - try 'help'
device mmc 0:1
** Bad device mmc 0 **
device mmc 1:1
** Bad device mmc 1 **
device mmc 2:1
** Bad device mmc 2 **
device mmc 3:1
** Bad device mmc 3 **
loading uImage ...
** Bad device usb 0 **
loading uInitrd ...
** Bad device usb 0 **
loading DTB /boot/dts/kirkwood-pogo_e02.dtb ...
** Bad device usb 0 **
Wrong Image Format for bootm command
ERROR: can't get kernel image!

arcNumber=2097
bootargs=console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
bootcmd=run bootcmd_uenv; run scan_disk; run set_bootargs; run bootcmd_exec
bootcmd_exec=mw 0x800000 0 1; run load_uimage; if run load_initrd; then if run load_dtb; then bootm 0x800000 0x1100000 0x1c00000; else bootm 0x800000 0x1100000; fi; else if run load_dtb; then bootm 0x800000 - 0x1c00000; else bootm 0x800000; fi; fi
bootcmd_uenv=run uenv_load; if test $uenv_loaded -eq 1; then run uenv_import; fi
bootdelay=10
bootdev=usb
device=0:1
devices=usb ide mmc
disks=0 1 2 3
dtb_file=/boot/dts/kirkwood-pogo_e02.dtb
ethact=egiga0
ethaddr=52:3b:20:9c:11:51
if_netconsole=ping $serverip
init_ide=ide reset
init_mmc=mmc rescan
init_usb=usb start
ipaddr=192.168.1.99
led_error=orange blinking
led_exit=green off
led_init=green blinking
load_dtb=echo loading DTB $dtb_file ...; ext2load $bootdev $device 0x1c00000 $dtb_file
load_initrd=echo loading uInitrd ...; ext2load $bootdev $device 0x1100000 /boot/uInitrd
load_uimage=echo loading uImage ...; ext2load $bootdev $device 0x800000 /boot/uImage
machid=0x831
mainlineLinux=yes
mtdids=nand0=orion_nand
mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
nc_ready=1
ncip=192.168.1.19
partition=nand0,2
preboot=run preboot_nc
preboot_nc=setenv nc_ready 0; for pingstat in 1 2 3 4 5; do; sleep 1; if run if_netconsole; then setenv nc_ready 1; fi; done; if test $nc_ready -eq 1; then run start_netconsole; fi
scan_disk=echo running scan_disk ...; scan_done=0; setenv scan_usb "usb start";  setenv scan_ide "ide reset";  setenv scan_mmc "mmc rescan"; for dev in $devices; do if test $scan_done -eq 0; then echo Scan device $dev; run scan_$dev; for disknum in $disks; do if test $scan_done -eq 0; then echo device $dev $disknum:1; if ext2load $dev $disknum:1 0x800000 /boot/uImage 1; then scan_done=1; echo Found bootable drive on $dev $disknum; setenv device $disknum:1; setenv bootdev $dev; fi; fi; done; fi; done
scan_ide=ide reset
scan_mmc=mmc rescan
scan_usb=usb start
serverip=192.168.1.19
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=nc
stdin=nc
stdout=nc
uenv_import=echo importing envs ...; env import -t 0x810000
uenv_init_devices=setenv init_usb "usb start";  setenv init_ide "ide reset";  setenv init_mmc "mmc rescan"; for devtype in $devices; do run init_$devtype; done;
uenv_load=run uenv_init_devices; setenv uenv_loaded 0; for devtype in $devices;  do for disknum in 0; do run uenv_read_disk; done; done;
uenv_loaded=0
uenv_read=echo loading envs from $devtype $disknum ...; if load $devtype $disknum:1 0x810000 /boot/uEnv.txt; then setenv uenv_loaded 1; fi
uenv_read_disk=if test $devtype -eq mmc; then if $devtype part; then run uenv_read;  fi; else if $devtype part $disknum; then run uenv_read; fi;  fi
usb_ready_retry=15

Environment size: 3130/131068 bytes

I think I must have written the wrong u-boot envs for the Dockstar, since it references the dtb for Pogo E02, but I'm not sure how to write the new ones to the device with the access I have.

I also tried to make a USB with 4.4.0 rootfs that would hopefully boot, but when I have that in the device on boot, I get basically the same boot message.

I appreciate any help resolving this.

Thanks,
Jason

Pogoplug E01 u-boot question (2 replies)

$
0
0
I just acquired a Pogoplug E01 the original Cloud Engines plug. The internal board is manufactured by GlobalScale Technologies and indicates a REV3.0 It is a 1.2Ghz 88F6281 with 512MB Hynix NAND and 256MB Elpida RAM. There is only a single USB 2.0 and Gigabit Ethernet via the 88E1116R. There is also an on-board battery. Stock U-Boot is 1.1.4 CloudEngines (3.4.16). Stock linux kernel is 2.6.22.18. I'm wondering if it is safe to use the E02 U-Boot image or would the SheevaPlug image be more appropriate?

Dockstar kernel booting problem (11 replies)

$
0
0
Hi Bodhi,

after updating to new Uboot 2015.10 (which worked very well btw.), I updated my USB-Stick to Devuan Jessie with Kernel 4.6, which seems to run pretty smooth.

The only problem is: the rescue system doesn't boot through, so I could not login to it.
In netconsole I can see the kernel beeing loaded:

NAND read: device 0 offset 0x100000, size 0x400000
 4194304 bytes read: OK
## Booting kernel from Legacy Image at 00800000 ...
   Image Name:   Linux-2.6.32.18-dockstar
   Created:      2010-09-16  20:04:19 UTC
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    3175992 Bytes = 3 MiB
   Load Address: 00008000
   Entry Point:  00008000
   Verifying Checksum ... OK


Starting kernel ...

But after that the LED stays yellow, and no network connect is possible, no DHCP requests are beeing sent.

I think, it must have something to do with non FDT Kernel beeing installed, but I don't have a clue, how to include kirkwood-dockstar.dtb .

Do You have an idea, what should be done? Unfortunately the serial console seems to be grilled, almost only garbage is printed.

TIA,
Peter

iomega ix4-200d not execute post bios (no replies)

$
0
0
Hi all,

my storage, during debian installation doesn't execute post bios.
Please see the photo
Iomega ix4-200d not execute post bios

I've tried to connect via serial console with JTAG PL2303, but the console remains empty. I've used same JTAG with same connection in other iomega ix4-200d with successfull.

Please help me.

Best regards
Francesco
Viewing all 901 articles
Browse latest View live