- $$(PKG_$(1)): $(LINUX_DIR)/.modules_done
- rm -rf $$(I_$(1))
- install -d -m0755 $$(I_$(1))/CONTROL
- echo "Package: kmod-$(1)" > $$(I_$(1))/CONTROL/control
- echo "Version: $(VERSION)" >> $$(I_$(1))/CONTROL/control
- ( \
- DEPENDS=; \
- for depend in $$(filter-out @%,$$(IDEPEND_$(1))); do \
- DEPENDS=$$$${DEPENDS:+$$$$DEPENDS, }$$$${depend##+}; \
- done; \
- echo "Depends: $$$$DEPENDS" >> $$(I_$(1))/CONTROL/control; \
- )
- echo "Source: $(SOURCE)" >> $$(I_$(1))/CONTROL/control
- echo "Section: kernel" >> $$(I_$(1))/CONTROL/control
- echo "Priority: $(PRIORITY)" >> $$(I_$(1))/CONTROL/control
- echo "Maintainer: $(MAINTAINER)" >> $$(I_$(1))/CONTROL/control
- echo "Architecture: $(PKGARCH)" >> $$(I_$(1))/CONTROL/control
- echo "Description: $(DESCRIPTION)" | sed -e 's,\\,\n ,g' >> $$(I_$(1))/CONTROL/control
- ifneq ($(strip $(FILES)),)
- mkdir -p $$(I_$(1))/lib/modules/$(LINUX_VERSION)
- $(CP) $(FILES) $$(I_$(1))/lib/modules/$(LINUX_VERSION)/
- endif
- ifneq ($(MODULES),)
- export modules=; \
- add_module() { \
- mkdir -p $$(I_$(1))/etc/modules.d; \
- echo "$$$$2" > $$(I_$(1))/etc/modules.d/$$$$1-$(1); \
- modules="$$$${modules:+$$$$modules }$$$$1-$(1)"; \
- }; \
- $(MODULES) \
- mkdir -p $$(I_$(1))/etc/modules.d; \
- echo "#!/bin/sh" >> $$(I_$(1))/CONTROL/postinst; \
- echo "[ -z \"\$$$$IPKG_INSTROOT\" ] || exit" >> $$(I_$(1))/CONTROL/postinst; \
- echo ". /etc/functions.sh" >> $$(I_$(1))/CONTROL/postinst; \
- echo "load_modules $$$$modules" >> $$(I_$(1))/CONTROL/postinst; \
- chmod 0755 $$(I_$(1))/CONTROL/postinst;
+ define BuildKernel
+ endef
+endef
+
+define Profile/Default
+ NAME:=
+ PACKAGES:=
+endef
+
+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)"; \
+ echo "Target-Profile-Name: $(NAME)"; \
+ echo "Target-Profile-Packages: $(PACKAGES)"; \
+ 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 "@@"; \
+ echo;
+ ifeq ($(CONFIG_LINUX_$(call confname,$(KERNEL)_$(1))),y)
+ PROFILE=$(1)