configs: update bootargs and bootcommand for Allwinner V3s SoC

This commit is contained in:
2026-05-18 15:06:03 +03:30
parent 5ed71264bb
commit 951642e2a3
+16
View File
@@ -32,4 +32,20 @@
*/ */
#include <configs/sunxi-common.h> #include <configs/sunxi-common.h>
#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 */ #endif /* __CONFIG_H */