1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 09:03:49 +03:00

add option for cleaning all ipkg info before the image build

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9151 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-10-05 21:52:05 +00:00
parent 2e92008789
commit 5da1cea8b9
2 changed files with 12 additions and 3 deletions

View File

@ -80,14 +80,22 @@ menuconfig DEVEL
select TOOLCHAINOPTS if !NATIVE_TOOLCHAIN
config BROKEN
bool "Show broken platforms / packages" if DEVEL
bool
prompt "Show broken platforms / packages" if DEVEL
default n
config LOCALMIRROR
string "Local mirror for source packages" if DEVEL
string
prompt "Local mirror for source packages" if DEVEL
menuconfig BUILDOPTS
bool "Build Options" if DEVEL
bool
prompt "Build Options" if DEVEL
config CLEAN_IPKG
bool
prompt "Clean all ipkg files before building the rootfs" if BUILDOPTS
default n
config AUTOREBUILD
bool

View File

@ -35,6 +35,7 @@ $(curdir)/rootfs-prepare: $(TMP_DIR)/.build
@-find $(TARGET_DIR) -name CVS | $(XARGS) rm -rf
@-find $(TARGET_DIR) -name .svn | $(XARGS) rm -rf
@-find $(TARGET_DIR) -name '.#*' | $(XARGS) rm -f
$(if $(CONFIG_CLEAN_IPKG),rm -rf $(TARGET_DIR)/usr/lib/ipkg)
$(curdir)/index: FORCE
@(cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages)