X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=blobdiff_plain;f=include%2Fquilt.mk;h=53fb0a262bef05f7bc34fd9c7ad7a02e2aceef52;hp=e8c3b90a681d67647fb8794cfed2f02ed3dc4374;hb=82a81707d83ea55c1ead149fbceee231e54bf998;hpb=7fff341bb3866a3139a3edbe09c7c07ab9dd56e6 diff --git a/include/quilt.mk b/include/quilt.mk index e8c3b90a6..53fb0a262 100644 --- a/include/quilt.mk +++ b/include/quilt.mk @@ -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))