1. nand scrub
- nand 의 모든 영역을 지우는 명령어
2. nand erase 'start_address' 'end_address'
- nand 의 특정 영역을 지우는 명령어.
- 'start_address'와 'end_address' 영역의 nand 내용을 지운다.
- 'start_address'와 'end_address'에는 16진수를 써 넣는다. 단 0x는 붙이지 않는다.
ex) # nand erase 0 8000
3. printenv
- 환경 설정값을 읽어오는 명령어
4. setenv '환경변수'
- u-boot에서 사용하는 환경변수를 설정하는 명령어
ex) # setenv ipaddr 192.168.1.3
# setenv bootargs "rootfstype=jffs2 root=/dev/mtdblock2 init=/init console=ttySAC1,115200"
5. saveenv
- 설정 변경된 값을 저장하는 명령어
- setenv 명령 후, 반드시 save를 해야 적용 됨
6. nand read [to:ram addr] [from:rom addr] [image size]
- rom에 있는 image를 size 만큼 읽어, ram에 올리는 명령어
ex) # nand read 30008000 40000 300000
7. nand write [from: ram addr] [to: rom addr] [image size]
- ram에 있는 image를, rom에 size만큼 올리는 명령어
ex) nand write 30008000 40000 300000
8. bootm [ram addr]
- ram addr로 이동하여 image를 수행하는 명령어
ex) bootm 30008000
- nand 의 모든 영역을 지우는 명령어
2. nand erase 'start_address' 'end_address'
- nand 의 특정 영역을 지우는 명령어.
- 'start_address'와 'end_address' 영역의 nand 내용을 지운다.
- 'start_address'와 'end_address'에는 16진수를 써 넣는다. 단 0x는 붙이지 않는다.
ex) # nand erase 0 8000
3. printenv
- 환경 설정값을 읽어오는 명령어
4. setenv '환경변수'
- u-boot에서 사용하는 환경변수를 설정하는 명령어
ex) # setenv ipaddr 192.168.1.3
# setenv bootargs "rootfstype=jffs2 root=/dev/mtdblock2 init=/init console=ttySAC1,115200"
5. saveenv
- 설정 변경된 값을 저장하는 명령어
- setenv 명령 후, 반드시 save를 해야 적용 됨
6. nand read [to:ram addr] [from:rom addr] [image size]
- rom에 있는 image를 size 만큼 읽어, ram에 올리는 명령어
ex) # nand read 30008000 40000 300000
7. nand write [from: ram addr] [to: rom addr] [image size]
- ram에 있는 image를, rom에 size만큼 올리는 명령어
ex) nand write 30008000 40000 300000
8. bootm [ram addr]
- ram addr로 이동하여 image를 수행하는 명령어
ex) bootm 30008000