diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2007-09-29 14:27:54 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2007-09-29 14:27:54 +0000 |
commit | 438dfe5c6fbfa63f5841fda9b4ec44b2f7712674 (patch) | |
tree | 35defc07076a1deea87ff74b8ee97cd891494183 /package/base-files/Makefile | |
parent | 2068b8d48de6b07bf656613fb1e25850483d5c67 (diff) | |
download | upstream-438dfe5c6fbfa63f5841fda9b4ec44b2f7712674.tar.gz upstream-438dfe5c6fbfa63f5841fda9b4ec44b2f7712674.tar.bz2 upstream-438dfe5c6fbfa63f5841fda9b4ec44b2f7712674.zip |
get rid of per-profile base-files
SVN-Revision: 9069
Diffstat (limited to 'package/base-files/Makefile')
-rw-r--r-- | package/base-files/Makefile | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index d81ec4f1c4..f5bf1adce7 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -1,5 +1,5 @@ -# -# Copyright (C) 2006 OpenWrt.org +# +# Copyright (C) 2007 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -130,19 +130,14 @@ define Package/base-files$(TARGET)/install if [ -d $(GENERIC_PLATFORM_DIR)/base-files/. ]; then \ $(CP) $(GENERIC_PLATFORM_DIR)/base-files/* $(1)/; \ fi - if [ -d $(PLATFORM_DIR)/base-files/default/. ]; then \ - $(CP) $(PLATFORM_DIR)/base-files/default/* $(1)/; \ + if [ -d $(PLATFORM_DIR)/base-files/. ]; then \ + $(CP) $(PLATFORM_DIR)/base-files/* $(1)/; \ fi $(if $(filter-out $(PLATFORM_DIR),$(PLATFORM_SUBDIR)), \ - if [ -d $(PLATFORM_SUBDIR)/base-files/default/. ]; then \ - $(CP) $(PLATFORM_SUBDIR)/base-files/default/* $(1)/; \ + if [ -d $(PLATFORM_SUBDIR)/base-files/. ]; then \ + $(CP) $(PLATFORM_SUBDIR)/base-files/* $(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' -e 's,$$$$A,$(ARCH),g' $(1)/etc/ipkg.conf mkdir -p $(1)/dev |