X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/bc9f96270fb3ae8922755b3a7f86bc87c3c8da42..143496aa4d31c79178027f9838e8cb3a659969f5:/include/kernel-build.mk diff --git a/include/kernel-build.mk b/include/kernel-build.mk index 93bf66dbc..b2837d1df 100644 --- a/include/kernel-build.mk +++ b/include/kernel-build.mk @@ -37,6 +37,9 @@ FEATURES:=$(sort $(FEATURES)) # For target profile selection - the default set DEFAULT_PACKAGES:=base-files libgcc uclibc bridge busybox dnsmasq dropbear iptables mtd ppp ppp-mod-pppoe mtd kmod-ipt-nathelper +ifneq ($(KERNEL),2.4) + DEFAULT_PACKAGES+=udevtrigger hotplug2 +endif ifeq ($(DUMP),1) all: dumpinfo @@ -217,6 +220,7 @@ confname=$(subst .,_,$(subst -,_,$(1))) define Profile $(eval $(call Profile/Default)) $(eval $(call Profile/$(1))) + $(eval $(call shexport,Profile/$(1)/Config)) $(eval $(call shexport,Profile/$(1)/Description)) DUMPINFO += \ echo "Target-Profile: $(1)"; \ @@ -225,6 +229,9 @@ define Profile if [ -f ./config/profile-$(1) ]; then \ echo "Target-Profile-Kconfig: yes"; \ fi; \ + echo "Target-Profile-Config: "; \ + getvar "$(call shvar,Profile/$(1)/Config)"; \ + echo "@@"; \ echo "Target-Profile-Description:"; \ getvar "$(call shvar,Profile/$(1)/Description)"; \ echo "@@"; \