diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-30 08:02:12 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-31 08:37:38 +0200 |
commit | 9910ddc19e5a04abd3287012587e8cd4bc6f0d83 (patch) | |
tree | 6081f7b828f9352d8ce2408b461db57a6d7020b3 /package | |
parent | e4c7367a1fc58f9d2ab2f9ade30bc510e062a204 (diff) |
do not install ipkg.conf by default
Diffstat (limited to 'package')
-rw-r--r-- | package/base-files/Makefile | 8 | ||||
-rw-r--r-- | package/base-files/files/ipkg.conf | 3 | ||||
-rw-r--r-- | package/base-files/src/etc/ipkg.conf | 3 |
3 files changed, 5 insertions, 9 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 6f09ab0b6..6dea5f4dc 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/mk/rootfs.mk PKG_NAME:= base-files PKG_VERSION:= 1.0 -PKG_RELEASE:= 96 +PKG_RELEASE:= 97 PKG_SECTION:= base/apps PKG_DESCR:= basic files and scripts @@ -27,14 +27,10 @@ ifeq (${ADK_TARGET_ROOTFS_NFSROOT},y) @echo "#" > $(IDIR_BASE_FILES)/etc/network/interfaces endif ifeq (${ADK_TARGET_PACKAGE_IPKG},y) + $(CP) ./files/ipkg.conf $(IDIR_BASE_FILES)/etc/ $(SED) 's,@ARCH@,$(ADK_TARGET_CPU_ARCH),g' $(IDIR_BASE_FILES)/etc/ipkg.conf $(SED) 's,@SYSTEM@,$(ADK_TARGET_SYSTEM),g' $(IDIR_BASE_FILES)/etc/ipkg.conf $(SED) 's,@LIBC@,$(ADK_TARGET_LIBC),g' $(IDIR_BASE_FILES)/etc/ipkg.conf -ifneq ($(ADK_TARGET_ABI),) - $(SED) 's,@ABI@,_$(ADK_TARGET_ABI),g' $(IDIR_BASE_FILES)/etc/ipkg.conf -else - $(SED) 's,@ABI@,,g' $(IDIR_BASE_FILES)/etc/ipkg.conf -endif $(SED) 's,@HOST@,$(ADK_HOST),g' $(IDIR_BASE_FILES)/etc/ipkg.conf $(SED) 's,@VENDOR@,$(ADK_VENDOR),g' $(IDIR_BASE_FILES)/etc/ipkg.conf mkdir -p $(IDIR_BASE_FILES)/usr/lib/ipkg/lists diff --git a/package/base-files/files/ipkg.conf b/package/base-files/files/ipkg.conf new file mode 100644 index 000000000..a31487176 --- /dev/null +++ b/package/base-files/files/ipkg.conf @@ -0,0 +1,3 @@ +src @VENDOR@ http://@HOST@/pkg/@SYSTEM@_@LIBC@/packages +dest root / +dest ram /tmp diff --git a/package/base-files/src/etc/ipkg.conf b/package/base-files/src/etc/ipkg.conf deleted file mode 100644 index 9c5ae17d3..000000000 --- a/package/base-files/src/etc/ipkg.conf +++ /dev/null @@ -1,3 +0,0 @@ -src @VENDOR@ http://@HOST@/pkg/@SYSTEM@_@ARCH@_@LIBC@@ABI@/packages -dest root / -dest ram /tmp |