From 951642e2a32995bb7b856a7961ad52ce32c105bd Mon Sep 17 00:00:00 2001 From: nearology Date: Mon, 18 May 2026 15:06:03 +0330 Subject: [PATCH] configs: update bootargs and bootcommand for Allwinner V3s SoC --- include/configs/sun8i.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 */