web-dev-qa-db-fra.com

ubuntu core webdm alpha pour Beaglebone Black ne démarre pas

J'ai essayé la carte SD clignotante pour Beaglebone Black avec l'image `` Ubuntu Core WEBDM '', c'est-à-dire `` ubuntu-core-WEBDM-alpha-02_armhf-bbb.img '' comme mentionné dans les étapes ici .

Mais le système n'est pas démarré. J'ai l'erreur suivante capturée dans la console série. Merci d'avance pour vos suggestions et votre aide.

Depuis la console:

Net:   <ethaddr> not set. Validating first E-Fuse MAC
cpsw, usb_ether
Hit any key to stop autoboot:  0 
switch to partitions #0, OK
mmc0 is current device
SD/MMC found on device 0
reading boot.scr
** Unable to read file boot.scr **
reading uEnv.txt
237 bytes read in 12 ms (18.6 KiB/s)
Loaded environment from uEnv.txt
Importing environment from mmc ...
Running uenvcmd ...
** File not found snappy-system.txt **
## Error: "snappy_boot" not defined
** File not found /boot/zImage **
switch to partitions #0, OK
mmc1(part 0) is current device
SD/MMC found on device 1
reading boot.scr
** Unable to read file boot.scr **
reading uEnv.txt
** Unable to read file uEnv.txt **
Running uenvcmd ...
** File not found snappy-system.txt **
## Error: "snappy_boot" not defined
** File not found /boot/zImage **
## Error: "nandboot" not defined
U-Boot#
1
Parthiban

Il semble Env.txt (sur votre carte SD) est faux. Changement ${bootpart} à ${mmcdev}:${mmcpart}, c'est à dire.

# where to load initrd
initrd_addr=0x88080000
# load Snappy environment and call into Snappy boot after processing this file
uenvcmd=load mmc ${mmcdev}:${mmcpart} ${loadaddr} snappy-system.txt; env import -t $loadaddr $filesize; run snappy_boot

Cela devrait corriger l'erreur "Fichier introuvable snappy-system.txt" et permettre à U-Boot de continuer.

2
tamberg