From: Linus Walleij Date: Wed, 1 Jan 2020 13:34:11 +0000 (+0100) Subject: busybox: Include hdparm by default on nas type device X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=f704f97e4c57e3f2db1bd2f5c87e1e44aebba42b;p=openwrt%2Fstaging%2Fnoltari.git busybox: Include hdparm by default on nas type device NAS devices certainly need to have hdparm to configure things like spin-down time or their disks will be constantly spinning. Just catenate CONFIG_HDPARM=y on these configs. Signed-off-by: Linus Walleij --- diff --git a/package/utils/busybox/Makefile b/package/utils/busybox/Makefile index c0f3007e5d..9af0f4853e 100644 --- a/package/utils/busybox/Makefile +++ b/package/utils/busybox/Makefile @@ -92,6 +92,9 @@ ifneq ($(findstring c,$(OPENWRT_VERBOSE)),) endif define Build/Configure +ifeq ($(DEVICE_TYPE),nas) + echo "CONFIG_HDPARM=y" >> $(PKG_BUILD_DIR)/.config +endif grep 'CONFIG_BUSYBOX_$(BUSYBOX_SYM)' $(TOPDIR)/.config | sed -e "s,\\(# \)\\?CONFIG_BUSYBOX_$(BUSYBOX_SYM)_\\(.*\\),\\1CONFIG_\\2,g" > $(PKG_BUILD_DIR)/.config yes 'n' | $(MAKE) -C $(PKG_BUILD_DIR) $(MAKE_FLAGS) oldconfig endef