From 9ed8b8769534761b04445718acd3d3ec36c1bfdf Mon Sep 17 00:00:00 2001 From: Niklas Cassel Date: Mon, 2 Sep 2024 12:44:33 +0200 Subject: [PATCH] configs/rock5b: enable DHCP for eth0 Enable DHCP for eth0. This is perfectly fine even for users that are not using the Ethernet on the rock5b, as in that case, udhcpc will simply fork to background without delaying the boot. Signed-off-by: Niklas Cassel Signed-off-by: Thomas Petazzoni --- configs/rock5b_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/rock5b_defconfig b/configs/rock5b_defconfig index 899537c001..e3c4414948 100644 --- a/configs/rock5b_defconfig +++ b/configs/rock5b_defconfig @@ -46,6 +46,7 @@ BR2_PACKAGE_HOST_DOSFSTOOLS=y BR2_PACKAGE_HOST_DTC=y BR2_PACKAGE_HOST_GENIMAGE=y BR2_PACKAGE_HOST_MTOOLS=y +BR2_SYSTEM_DHCP="eth0" BR2_ROOTFS_POST_BUILD_SCRIPT="board/radxa/rock5b/post-build.sh" BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh" BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/radxa/rock5b/genimage.cfg"