X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/c205614797c37667779150babf110bcc32102f36..ea7aaaa2a0ea06ec851c60d610245f24ac97856a:/include/kernel-build.mk diff --git a/include/kernel-build.mk b/include/kernel-build.mk index 6643d4658..26f305499 100644 --- a/include/kernel-build.mk +++ b/include/kernel-build.mk @@ -26,15 +26,15 @@ endif 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 +DEFAULT_PACKAGES:=base-files libgcc uclibc bridge busybox dnsmasq dropbear iptables mtd ppp ppp-mod-pppoe mtd kmod-ipt-nathelper ifeq ($(DUMP),1) all: dumpinfo else all: compile endif -KERNEL:=2.$(word 2,$(subst ., ,$(strip $(LINUX_VERSION)))) +include $(INCLUDE_DIR)/kernel-version.mk include $(INCLUDE_DIR)/host.mk include $(INCLUDE_DIR)/kernel.mk @@ -206,10 +206,15 @@ endef define Profile $(eval $(call Profile/Default)) $(eval $(call Profile/$(1))) + $(eval $(call shexport,Profile/$(1)/Description)) DUMPINFO += \ echo "Target-Profile: $(1)"; \ echo "Target-Profile-Name: $(NAME)"; \ - echo "Target-Profile-Packages: $(PACKAGES)"; + echo "Target-Profile-Packages: $(PACKAGES)"; \ + echo "Target-Profile-Description:"; \ + getvar "$(call shvar,Profile/$(1)/Description)"; \ + echo "@@"; \ + echo; endef $(eval $(call shexport,Target/Description))