diff options
author | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2005-12-25 00:56:25 +0000 |
---|---|---|
committer | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2005-12-25 00:56:25 +0000 |
commit | 0118ed05e36332684385ce62a45c040a17fe5a1c (patch) | |
tree | 55f9c19cdb6c214aa7a24ab5fae0244b8b96128a /openwrt/package/base-files | |
parent | 997d9bff176af6f7b1882d954da7470803f0f142 (diff) | |
download | mtk-20170518-0118ed05e36332684385ce62a45c040a17fe5a1c.zip mtk-20170518-0118ed05e36332684385ce62a45c040a17fe5a1c.tar.gz mtk-20170518-0118ed05e36332684385ce62a45c040a17fe5a1c.tar.bz2 |
change ipkg.conf to use snapshots
SVN-Revision: 2765
Diffstat (limited to 'openwrt/package/base-files')
-rw-r--r-- | openwrt/package/base-files/Makefile | 6 | ||||
-rw-r--r-- | openwrt/package/base-files/default/etc/ipkg.conf | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/openwrt/package/base-files/Makefile b/openwrt/package/base-files/Makefile index 16169fa..8b74ee0 100644 --- a/openwrt/package/base-files/Makefile +++ b/openwrt/package/base-files/Makefile @@ -6,6 +6,11 @@ PKG_NAME:=base-files PKG_RELEASE:=6 PKG_BUILD_DIR:=$(BUILD_DIR)/base-files +BOARD:=$(shell LANG=C grep ^BR2_LINUX_2 $(TOPDIR)/.config|sed -e "s/=y//" \ + -e "s/.*_//"| tr "[:upper:]" "[:lower:]") +KERNEL:=$(shell LANG=C grep ^BR2_LINUX_2 $(TOPDIR)/.config|sed -e "s/=y//" \ + -e "s/BR2_LINUX_//" -e "s/_BRCM//" -e "s/_/./"| tr "[:upper:]" "[:lower:]") + REV:=$(shell LANG=C svn info | awk '/^Revision:/ { print$$2 }' ) ifeq ($(REV),) REV:=0 @@ -40,6 +45,7 @@ $(IPKG_BASE): $(SCRIPT_DIR)/make-ipkg-dir.sh $(IDIR_BASE) ipkg/$(PKG_NAME).control $(PKG_RELEASE) $(ARCH) cp -a ./default/* $(IDIR_BASE) $(SED) 's,$$R,r$(REV),g' $(IDIR_BASE)/etc/banner + $(SED) 's,$$S,$(BOARD)-$(KERNEL),g' $(IDIR_BASE)/etc/ipkg.conf mkdir -p $(IDIR_BASE)/jffs mkdir -p $(IDIR_BASE)/dev mkdir -p $(IDIR_BASE)/proc diff --git a/openwrt/package/base-files/default/etc/ipkg.conf b/openwrt/package/base-files/default/etc/ipkg.conf index 3867213..2931d2c 100644 --- a/openwrt/package/base-files/default/etc/ipkg.conf +++ b/openwrt/package/base-files/default/etc/ipkg.conf @@ -1,3 +1,3 @@ -src experimental http://openwrt.org/downloads/experimental/bin/packages +src snapshots http://openwrt.org/downloads/snapshots/$S/packages dest root / dest ram /tmp |