smart210 【u-boot-2014.04】移植之建立单板

reference : goni
gcc : arm-linux-gcc-4.5.1

1.建立单板
    vim Makefile
        CROSS_COMPILE ?= /home/flinn/tools/4.5.1/bin/arm-none-linux-gnueabi-

    cp -r board/samsung/goni/ board/samsung/smart210
    mv board/samsung/smart210/goni.c board/samsung/smart210/smart210.c
    vim board/samsung/smart210/Makefile
        obj-y   := smart210.o onenand.o
        
    cp include/configs/s5p_goni.h include/configs/smart210.h
    vim boards.cfg
        Active  arm         armv7    s5pc1xx     samsung       smart210    smart210     -       Flinn


    make smart210_config
    make all
    
2.烧录
    ./mkmini210 u-boot.bin u-boot.16k
    sudo dd iflag=dsync oflag=dsync if=u-boot.16k of=/dev/sdc seek=1
    sudo dd iflag=dsync oflag=dsync if=u-boot.bin of=/dev/sdc seek=49
    
    没有任何输出

你可能感兴趣的:(smart210)