diff options
author | Andy Boyett <agb@openwrt.org> | 2009-07-02 07:24:44 +0000 |
---|---|---|
committer | Andy Boyett <agb@openwrt.org> | 2009-07-02 07:24:44 +0000 |
commit | 48d5c2e8504ae8dad6e4886e7d04bd1a52fd1457 (patch) | |
tree | 7e7565bc247c85264fb2299aa9f8af6598109d00 /package | |
parent | 9c60ff4cb85b22db79a6f328283c4df6fa4edc3e (diff) | |
download | upstream-48d5c2e8504ae8dad6e4886e7d04bd1a52fd1457.tar.gz upstream-48d5c2e8504ae8dad6e4886e7d04bd1a52fd1457.tar.bz2 upstream-48d5c2e8504ae8dad6e4886e7d04bd1a52fd1457.zip |
[package] base-files: explicitly create /etc/rc.d/, fixes ImageBuilder when using git instead of svn
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16652 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/base-files/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 69f1e776c2..4d6a15cc95 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=base-files -PKG_RELEASE:=23 +PKG_RELEASE:=24 PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ @@ -175,6 +175,7 @@ define Package/base-files$(TARGET)/install mkdir -p $(1)/CONTROL mkdir -p $(1)/dev mkdir -p $(1)/etc/crontabs + mkdir -p $(1)/etc/rc.d mkdir -p $(1)/jffs mkdir -p $(1)/lib/firmware $(if $(LIB_SUFFIX),ln -s lib $(1)/lib$(LIB_SUFFIX)) |