Rename 'refresh' to 'update' and make the new 'refresh' actually refresh all the patches. Also added a target package/refresh which will do this to all packages in the buildroot

SVN-Revision: 7488
v19.07.3_mercusys_ac12_duma
Felix Fietkau 17 years ago
parent f082d1fddf
commit 9abbe7a033

@ -34,6 +34,7 @@ ifneq ($(QUILT),)
endef
$(STAMP_CONFIGURED): $(STAMP_PATCHED)
prepare: $(STAMP_PATCHED)
quilt-check: $(STAMP_PATCHED)
else
define Build/Patch/Default
@if [ -d ./patches -a "$$$$(ls ./patches | wc -l)" -gt 0 ]; then \
@ -82,7 +83,7 @@ define Quilt/Refresh/Kernel
$(call Quilt/RefreshDir,./patches,platform/)
endef
refresh: $(STAMP_PREPARED)
quilt-check: $(STAMP_PREPARED) FORCE
@[ -f "$(PKG_BUILD_DIR)/.quilt_used" ] || { \
echo "The source directory was not unpacked using quilt. Please rebuild with QUILT=1"; \
false; \
@ -95,5 +96,14 @@ refresh: $(STAMP_PREPARED)
echo "The patches are not sorted in the right order. Please fix."; \
false; \
}
refresh: quilt-check
@cd $(PKG_BUILD_DIR); quilt pop -a -f >/dev/null 2>/dev/null
@cd $(PKG_BUILD_DIR); while quilt next 2>/dev/null >/dev/null && quilt push; do \
quilt refresh; \
done; ! quilt next 2>/dev/null >/dev/null
$(if $(KERNEL_BUILD),$(Quilt/Refresh/Kernel),$(Quilt/Refresh/Package))
update: quilt-check
$(if $(KERNEL_BUILD),$(Quilt/Refresh/Kernel),$(Quilt/Refresh/Package))

@ -26,12 +26,16 @@ ifeq ($(QUIET),1)
%-compile %-install: FORCE
$(MAKE) -C $* $(patsubst $*-%,%,$@) || { $(call MESSAGE, "*** $* $(patsubst $*-%,%,$@) failed"); false; }
%-prepare %-prereq %-download %-clean %-refresh: FORCE
%-prepare %-prereq %-download %-clean: FORCE
else
%-prepare %-prereq %-download %-clean %-compile %-install %-refresh: FORCE
%-prepare %-prereq %-download %-clean %-compile %-install: FORCE
endif
$(MAKE) -C $* $(patsubst $*-%,%,$@)
%-refresh %-update:
-$(MAKE) -C $* $(patsubst $*-%,%,$@)
# .IGNORE: $(COMPILE_PACKAGES)
$(TMP_DIR)/.packagedeps: $(TMP_DIR)/.packageinfo
@ -42,6 +46,9 @@ clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m))
prereq: $(PREREQ_PACKAGES)
download: $(DOWNLOAD_PACKAGES)
compile: $(COMPILE_PACKAGES)
ifneq ($(QUILT),)
refresh: $(patsubst %,%-refresh,$(package-y) $(package-m) $(package-))
endif
install-targets: $(INSTALL_PACKAGES)
install:

@ -51,5 +51,5 @@ image_install: image_compile
imagebuilder_install: image_install
$(MAKE) -C imagebuilder install
%-prereq %-prepare %-download %-clean %-compile %-install %-refresh: FORCE
%-prereq %-prepare %-download %-clean %-compile %-install %-refresh %-update: FORCE
$(MAKE) -C $* $(patsubst $*-%,%,$@)

@ -7,23 +7,6 @@
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/target.mk
download:
$(MAKE) -C $(BOARD)-$(KERNEL) download
clean download prepare compile install menuconfig update refresh: FORCE
$(MAKE) -C $(BOARD)-$(KERNEL) $@
prepare:
$(MAKE) -C $(BOARD)-$(KERNEL) prepare
compile:
$(MAKE) -C $(BOARD)-$(KERNEL) compile
install:
$(MAKE) -C $(BOARD)-$(KERNEL) install
refresh:
$(MAKE) -C $(BOARD)-$(KERNEL) refresh
menuconfig:
$(MAKE) -C $(BOARD)-$(KERNEL) menuconfig
clean:
$(MAKE) -C $(BOARD)-$(KERNEL) clean

Loading…
Cancel
Save