diff options
author | Tim Yardley <lst@openwrt.org> | 2007-03-02 18:17:40 +0000 |
---|---|---|
committer | Tim Yardley <lst@openwrt.org> | 2007-03-02 18:17:40 +0000 |
commit | 3249931be4d02d83a1fb9225d4355e1fa2509da8 (patch) | |
tree | eee75efb521525000f257533dee3114ccfbdcc2a /package | |
parent | d60f2546168f82bff620d2909936e27865d91273 (diff) | |
download | upstream-3249931be4d02d83a1fb9225d4355e1fa2509da8.tar.gz upstream-3249931be4d02d83a1fb9225d4355e1fa2509da8.tar.bz2 upstream-3249931be4d02d83a1fb9225d4355e1fa2509da8.zip |
commit profile support for base-files... patches still need to be done
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6465 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/base-files/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 5cbef91e3c..f02f1c9aa3 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -101,8 +101,13 @@ endef define Package/base-files$(TARGET)/install $(CP) ./files/* $(1)/ - if [ -d $(PLATFORM_DIR)/base-files/. ]; then \ - $(CP) $(PLATFORM_DIR)/base-files/* $(1)/; \ + if [ -d $(PLATFORM_DIR)/base-files/default/. ]; then \ + $(CP) $(PLATFORM_DIR)/base-files/default/* $(1)/; \ + fi + if [ "$(PROFILE)" != "Default" ]; then \ + if [ -d $(PLATFORM_DIR)/base-files/profile-$(PROFILE)/. ]; then \ + $(CP) $(PLATFORM_DIR)/base-files/profile-$(PROFILE)/* $(1)/; \ + fi; \ fi $(SED) 's,$$$$R,r$(REV),g' $(1)/etc/banner $(SED) 's,$$$$S,$(BOARD)-$(KERNEL),g' $(1)/etc/ipkg.conf |