Added the ipackage repository target, and the logic to expand the PACKAGES
target into all the various ipk files, and generate a repository from the listed targets. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@68 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
9a8d0f37cd
commit
f0cc5098f9
|
@ -40,6 +40,8 @@ BUILD_WITH_LARGEFILE:=true
|
||||||
|
|
||||||
OPTIMIZE_FOR_CPU=$(ARCH)
|
OPTIMIZE_FOR_CPU=$(ARCH)
|
||||||
|
|
||||||
|
PUB_DIR:=/var/www/html/testsite/ipkg
|
||||||
|
|
||||||
# Command used to download source code
|
# Command used to download source code
|
||||||
WGET:=wget --passive-ftp
|
WGET:=wget --passive-ftp
|
||||||
|
|
||||||
|
@ -97,6 +99,8 @@ INSTALL_LIBGCJ:=false
|
||||||
#############################################################
|
#############################################################
|
||||||
TARGETS:=host-sed gcc3_3 openwrt-base openwrt-code.bin
|
TARGETS:=host-sed gcc3_3 openwrt-base openwrt-code.bin
|
||||||
|
|
||||||
|
PACKAGES:=oidentd iproute2 sched-modules wshaper
|
||||||
|
|
||||||
#############################################################
|
#############################################################
|
||||||
#
|
#
|
||||||
# You should probably leave this stuff alone unless you know
|
# You should probably leave this stuff alone unless you know
|
||||||
|
@ -183,7 +187,14 @@ TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
|
||||||
TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS))
|
TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS))
|
||||||
TARGETS_DIRCLEAN:=$(patsubst %,%-dirclean,$(TARGETS))
|
TARGETS_DIRCLEAN:=$(patsubst %,%-dirclean,$(TARGETS))
|
||||||
|
|
||||||
world: $(DL_DIR) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) $(TARGETS)
|
|
||||||
|
PACKAGES_IPK:=$(patsubst %,%-ipk,$(PACKAGES))
|
||||||
|
|
||||||
|
|
||||||
|
$(BUILD_DIR)/Packages : $(PACKAGES_IPK)
|
||||||
|
(cd $(BUILD_DIR) ; ipkg-make-index . > Packages)
|
||||||
|
|
||||||
|
world: $(DL_DIR) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) $(TARGETS) $(PACKAGES_IPK) $(BUILD_DIR)/Packages
|
||||||
@echo "ALL DONE."
|
@echo "ALL DONE."
|
||||||
|
|
||||||
.PHONY: all world clean dirclean distclean source $(TARGETS) \
|
.PHONY: all world clean dirclean distclean source $(TARGETS) \
|
||||||
|
@ -241,6 +252,17 @@ distclean:
|
||||||
openwrt-linux.trx openwrt-g-code.bin openwrt-gs-code.bin \
|
openwrt-linux.trx openwrt-g-code.bin openwrt-gs-code.bin \
|
||||||
openwrt-kmodules.tar.bz2
|
openwrt-kmodules.tar.bz2
|
||||||
|
|
||||||
|
|
||||||
|
publish:
|
||||||
|
chmod 644 $(BUILD_DIR)/Packages
|
||||||
|
chmod 644 $(BUILD_DIR)/Packages.filelist
|
||||||
|
chmod 644 $(BUILD_DIR)/*.ipk
|
||||||
|
cp $(BUILD_DIR)/Packages $(PUB_DIR)
|
||||||
|
cp $(BUILD_DIR)/Packages.filelist $(PUB_DIR)
|
||||||
|
cp $(BUILD_DIR)/*.ipk $(PUB_DIR)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
sourceball:
|
sourceball:
|
||||||
rm -rf $(BUILD_DIR)
|
rm -rf $(BUILD_DIR)
|
||||||
set -e; \
|
set -e; \
|
||||||
|
|
Loading…
Reference in New Issue