package/netifrc: add support for BR2_SYSTEM_DHCP

This patch makes openrc-netifrc package aware of BR2_SYSTEM_DHCP
config, and if set, will start dhcp daemon on configured interface.

Signed-off-by: Michał Łyszczek <michal.lyszczek@bofc.pl>
[yann.morin.1998@free.fr:
  - simplify condition for BR2_SYSTEM_DHCP
  - reword commit log
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Michał Łyszczek 2019-08-04 14:14:19 +02:00 committed by Thomas Petazzoni
parent 39950aae00
commit 33de483931
2 changed files with 17 additions and 3 deletions

View File

@ -32,8 +32,19 @@ define NETIFRC_REMOVE_UDEV
endef endef
endif # BR2_PACKAGE_HAS_UDEV endif # BR2_PACKAGE_HAS_UDEV
NETIFRC_DHCP_IFACE = $(call qstrip,$(BR2_SYSTEM_DHCP))
ifneq ($(NETIFRC_DHCP_IFACE),)
NETIFRC_DHCP_CFG = config_$(NETIFRC_DHCP_IFACE)="dhcp"
define NETIFRC_DHCP_SERVICE
ln -sf net.lo $(TARGET_DIR)/etc/init.d/net.$(NETIFRC_DHCP_IFACE)
ln -sf /etc/init.d/net.$(NETIFRC_DHCP_IFACE) \
$(TARGET_DIR)/etc/runlevels/default/net.$(NETIFRC_DHCP_IFACE)
endef
endif # BR2_SYSTEM_DHCP != ""
define NETIFRC_NET_CFG define NETIFRC_NET_CFG
config_lo="127.0.0.1/8" config_lo="127.0.0.1/8"
$(NETIFRC_DHCP_CFG)
endef endef
define NETIFRC_INSTALL_TARGET_CMDS define NETIFRC_INSTALL_TARGET_CMDS
@ -41,6 +52,7 @@ define NETIFRC_INSTALL_TARGET_CMDS
$(NETIFRC_REMOVE_UDEV) $(NETIFRC_REMOVE_UDEV)
$(call PRINTF,$(NETIFRC_NET_CFG)) > $(TARGET_DIR)/etc/conf.d/net $(call PRINTF,$(NETIFRC_NET_CFG)) > $(TARGET_DIR)/etc/conf.d/net
ln -sf /etc/init.d/net.lo $(TARGET_DIR)/etc/runlevels/default/net.lo ln -sf /etc/init.d/net.lo $(TARGET_DIR)/etc/runlevels/default/net.lo
$(NETIFRC_DHCP_SERVICE)
endef endef
$(eval $(generic-package)) $(eval $(generic-package))

View File

@ -377,7 +377,8 @@ config BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW
config BR2_SYSTEM_DHCP config BR2_SYSTEM_DHCP
string "Network interface to configure through DHCP" string "Network interface to configure through DHCP"
default "" default ""
depends on BR2_PACKAGE_BUSYBOX || BR2_PACKAGE_IFUPDOWN || BR2_PACKAGE_SYSTEMD_NETWORKD depends on BR2_PACKAGE_BUSYBOX || BR2_PACKAGE_IFUPDOWN || \
BR2_PACKAGE_SYSTEMD_NETWORKD || BR2_PACKAGE_NETIFRC
help help
Enter here the name of the network interface (E.G. eth0) to Enter here the name of the network interface (E.G. eth0) to
automatically configure through DHCP at bootup. automatically configure through DHCP at bootup.
@ -388,8 +389,9 @@ config BR2_SYSTEM_DHCP
overwrite /etc/network/interfaces or add a networkd overwrite /etc/network/interfaces or add a networkd
configuration file. configuration file.
comment "automatic network configuration via DHCP needs ifupdown or busybox or networkd" comment "automatic network configuration via DHCP needs ifupdown or busybox or networkd or netifrc"
depends on !(BR2_PACKAGE_BUSYBOX || BR2_PACKAGE_IFUPDOWN || BR2_PACKAGE_SYSTEMD_NETWORKD) depends on !(BR2_PACKAGE_BUSYBOX || BR2_PACKAGE_IFUPDOWN || \
BR2_PACKAGE_SYSTEMD_NETWORKD || BR2_PACKAGE_NETIFRC)
endif # BR2_ROOTFS_SKELETON_DEFAULT endif # BR2_ROOTFS_SKELETON_DEFAULT