私はAm-1808ボード(evmズームキット)を持っています。現在、spiフラッシュにublとubootがあり、SDカードにファイルシステムとkernel(uImage)があり、am-1808ボードでLinuxを実行するための手順に従いました。ここ:
usbからLinuxを起動することを説明できる公式のリファレンス/ドキュメントが見つかりません。ファイルシステムとカーネルをusbに配置し、ubootにusbを探してsdの代わりにusbからuImageを見つけるように指示することは可能ですか?カード。はいの場合、その方法を説明できますか?
SDカードからuImageを探すu-bootコードの部分は次のとおりです。
#define CONFIG_BOOTARGS "mem=32M console=ttyS2,115200n8 root=/dev/mmcblk0p2 rw rootwait ip=off"
#define CONFIG_BOOTCOMMAND "if mmc rescan 0; then if fatload mmc 0 0xc0600000 boot.scr; then source 0xc0600000; else fatload mmc 0 0xc0700000 uImage; bootm c0700000; fi; else sf probe 0; sf read 0xc0700000 0x80000 0x220000; bootm 0xc0700000; fi"
他の目的でsdカードピン(mmc0)を使用する必要があったため、ファイルシステム+uImageを配置するためにsd-cardの代わりにusbを使用する必要があります。
アップデート:
これは、usbからLinuxを起動することを説明していますが、問題は、u-bootが「usb」コマンドを認識しないことです。「usbreset」と入力すると、次のエラーが発生します。
U-Boot > usb reset
Unknown command 'usb' - try 'help'
'usb'コマンドは、'help'コマンドによって表示される使用可能なコマンドのリストにも表示されません。
U-Boot > help
? - alias for 'help'
askenv - get environment variables from stdin
base - print or set address offset
bdinfo - print Board Info structure
boot - boot default, i.e., run 'bootcmd'
bootd - boot default, i.e., run 'bootcmd'
bootm - boot application image from memory
bootp - boot image via network using BOOTP/TFTP protocol
cmp - memory compare
coninfo - print console devices and information
cp - memory copy
crc32 - checksum calculation
dhcp - boot image via network using DHCP/TFTP protocol
echo - echo args to console
editenv - edit environment variable
env - environment handling commands
exit - exit script
ext2load- load binary file from a Ext2 filesystem
ext2ls - list files in a directory (default /)
false - do nothing, unsuccessfully
fatinfo - print information about filesystem
fatload - load binary file from a dos filesystem
fatls - list files in a directory (default /)
go - start application at address 'addr'
help - print command description/usage
iminfo - print header information for application image
imxtract- extract a part of a multi-image
itest - return true/false on integer compare
loadb - load binary file over serial line (kermit mode)
loads - load S-Record file over serial line
loady - load binary file over serial line (ymodem mode)
loop - infinite loop on address range
md - memory display
mdc - memory display cyclic
mii - MII utility commands
mm - memory modify (auto-incrementing address)
mmc - MMC sub system
mmcinfo - display MMC info
mtest - simple RAM read/write test
mw - memory write (fill)
mwc - memory write cyclic
nfs - boot image via network using NFS protocol
nm - memory modify (constant address)
ping - send ICMP ECHO_REQUEST to network host
printenv- print environment variables
reset - Perform RESET of the CPU
run - run commands in an environment variable
saveenv - save environment variables to persistent storage
saves - save S-Record file over serial line
setenv - set environment variables
sf - SPI flash sub-system
showvar - print local hushshell variables
sleep - delay execution for some time
source - run script from memory
sspi - SPI utility command
test - minimal test like /bin/sh
tftpboot- boot image via network using TFTP protocol
true - do nothing, successfully
version - print monitor version
u-bootで「usb」コマンドを指定するにはどうすればよいですか?ubootを新しいバージョンにアップグレードする必要がありますか?
よろしく
うさま