보드를 부팅하여 u-boot모드로 진입을 합니다 . u-boot에서 “ ? / help”명령어를 실행하시면 아래와 같은 메시지가 출력됩니다 .
V210 # ?
? - alias for 'help'
autoscr - run script from memory
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'
bootelf - Boot from an ELF image in memory
bootm - boot application image from memory
bootp - boot image via network using BootP/TFTP protocol
bootvx - Boot vxWorks from an ELF image
cmp - memory compare
coninfo - print console devices and information
cp - memory copy
crc32 - checksum calculation
dcache - enable or disable data cache
dhcp - invoke DHCP client to obtain IP/boot params
dnw - initialize USB device and ready to receive for Windows server (specific)
echo - echo args to console
erase - erase FLASH memory
exit - exit script
flinfo - print FLASH memory information
go - start application at address 'addr'
help - print online help
icache - enable or disable instruction cache
iminfo - print header information for application image
imls - list all images found in flash
imxtract- extract a part of a multi-image
itest - return true/false on integer compare
test pattern
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
mm - memory modify (auto-incrementing)
MMC sub systemprint MMC informationmovi - sd/mmc r/w sub system for SMDK board
mtest - simple RAM test
mw - memory write (fill)
nand - NAND sub-system
nboot - boot from NAND device
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
protect - enable or disable FLASH write protection
rarpboot- boot image via network using RARP/TFTP protocol
reset - Perform RESET of the CPU
reginfo - print register information
reset - Perform RESET of the CPU
run - run commands in an environment variable
saveenv - save environment variables to persistent storage
setenv - set environment variables
sleep - delay execution for some time
test - minimal test like /bin/sh
tftpboot- boot image via network using TFTP protocol version - print monitor version
V210 #
출력된 메시지 중에서 loadb / loady를 확인 하실 수 있습니다 . 이 명령어를 이용하시면 이미지 다운로드를 serial로 할 수 가 있습니다 .
당사에서는 loadb를 이용하여 이미지 다운로드를 테스트하였습니다 . 테스트한 이미지는 u-boot / zImage입니다 .
아래와 같이 명령어를 실행한 다음 파일을 불러옵니다 .
V210 # loadb 24000000 ## Ready for binary (kermit) download to 0x24000000 at 115200 bps...
하이퍼터미널에서 전송 ? 파일 보내기를 클릭합니다 .
“찾아보기”를 클릭하여 파일이 있는 폴더로 이동 다운로드 할 이미지를 클릭합니다 .
파일이 전송되는 모습입니다 .
이미지다운로드가 완료가 된 후에 아래 명령어를 이용하여 NAND Flash에 이미지를 write합니다 .
완료된 후 출력된 메시지
## Ready for binary (kermit) download to 0x24000000 at 115200 bps...
## Total Size = 0x0028de48 = 2678344 Bytes
## Start Addr = 0x24000000
V210 #
write 명령어
V210 # nand write 24000000 0 40000 ? u-boot
V210 # nand write 24000000 00600000 00300000 ? zIamge
파일 시스템은 이미지 size가 커서 다운로드 테스트는 하지 않았습니다 . 방법은 위와 동일합니다
|