diff --git a/include/configs/sun8i.h b/include/configs/sun8i.h index 6ac42acaea..03b684fd07 100644 --- a/include/configs/sun8i.h +++ b/include/configs/sun8i.h @@ -32,4 +32,20 @@ */ #include +#undef CONFIG_BOOTCOMMAND +#undef CONFIG_BOOTARGS + +#define CONFIG_BOOTARGS \ + "console=ttyS0,115200 loglevel=3 root=/dev/nfs rw " \ + "nfsroot=192.168.101.22:/home/nearology/work/openwrt/bin/targets/sunxi/cortexa7/extracted-rootfs,nfsvers=3,tcp " \ + "ip=192.168.101.200:192.168.101.22::255.255.254.0::eth0:off" + +#define CONFIG_BOOTCOMMAND \ + "setenv ipaddr 192.168.101.200; " \ + "setenv serverip 192.168.101.22; " \ + "tftpboot 0x40800000 zImage; " \ + "tftpboot 0x41800000 sun8i-v3s-licheepi-zero-dock.dtb; " \ + "setenv bootargs " CONFIG_BOOTARGS "; " \ + "bootz 0x40800000 - 0x41800000" + #endif /* __CONFIG_H */