Quantcast
Aktuelles
Digital Eliteboard - Das Digitale Technik Forum

Registriere dich noch heute kostenlos, um Mitglied zu werden! Sobald du angemeldet bist, kannst du auf unserer Seite aktiv teilnehmen, indem du deine eigenen Themen und Beiträge erstellst und dich über deinen eigenen Posteingang mit anderen Mitgliedern unterhalten kannst! Zudem bekommst du Zutritt zu Bereichen, welche für Gäste verwehrt bleiben

Registriere dich noch heute kostenlos, um Mitglied zu werden! Sobald du angemeldet bist, kannst du auf unserer Seite aktiv teilnehmen, indem du deine eigenen Themen und Beiträge erstellst und dich über deinen eigenen Posteingang mit anderen Mitgliedern unterhalten kannst! Zudem bekommst du Zutritt zu Bereichen, welche für Gäste verwehrt bleiben

uboot ENV's

  • Ersteller Ersteller Deleted member 130877
  • Erstellt am Erstellt am
D

Deleted member 130877

Guest
Hallo Leute ich benötige eure Hilfe beim (wieder)einstellen der Bootvariablen (environment variables)

uboot Version : 2014.07-tld-2
Pogoplug E02

Meine Eingabe per TTL
setenv arcNumber 3542setenv baudrate 115200
setenv bootcmd'run bootcmd_uenv; run bootcmd_usb; run bootcmd_mmc; run bootcmd_sata; run bootcmd_pogo; reset'
setenv bootcmd_mmc'run mmc_init; run set_bootargs_mmc; run mmc_boot'
setenv bootcmd_pogo run bootcmd_rescue
setenv bootcmd_rescue'run set_bootargs_rescue; nand read.e 0x800000 0x100000 0x400000; bootm 0x800000'
setenv bootcmd_sata'run sata_init; run set_bootargs_sata; run sata_boot'
setenv bootcmd_uenv'run uenv_load; if test $uenv_loaded -eq 1; then run uenv_import; fi'
setenv bootcmd_usb'run usb_init; run set_bootargs_usb; run usb_boot'
setenv bootdelay 3
setenv console ttyS0,115200
setenv device 0:1
setenv ethact egiga0
setenv ethaddr 00:25:31:04:94:DD
setenv if_netconsole ping $serverip
setenv ipaddr 192.168.1.5
setenv led_error orange blinking
setenv led_exit green off
setenv led_init green blinking
setenv machid dd6
setenv mainlineLinux yes
setenv mmc_boot'mw 0x800000 0 1; run mmc_load_uimage; if run mmc_load_uinitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi'
setenv mmc_init mmc rescan
setenv mmc_load_uimage ext2load mmc $device 0x800000 /boot/uImage
setenv mmc_load_uinitrd ext2load mmc $device 0x1100000 /boot/uInitrd
setenv mmc_root /dev/mmcblk0p1
setenv mtdids nand0=orion_nand
setenv mtdparts mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
setenv partition nand0,2
setenv preboot run preboot_nc
setenv preboot_nc run if_netconsole start_netconsole
setenv rescue_installed 1
setenv rootdelay 10
setenv rootfstype ext3
setenv sata_boot'mw 0x800000 0 1; run sata_load_uimage; if run sata_load_uinitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi'
setenv sata_init ide reset
setenv sata_load_uimage ext2load ide $device 0x800000 /boot/uImage
setenv sata_load_uinitrd ext2load ide $device 0x1100000 /boot/uInitrd
setenv sata_root /dev/sda1
setenv serverip 192.168.1.13
setenv set_bootargs_mmc setenv bootargs console=$console root=$mmc_root rootdelay=$rootdelay rootfstype=$rootfstype $mtdparts
setenv set_bootargs_rescue setenv bootargs console=$console ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs $mtdparts
setenv set_bootargs_sata setenv bootargs console=$console root=$sata_root rootdelay=$rootdelay rootfstype=$rootfstype $mtdparts
setenv set_bootargs_usb setenv bootargs console=$console root=$usb_root rootdelay=$rootdelay rootfstype=$rootfstype $mtdparts
setenv start_netconsole'setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version'
setenv stderr serial
setenv stdin serial
setenv stdout serial
setenv uenv_import'echo importing envs ...; env import -t 0x810000'
setenv uenv_load'usb start; mmc rescan; ide reset; setenv uenv_loaded 0; for devtype in usb mmc ide; do for disknum in 0; do run uenv_read_disk; done; done'
setenv uenv_read'echo loading envs from $devtype $disknum ...; if load $devtype $disknum:1 0x810000 /boot/uEnv.txt; then setenv uenv_loaded 1; fi'
setenv 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'
setenv usb_boot'mw 0x800000 0 1; run usb_load_uimage; if run usb_load_uinitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi'
setenv usb_init usb start
setenv usb_load_uimage ext2load usb $device 0x800000 /boot/uImage
setenv usb_load_uinitrd ext2load usb $device 0x1100000 /boot/uInitrd
setenv usb_root /dev/sda1
was aber angenommen wird nach saveenv und printenv
arcNumber=3542
baudrate=115200
bootcmd_mmc=run mmc_init; run set_bootargs_mmc; run mmc_boot
bootcmd_pogo=run bootcmd_rescue
bootcmd_rescue=run set_bootargs_rescue; nand read.e 0x800000 0x100000 0x400000; bootm 0x800000
bootcmd_sata=run sata_init; run set_bootargs_sata; run sata_boot;
bootcmd_usb=run usb_init; run set_bootargs_usb; run usb_boot;
bootdelay=3
console=ttyS0,115200
device=0:1
ethact=egiga0
ethaddr=00:25:31:04:94:DD
if_netconsole=ping 192.168.1.1
ipaddr=192.168.1.5
led_error=orange blinking
led_exit=green off
led_init=green blinking
machid=dd6
mainlineLinux=yes
mmc_boot=mw 0x800000 0 1; run mmc_load_uimage; if run mmc_load_uinitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi
mmc_init=mmc rescan
mmc_load_uimage=ext2load mmc 0:1 0x800000 /boot/uImage
mmc_load_uinitrd=ext2load mmc 0:1 0x1100000 /boot/uInitrd
mmc_root=/dev/mmcblk0p1
mtdids=nand0=orion_nand
mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
partition=nand0,2
preboot=run preboot_nc
preboot_nc=run if_netconsole start_netconsole
rescue_installed=1
rootdelay=10
rootfstype=ext3
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 0:1 0x800000 /boot/uImage
sata_load_uinitrd=ext2load ide 0:1 0x1100000 /boot/uInitrd
sata_root=/dev/sda1
serverip=192.168.1.13
set_bootargs_mmc=setenv bootargs console=ttyS0,115200 root=/dev/mmcblk0p1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_rescue=setenv bootargs console=ttyS0,115200 ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_sata=setenv bootargs console=ttyS0,115200 root=/dev/sda1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_usb=setenv bootargs console=ttyS0,115200 root=/dev/sda1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
start_netconsole=setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version;
stderr=serial
stdin=serial
stdout=serial
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 0:1 0x800000 /boot/uImage
usb_load_uinitrd=ext2load usb 0:1 0x1100000 /boot/uInitrd
usb_root=/dev/sda1
Folgende Zeilen speichert er nicht . Geben ich diese falsch ein?
setenv bootcmd'run bootcmd_uenv; run bootcmd_usb; run bootcmd_mmc; run bootcmd_sata; run bootcmd_pogo; reset'
setenv bootcmd_uenv'run uenv_load; if test $uenv_loaded -eq 1; then run uenv_import; fi'
setenv uenv_import'echo importing envs ...; env import -t 0x810000'
setenv uenv_load'usb start; mmc rescan; ide reset; setenv uenv_loaded 0; for devtype in usb mmc ide; do for disknum in 0; do run uenv_read_disk; done; done'
setenv uenv_read'echo loading envs from $devtype $disknum ...; if load $devtype $disknum:1 0x810000 /boot/uEnv.txt; then setenv uenv_loaded 1; fi'
setenv 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'
Die ENV habe ich von Joerg.
https://www.digital-eliteboard.com/332497-pogo-e02-uboot-auf-aktuelle-version-updaten.html

Das sagt mir jetzt das Termin nach dem booten und geht nicht mehr weiter:
U-Boot 2014.07-tld-2 (Sep 20 2014 - 00:52:18)Pogo E02
SoC: Kirkwood 88F6281_A0
DRAM: 256 MiB
WARNING: Caches not enabled
NAND: 128 MiB
In: serial
Out: serial
Err: serial
Net: egiga0
Using egiga0 device
host 192.168.1.1 is alive
Kann mir da jemand helfen bitte?

Danke und viele Grüße
 
AW: uboot ENV's

@ spyer
habe mal kurz drübergesehen, da fehlen vermutlich Leerzeichen darum nimmt er die envs nicht
Das ganze sollte so aussehen:
im ersten Teil natürlich die "=" raus und die ' rein machen, aber vor den Hochkommas immer ein Leerzeichen
Bei einigen Variablen hast du die Hochkommas überhaupt nicht gemacht, du musst hier sauber arbeiten.
Wenn du im uboot arbeitest natürlich mit setenv und zum Schluss saveenv nicht vergessen!
Pogo E02 uboot2014.07-tld-2 good boot envs with NC and rescue System included V2.0

arcNumber=3542
baudrate=115200
bootcmd=run bootcmd_uenv;run bootcmd_usb; run bootcmd_mmc; run bootcmd_sata; run bootcmd_rescue; reset
bootcmd_mmc=run mmc_init;run set_bootargs_mmc; run mmc_boot
bootcmd_rescue=run set_bootargs_rescue; nand read.e0x800000 0x100000 0x400000; bootm 0x800000
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=00:25:31:04:xx:yy
if_netconsole=ping$serverip
ipaddr=192.168.100.2
led_error=orange blinking
led_exit=green off
led_init=green blinking
machid=dd6
mainlineLinux=yes
mmc_boot=mw 0x800000 0 1;run mmc_load_uimage; if run mmc_load_uinitrd; then bootm 0x800000 0x1100000;else bootm 0x800000; fi
mmc_init=mmc rescan
mmc_load_uimage=ext2loadmmc $device 0x800000 /boot/uImage
mmc_load_uinitrd=ext2loadmmc $device 0x1100000 /boot/uInitrd
mmc_root=/dev/mmcblk0p1
mtdids=nand0=orion_nand
mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
partition=nand0,2
preboot=run preboot_nc
preboot_nc=runif_netconsole start_netconsole
rescue_installed=1
rootdelay=10
rootfstype=ext3
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=ext2loadide $device 0x800000 /boot/uImage
sata_load_uinitrd=ext2loadide $device 0x1100000 /boot/uInitrd
sata_root=/dev/sda1
serverip=192.168.100.35
set_bootargs_mmc=setenvbootargs console=$console root=$mmc_root rootdelay=$rootdelay rootfstype=$rootfstype$mtdparts
set_bootargs_rescue=setenv bootargs console=$consoleubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs $mtdparts
set_bootargs_sata=setenvbootargs console=$console root=$sata_root rootdelay=$rootdelayrootfstype=$rootfstype $mtdparts
set_bootargs_usb=setenvbootargs console=$console root=$usb_root rootdelay=$rootdelayrootfstype=$rootfstype $mtdparts
start_netconsole=setenv ncip $serverip; setenvbootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version;
stderr=serial
stdin=serial
stdout=serial
uenv_import=echo importingenvs ...; env import -t 0x810000
uenv_load=usb start; mmcrescan; ide reset; setenv uenv_loaded 0; for devtype in usb mmc ide; do fordisknum in 0; do run uenv_read_disk; done; done
uenv_read=echo loading envsfrom $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 runuenv_read; fi;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=ext2loadusb $device 0x800000 /boot/uImage
usb_load_uinitrd=ext2loadusb $device 0x1100000 /boot/uInitrd
usb_root=/dev/sda1

## wenn du deinen neuen Kernel mit getrenntem DTB File laden möchtest benötigst du noch folgendes:
## Kommt eben drauf an wie dein Kollege den Kernel compiliert hat (mit integriertem DTB File oder ohne)

fw_setenv load_dtb 'ext2load usb 0:1 0x1c00000 /boot/dts/kirkwood-pogo_e02.dtb'
fw_setenv load_initrd 'ext2load usb 0:1 0x1100000 /boot/uInitrd'
fw_setenv load_uimage 'ext2load usb 0:1 0x800000 /boot/uImage'
fw_setenv usb_boot 'run load_dtb; run load_uimage; if run load_initrd; then bootm 0x800000 0x1100000 0x1c00000; else bootm 0x800000 - 0x1c00000; fi'
Wenn du dich meldest kann ich dir die relevanten Zeilen sagen.
joerg_999
 
Zuletzt bearbeitet:
AW: uboot ENV's

Hallo joerg_999,

habe die fehlenden nun mit Leertaste eingegeben.

aktueller stand env:
arcNumber=3542baudrate=115200
bootcmd=run bootcmd_uenv; run bootcmd_usb; run bootcmd_mmc; run bootcmd_sata; run bootcmd_pogo; reset
bootcmd_mmc=run mmc_init; run set_bootargs_mmc; run mmc_boot
bootcmd_pogo=run bootcmd_rescue
bootcmd_rescue=run set_bootargs_rescue; nand read.e 0x800000 0x100000 0x400000; bootm 0x800000
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=3
console=ttyS0,115200
device=0:1
ethact=egiga0
ethaddr=00:25:31:04:94:DD
ipaddr=192.168.1.5
led_error=orange blinking
led_exit=green off
led_init=green blinking
machid=dd6
mainlineLinux=yes
mmc_boot=mw 0x800000 0 1; run mmc_load_uimage; if run mmc_load_uinitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi
mmc_init=mmc rescan
mmc_load_uimage=ext2load mmc 0:1 0x800000 /boot/uImage
mmc_load_uinitrd=ext2load mmc 0:1 0x1100000 /boot/uInitrd
mmc_root=/dev/mmcblk0p1
mtdids=nand0=orion_nand
mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
partition=nand0,2
preboot=run preboot_nc
preboot_nc=run if_netconsole start_netconsole
rescue_installed=1
rootdelay=10
rootfstype=ext3
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 0:1 0x800000 /boot/uImage
sata_load_uinitrd=ext2load ide 0:1 0x1100000 /boot/uInitrd
sata_root=/dev/sda1
serverip=192.168.1.13
set_bootargs_mmc=setenv bootargs console=ttyS0,115200 root=/dev/mmcblk0p1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_rescue=setenv bootargs console=ttyS0,115200 ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_sata=setenv bootargs console=ttyS0,115200 root=/dev/sda1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_usb=setenv bootargs console=ttyS0,115200 root=/dev/sda1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
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_import=echo importing envs ...; env import -t 0x810000
uenv_load=usb start; mmc rescan; ide reset; setenv uenv_loaded 0; for devtype in usb mmc ide; 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 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_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 0:1 0x800000 /boot/uImage
usb_load_uinitrd=ext2load usb 0:1 0x1100000 /boot/uInitrd
usb_root=/dev/sda1

Habe aber ## Error: if_netconsole raus genommen damit er nicht bei host 192.168.1.1 is alive stehen bleibt.
Dafür kommt dann diese Meldung: ## Error: "if_netconsole" not defined
So startet er auch mit gesteckter Netzwerkkarte.
Wofür ist diese netconsole?
Jetzt bin im in deinem Fertigen Debian und würde die Netzwerkeinstellungen so einstellen wie du in deinem Post beschrieben hast.
https://www.digital-eliteboard.com/290292-installation-pogoplug-e02-debian-cardserver-mit-ipc.html
Bei Verwendung des CF/USB Sticks in verschiedenen Geräten sollte folgendes geändert werden:

## /etc/udev/rules.d/70-persistent-net.rules ## löschen
rm /etc/udev/rules.d/70-persistent-net.rules

## /lib/udev/rules.d/75-persistent-net-generator.rules ## bearbeiten
nano /lib/udev/rules.d/75-persistent-net-generator.rules

## den Eintrag "eth" auf "Eth" unter device name whitelist ändern und speichern ##<---- wichtige Änderung

# device name whitelist
KERNEL!="Eth*|ath*|Wlan*[0-9]|msh*|ra*|sta*|ctc*|lcs*|hsi*", \

Kann ich die Zeilen einfach so eingeben?
 
AW: uboot ENV's

arcNumber=3542baudrate=115200 da ist noch ein Fehler das sollten 2 Zeilen sein!
if_netconsole kannste drinnen lassen dauert nur max 10s länger wenn dein Server (PC) online ist dafür kannst du den Start über ein Windows Commandfenster mit ansehen oder abbrechen. (Auch wenn du keinen TTL Adapter hast)

Ändere mal was ich dir gesagt habe und versuche deinen Stick zu booten

PS: die Ausgabe der printenv sollte genau so aussehen wie ich sie dir oben gezeigt habe!
 
Zuletzt bearbeitet:
AW: uboot ENV's

Hallo,

bin noch alles durchgegangen:

letzter stand Eingabe:

setenv arcNumber 3542
setenv baudrate 115200
setenv bootcmd 'run bootcmd_uenv; run bootcmd_usb; run bootcmd_mmc; run bootcmd_sata; run bootcmd_rescue; reset '
setenv bootcmd_mmc 'run mmc_init; run set_bootargs_mmc; run mmc_boot '
setenv bootcmd_rescue 'run set_bootargs_rescue; nand read.e0x800000 0x100000 0x400000; bootm 0x800000 '
setenv bootcmd_sata 'run sata_init; run set_bootargs_sata; run sata_boot '
setenv bootcmd_uenv 'run uenv_load; if test $uenv_loaded -eq 1; then run uenv_import; fi '
setenv bootcmd_usb 'run usb_init; run set_bootargs_usb; run usb_boot '
setenv bootdelay 3
setenv console ttyS0,115200
setenv device 0:1
setenv ethact egiga0
setenv ethaddr 00:25:31:04:94:DD
setenv if_netconsole ping $serverip
setenv ipaddr 192.168.1.5
setenv led_error orange blinking
setenv led_exit green off
setenv led_init green blinking
setenv machid dd6
setenv mainlineLinux yes
setenv mmc_boot 'mw 0x800000 0 1; run mmc_load_uimage; if run mmc_load_uinitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi '
setenv mmc_init mmc rescan
setenv mmc_load_uimage ext2load mmc $device 0x800000 /boot/uImage
setenv mmc_load_uinitrd ext2load mmc $device 0x1100000 /boot/uInitrd
setenv mmc_root /dev/mmcblk0p1
setenv mtdids nand0=orion_nand
setenv mtdparts mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
setenv partition nand0,2
setenv preboot run preboot_nc
setenv preboot_nc run if_netconsole start_netconsole
setenv rescue_installed 1
setenv rootdelay 10
setenv rootfstype ext3
setenv sata_boot'mw 0x800000 0 1; run sata_load_uimage; if run sata_load_uinitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi'
setenv sata_init ide reset
setenv sata_load_uimage ext2load ide $device 0x800000 /boot/uImage
setenv sata_load_uinitrd ext2load ide $device 0x1100000 /boot/uInitrd
setenv sata_root /dev/sda1
setenv serverip 192.168.1.13
setenv set_bootargs_mmc setenv bootargs console=$console root=$mmc_root rootdelay=$rootdelay rootfstype=$rootfstype $mtdparts
setenv set_bootargs_rescue setenv bootargs console=$console ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs $mtdparts
setenv set_bootargs_sata setenv bootargs console=$console root=$sata_root rootdelay=$rootdelay rootfstype=$rootfstype $mtdparts
setenv set_bootargs_usb setenv bootargs console=$console root=$usb_root rootdelay=$rootdelay rootfstype=$rootfstype $mtdparts
setenv start_netconsole 'setenv ncip $serverip; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version '
setenv stderr serial
setenv stdin serial
setenv stdout serial
setenv uenv_import 'echo importing envs ...; env import -t 0x810000 '
setenv uenv_load 'usb start; mmc rescan; ide reset; setenv uenv_loaded 0; for devtype in usb mmc ide; do for disknum in 0; do run uenv_read_disk; done; done '
setenv uenv_read 'echo loading envs from $devtype $disknum ...; if load $devtype $disknum:1 0x810000 /boot/uEnv.txt; then setenv uenv_loaded 1; fi '
setenv 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 '
setenv usb_boot'mw 0x800000 0 1; run usb_load_uimage; if run usb_load_uinitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi'
setenv usb_init usb start
setenv usb_load_uimage ext2loadusb $device 0x800000 /boot/uImage
setenv usb_load_uinitrd ext2loadusb $device 0x1100000 /boot/uInitrd
setenv usb_root /dev/sda1
letzter stand ausgabe:
arcNumber=3542
baudrate=115200
bootcmd=run bootcmd_uenv; run bootcmd_usb; run bootcmd_mmc; run bootcmd_sata; run bootcmd_rescue; reset
bootcmd_mmc=run mmc_init; run set_bootargs_mmc; run mmc_boot
bootcmd_pogo=run bootcmd_rescue
bootcmd_rescue=run set_bootargs_rescue; nand read.e0x800000 0x100000 0x400000; bootm 0x800000
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=3
console=ttyS0,115200
device=0:1
ethact=egiga0
ethaddr=00:25:31:04:94:DD
ipaddr=192.168.1.5
led_error=orange blinking
led_exit=green off
led_init=green blinking
machid=dd6
mainlineLinux=yes
mmc_boot=mw 0x800000 0 1; run mmc_load_uimage; if run mmc_load_uinitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi
mmc_init=mmc rescan
mmc_load_uimage=ext2load mmc 0:1 0x800000 /boot/uImage
mmc_load_uinitrd=ext2load mmc 0:1 0x1100000 /boot/uInitrd
mmc_root=/dev/mmcblk0p1
mtdids=nand0=orion_nand
mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
partition=nand0,2
preboot=run preboot_nc
preboot_nc=run if_netconsole start_netconsole
rescue_installed=1
rootdelay=10
rootfstype=ext3
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 0:1 0x800000 /boot/uImage
sata_load_uinitrd=ext2load ide 0:1 0x1100000 /boot/uInitrd
sata_root=/dev/sda1
serverip=192.168.1.13
set_bootargs_mmc=setenv bootargs console=ttyS0,115200 root=/dev/mmcblk0p1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_rescue=setenv bootargs console=ttyS0,115200 ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_sata=setenv bootargs console=ttyS0,115200 root=/dev/sda1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_usb=setenv bootargs console=ttyS0,115200 root=/dev/sda1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
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_import=echo importing envs ...; env import -t 0x810000
uenv_load=usb start; mmc rescan; ide reset; setenv uenv_loaded 0; for devtype in usb mmc ide; 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 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_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=ext2loadusb 0:1 0x800000 /boot/uImage
usb_load_uinitrd=ext2loadusb 0:1 0x1100000 /boot/uInitrd
usb_root=/dev/sda1


Environment size: 3262/131068 bytes

Alles gut? Was meinst du mit unsauber bei ' und =? Dürfen überhaupt keine "=" sein?


edit:

Jetzt bootet er wieder debian nicht und nennt ein fehler. Diesmal bin über die Netconsole drin.
U-Boot 2014.07-tld-2 (Sep 20 2014 - 00:52:18)Pogo E02
gcc (Debian 4.6.3-14) 4.6.3
GNU ld (GNU Binutils for Debian) 2.22
Hit any key to stop autoboot: 0
(Re)start USB...
USB0: USB EHCI 1.00
scanning bus 0 for devices... 3 USB Device(s) found
scanning usb for storage devices... 1 Storage Device(s) found
Unknown command 'mmc' - try 'help'
Unknown command 'ide' - try 'help'


Partition Map for USB device 0 -- Partition Type: DOS


Part Start Sector Num Sectors UUID Type
1 62 2932910 00000000-01 83 Boot
2 2932972 980220 00000000-02 82
loading envs from usb 0 ...
** File not found /boot/uEnv.txt **
Unknown command 'mmc' - try 'help'
Unknown command 'ide' - try 'help'
(Re)start USB...
USB0: USB EHCI 1.00
scanning bus 0 for devices... 3 USB Device(s) found
scanning usb for storage devices... 1 Storage Device(s) found
Unknown command 'ext2loadusb' - try 'help'
Unknown command 'ext2loadusb' - try 'help'
Wrong Image Format for bootm command
ERROR: can't get kernel image!
Unknown command 'mmc' - try 'help'
** Bad device mmc 0 **
** Bad device mmc 0 **
Wrong Image Format for bootm command
ERROR: can't get kernel image!
Unknown command 'ide' - try 'help'
** Bad device ide 0 **
** Bad device ide 0 **
Wrong Image Format for bootm command
ERROR: can't get kernel image!


NAND read: device 0 offset 0x400000, size 0x7c00000
size adjusted to 0x7be0000 (1 bad blocks)
Unknown nand command suffix '.e0x800000'.
Wrong Image Format for bootm command
ERROR: can't get kernel image!
resetting ...
 
Zuletzt bearbeitet von einem Moderator:
AW: uboot ENV's

Nein das passt schon du hast einen Kernel bei dem der DTB File getrennt geladen wird.
gib den unteren Teil der envs noch ein di dafür benötigt werden - natürlich mit setenv
 
AW: uboot ENV's

Kann mir das bitte Zeile für Zeile vorschreiben bitte, damit ich nun die richtige Eingabe habe.
Im Netz und Forum finde ich dazu keine offline Möglichkeit.
Bin ich der Einzige der das Problem je hatte?
 
AW: uboot ENV's

## wenn du deinen neuen Kernel mit getrenntem DTB File laden möchtest benötigst du noch folgendes:
## Kommt eben drauf an wie dein Kollege den Kernel compiliert hat (mit integriertem DTB File oder ohne)

setenv load_dtb 'ext2load usb 0:1 0x1c00000 /boot/dts/kirkwood-pogo_e02.dtb'
setenv load_initrd 'ext2load usb 0:1 0x1100000 /boot/uInitrd'
setenv load_uimage 'ext2load usb 0:1 0x800000 /boot/uImage'
setenv usb_boot 'run load_dtb; run load_uimage; if run load_initrd; then bootm 0x800000 0x1100000 0x1c00000; else bootm 0x800000 - 0x1c00000; fi'
saveenv
 
AW: uboot ENV's

Nein das passt schon du hast einen Kernel bei dem der DTB File getrennt geladen wird.
gib den unteren Teil der envs noch ein di dafür benötigt werden - natürlich mit setenv

Gleicher fehler?
PogoE02> boot b o o t
(Re)start USB...
USB0: USB EHCI 1.00
scanning bus 0 for devices... 3 USB Device(s) found
scanning usb for storage devices... 1 Storage Device(s) found
Unknown command 'mmc' - try 'help'
Unknown command 'ide' - try 'help'


Partition Map for USB device 0 -- Partition Type: DOS


Part Start Sector Num Sectors UUID Type
1 62 2932910 00000000-01 83 Boot
2 2932972 980220 00000000-02 82
loading envs from usb 0 ...
** File not found /boot/uEnv.txt **
Unknown command 'mmc' - try 'help'
Unknown command 'ide' - try 'help'
(Re)start USB...
USB0: USB EHCI 1.00
scanning bus 0 for devices... 3 USB Device(s) found
scanning usb for storage devices... 1 Storage Device(s) found
Unknown command 'ext2loadusb' - try 'help'
Unknown command 'ext2loadusb' - try 'help'
Wrong Image Format for bootm command
ERROR: can't get kernel image!
Unknown command 'mmc' - try 'help'
** Bad device mmc 0 **
** Bad device mmc 0 **
Wrong Image Format for bootm command
ERROR: can't get kernel image!
Unknown command 'ide' - try 'help'
** Bad device ide 0 **
** Bad device ide 0 **
Wrong Image Format for bootm command
ERROR: can't get kernel image!


NAND read: device 0 offset 0x400000, size 0x7c00000
size adjusted to 0x7be0000 (1 bad blocks)
Unknown nand command suffix '.e0x800000'.
Wrong Image Format for bootm command
ERROR: can't get kernel image!
resetting ...


U-Boot 2014.07-tld-2 (Sep 20 2014 - 00:52:18)
Pogo E02
gcc (Debian 4.6.3-14) 4.6.3
GNU ld (GNU Binutils for Debian) 2.22
Hit any key to stop autoboot: 7
 
AW: uboot ENV's

gib mir mal printenv vom uboot

Hallo joerg_999,

printenv:
arcNumber=3542
baudrate=115200
bootcmd=run bootcmd_uenv; run bootcmd_usb; run bootcmd_mmc; run bootcmd_sata; run bootcmd_rescue; reset
bootcmd_mmc=run mmc_init; run set_bootargs_mmc; run mmc_boot
bootcmd_pogo=run bootcmd_rescue
bootcmd_rescue=run set_bootargs_rescue; nand read.e0x800000 0x100000 0x400000; bootm 0x800000
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=00:25:31:04:94:DD
fw_setenv=usb_boot run load_dtb; run load_uimage; if run load_initrd; then bootm 0x800000 0x1100000 0x1c00000; else bootm 0x800000 - 0x1c00000; fi
if_netconsole=ping 192.168.1.13
ipaddr=192.168.1.5
led_error=orange blinking
led_exit=green off
led_init=green blinking
machid=dd6
mainlineLinux=yes
mmc_boot=mw 0x800000 0 1; run mmc_load_uimage; if run mmc_load_uinitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi
mmc_init=mmc rescan
mmc_load_uimage=ext2load mmc 0:1 0x800000 /boot/uImage
mmc_load_uinitrd=ext2load mmc 0:1 0x1100000 /boot/uInitrd
mmc_root=/dev/mmcblk0p1
mtdids=nand0=orion_nand
mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
ncip=192.168.1.13
partition=nand0,2
preboot=run preboot_nc
preboot_nc=run if_netconsole start_netconsole
rescue_installed=1
rootdelay=10
rootfstype=ext3
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 0:1 0x800000 /boot/uImage
sata_load_uinitrd=ext2load ide 0:1 0x1100000 /boot/uInitrd
sata_root=/dev/sda1
serverip=192.168.1.13
set_bootargs_mmc=setenv bootargs console=ttyS0,115200 root=/dev/mmcblk0p1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_rescue=setenv bootargs console=ttyS0,115200 ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_sata=setenv bootargs console=ttyS0,115200 root=/dev/sda1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_usb=setenv bootargs console=ttyS0,115200 root=/dev/sda1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
setenv=mtdparts mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
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_load=usb start; mmc rescan; ide reset; setenv uenv_loaded 0; for devtype in usb mmc ide; 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 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_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=ext2loadusb 0:1 0x800000 /boot/uImage
usb_load_uinitrd=ext2loadusb 0:1 0x1100000 /boot/uInitrd
usb_root=/dev/sda1

uboot:
U-Boot 2014.07-tld-2 (Sep 20 2014 - 00:52:18)Pogo E02
gcc (Debian 4.6.3-14) 4.6.3
GNU ld (GNU Binutils for Debian) 2.22

Danke
 
AW: uboot ENV's

Da fehlt mir was in der Ausgabe oder habe ich es übersehen?
Hast du diese variablen noch gesetzt und abgespeichert?
setenv load_dtb 'ext2load usb 0:1 0x1c00000 /boot/dts/kirkwood-pogo_e02.dtb'
setenv load_initrd 'ext2load usb 0:1 0x1100000 /boot/uInitrd'
setenv load_uimage 'ext2load usb 0:1 0x800000 /boot/uImage'
setenv usb_boot 'run load_dtb; run load_uimage; if run load_initrd; then bootm 0x800000 0x1100000 0x1c00000; else bootm 0x800000 - 0x1c00000; fi'
saveenv
 
AW: uboot ENV's

Eigentlich schon.
Hab die aber gerade eingegeben.
PogoE02> printenv p r i n t e n v
arcNumber=3542
baudrate=115200
bootcmd=run bootcmd_uenv; run bootcmd_usb; run bootcmd_mmc; run bootcmd_sata; run bootcmd_rescue; reset
bootcmd_mmc=run mmc_init; run set_bootargs_mmc; run mmc_boot
bootcmd_pogo=run bootcmd_rescue
bootcmd_rescue=run set_bootargs_rescue; nand read.e0x800000 0x100000 0x400000; bootm 0x800000
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=00:25:31:04:94:DD
fw_setenv=usb_boot run load_dtb; run load_uimage; if run load_initrd; then bootm 0x800000 0x1100000 0x1c00000; else bootm 0x800000 - 0x1c00000; fi
if_netconsole=ping 192.168.1.13
ipaddr=192.168.1.5
led_error=orange blinking
led_exit=green off
led_init=green blinking
load_dtb=ext2load usb 0:1 0x1c00000 /boot/dts/kirkwood-pogo_e02.dtb
load_initrd=ext2load usb 0:1 0x1100000 /boot/uInitrd
load_uimage=ext2load usb 0:1 0x800000 /boot/uImage
machid=dd6
mainlineLinux=yes
mmc_boot=mw 0x800000 0 1; run mmc_load_uimage; if run mmc_load_uinitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi
mmc_init=mmc rescan
mmc_load_uimage=ext2load mmc 0:1 0x800000 /boot/uImage
mmc_load_uinitrd=ext2load mmc 0:1 0x1100000 /boot/uInitrd
mmc_root=/dev/mmcblk0p1
mtdids=nand0=orion_nand
mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
ncip=192.168.1.13
partition=nand0,2
preboot=run preboot_nc
preboot_nc=run if_netconsole start_netconsole
rescue_installed=1
rootdelay=10
rootfstype=ext3
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 0:1 0x800000 /boot/uImage
sata_load_uinitrd=ext2load ide 0:1 0x1100000 /boot/uInitrd
sata_root=/dev/sda1
serverip=192.168.1.13
set_bootargs_mmc=setenv bootargs console=ttyS0,115200 root=/dev/mmcblk0p1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_rescue=setenv bootargs console=ttyS0,115200 ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_sata=setenv bootargs console=ttyS0,115200 root=/dev/sda1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
set_bootargs_usb=setenv bootargs console=ttyS0,115200 root=/dev/sda1 rootdelay=10 rootfstype=ext3 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
setenv=mtdparts mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
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_load=usb start; mmc rescan; ide reset; setenv uenv_loaded 0; for devtype in usb mmc ide; 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 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_boot=run load_dtb; run load_uimage; if run load_initrd; then bootm 0x800000 0x1100000 0x1c00000; else bootm 0x800000 - 0x1c00000; fi
usb_init=usb start
usb_load_uimage=ext2loadusb 0:1 0x800000 /boot/uImage
usb_load_uinitrd=ext2loadusb 0:1 0x1100000 /boot/uInitrd
usb_root=/dev/sda1

edit: Gleicher Fehler:
U-Boot 2014.07-tld-2 (Sep 20 2014 - 00:52:18)Pogo E02
gcc (Debian 4.6.3-14) 4.6.3
GNU ld (GNU Binutils for Debian) 2.22
Hit any key to stop autoboot: 0
(Re)start USB...
USB0: USB EHCI 1.00
scanning bus 0 for devices... 3 USB Device(s) found
scanning usb for storage devices... 1 Storage Device(s) found
Unknown command 'mmc' - try 'help'
Unknown command 'ide' - try 'help'


Partition Map for USB device 0 -- Partition Type: DOS


Part Start Sector Num Sectors UUID Type
1 62 2932910 00000000-01 83 Boot
2 2932972 980220 00000000-02 82
loading envs from usb 0 ...
** File not found /boot/uEnv.txt **
Unknown command 'mmc' - try 'help'
Unknown command 'ide' - try 'help'
(Re)start USB...
USB0: USB EHCI 1.00
scanning bus 0 for devices... 3 USB Device(s) found
scanning usb for storage devices... 1 Storage Device(s) found
** File not found /boot/dts/kirkwood-pogo_e02.dtb **
2221032 bytes read in 359 ms (5.9 MiB/s)
5962267 bytes read in 562 ms (10.1 MiB/s)
## Booting kernel from Legacy Image at 00800000 ...
Image Name: Linux-3.11.1-kirkwood-tld-2
Created: 2013-11-02 18:40:37 UTC
Image Type: ARM Linux Kernel Image (uncompressed)
Data Size: 2220968 Bytes = 2.1 MiB
Load Address: 00008000
Entry Point: 00008000
Verifying Checksum ... OK
## Loading init Ramdisk from Legacy Image at 01100000 ...
Image Name: initramfs-3.11.1-kirkwood-tld-2
Created: 2013-11-02 18:40:49 UTC
Image Type: ARM Linux RAMDisk Image (gzip compressed)
Data Size: 5962203 Bytes = 5.7 MiB
Load Address: 00000000
Entry Point: 00000000
Verifying Checksum ... OK
ERROR: Did not find a cmdline Flattened Device Tree
Could not find a valid device tree
Unknown command 'mmc' - try 'help'
** Bad device mmc 0 **
** Bad device mmc 0 **
Wrong Image Format for bootm command
ERROR: can't get kernel image!
Unknown command 'ide' - try 'help'
** Bad device ide 0 **
** Bad device ide 0 **
Wrong Image Format for bootm command
ERROR: can't get kernel image!


NAND read: device 0 offset 0x400000, size 0x7c00000
size adjusted to 0x7be0000 (1 bad blocks)
Unknown nand command suffix '.e0x800000'.
Wrong Image Format for bootm command
ERROR: can't get kernel image!
resetting ...
 
AW: uboot ENV's

Das wäre super. Würde gerne das Thema abschließen was ich schon seit ner Woche mit mir schleppe.
 
Zurück
Oben