2007-06-03 14:16:08 +08:00
|
|
|
#
|
2009-02-02 15:41:01 +08:00
|
|
|
# Copyright (C) 2007-2009 OpenWrt.org
|
2007-06-03 14:16:08 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
|
2009-03-03 21:54:29 +08:00
|
|
|
ifneq ($(if $(DUMP),1,$(__quilt_inc)),1)
|
2007-09-28 09:23:56 +08:00
|
|
|
__quilt_inc:=1
|
|
|
|
|
2007-09-10 12:21:21 +08:00
|
|
|
ifeq ($(TARGET_BUILD),1)
|
2007-06-03 16:28:05 +08:00
|
|
|
PKG_BUILD_DIR:=$(LINUX_DIR)
|
|
|
|
endif
|
2007-06-28 15:14:22 +08:00
|
|
|
PATCH_DIR?=./patches
|
2008-04-29 06:01:14 +08:00
|
|
|
FILES_DIR?=./files
|
2009-02-23 07:54:17 +08:00
|
|
|
HOST_PATCH_DIR?=$(PATCH_DIR)
|
|
|
|
HOST_FILES_DIR?=$(FILES_DIR)
|
2007-06-03 16:28:05 +08:00
|
|
|
|
2007-07-31 02:22:01 +08:00
|
|
|
ifeq ($(MAKECMDGOALS),refresh)
|
|
|
|
override QUILT=1
|
|
|
|
endif
|
|
|
|
|
2009-02-02 15:41:01 +08:00
|
|
|
QUILT_CMD:=quilt --quiltrc=-
|
|
|
|
|
2007-09-29 12:29:11 +08:00
|
|
|
define filter_series
|
|
|
|
sed -e s,\\\#.*,, $(1) | grep -E \[a-zA-Z0-9\]
|
|
|
|
endef
|
|
|
|
|
2007-09-29 11:28:03 +08:00
|
|
|
define PatchDir/Quilt
|
2009-03-23 20:02:02 +08:00
|
|
|
@mkdir -p "$(1)/patches$(if $(3),/$(patsubst %/,%,$(3)))"
|
2009-02-22 12:37:20 +08:00
|
|
|
@if [ -s "$(2)/series" ]; then \
|
|
|
|
mkdir -p "$(1)/patches/$(3)"; \
|
|
|
|
cp "$(2)/series" "$(1)/patches/$(3)"; \
|
2007-09-29 11:28:03 +08:00
|
|
|
fi
|
2009-03-23 20:02:02 +08:00
|
|
|
@for patch in $$$$( (cd "$(2)" && if [ -f series ]; then $(call filter_series,series); else ls | sort; fi; ) 2>/dev/null ); do ( \
|
|
|
|
cp "$(2)/$$$$patch" "$(1)/patches/$(3)"; \
|
|
|
|
echo "$(3)$$$$patch" >> "$(1)/patches/series"; \
|
2007-06-03 16:28:05 +08:00
|
|
|
); done
|
2009-02-22 12:37:20 +08:00
|
|
|
$(if $(3),@echo $(3) >> "$(1)/patches/.subdirs")
|
2007-09-29 11:28:03 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define PatchDir/Default
|
2009-02-22 12:37:20 +08:00
|
|
|
@if [ -d "$(2)" -a "$$$$(ls $(2) | wc -l)" -gt 0 ]; then \
|
|
|
|
if [ -s "$(2)/series" ]; then \
|
|
|
|
$(call filter_series,$(2)/series) | xargs -n1 \
|
|
|
|
$(PATCH) "$(1)" "$(2)"; \
|
2007-09-29 11:28:03 +08:00
|
|
|
else \
|
2009-02-22 12:37:20 +08:00
|
|
|
$(PATCH) "$(1)" "$(2)"; \
|
2007-09-29 11:28:03 +08:00
|
|
|
fi; \
|
|
|
|
fi
|
|
|
|
endef
|
|
|
|
|
|
|
|
define PatchDir
|
2009-02-22 12:37:20 +08:00
|
|
|
$(call PatchDir/$(if $(strip $(QUILT)),Quilt,Default),$(strip $(1)),$(strip $(2)),$(strip $(3)))
|
2007-06-03 16:28:05 +08:00
|
|
|
endef
|
|
|
|
|
2009-03-17 11:21:52 +08:00
|
|
|
define HostPatchDir
|
|
|
|
$(call PatchDir/$(if $(strip $(HOST_QUILT)),Quilt,Default),$(strip $(1)),$(strip $(2)),$(strip $(3)))
|
|
|
|
endef
|
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
ifneq ($(PKG_BUILD_DIR),)
|
2009-03-03 22:55:53 +08:00
|
|
|
QUILT?=$(if $(wildcard $(PKG_BUILD_DIR)/.quilt_used),y)
|
2009-02-22 12:37:20 +08:00
|
|
|
ifneq ($(QUILT),)
|
|
|
|
STAMP_CHECKED:=$(PKG_BUILD_DIR)/.quilt_checked
|
|
|
|
override CONFIG_AUTOREBUILD=
|
|
|
|
quilt-check: $(STAMP_CHECKED)
|
|
|
|
endif
|
2007-06-03 14:16:08 +08:00
|
|
|
endif
|
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
ifneq ($(HOST_BUILD_DIR),)
|
2009-03-24 02:32:58 +08:00
|
|
|
HOST_QUILT?=$(if $(findstring command,$(origin QUILT)),$(QUILT),$(if $(wildcard $(HOST_BUILD_DIR)/.quilt_used),y))
|
2009-02-22 12:37:20 +08:00
|
|
|
ifneq ($(HOST_QUILT),)
|
|
|
|
HOST_STAMP_CHECKED:=$(HOST_BUILD_DIR)/.quilt_checked
|
|
|
|
override CONFIG_AUTOREBUILD=
|
|
|
|
host-quilt-check: $(HOST_STAMP_CHECKED)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
define Host/Patch/Default
|
2009-03-17 11:21:52 +08:00
|
|
|
$(if $(HOST_QUILT),rm -rf $(HOST_BUILD_DIR)/patches; mkdir -p $(HOST_BUILD_DIR)/patches)
|
|
|
|
$(call HostPatchDir,$(HOST_BUILD_DIR),$(HOST_PATCH_DIR),)
|
|
|
|
$(if $(HOST_QUILT),touch $(HOST_BUILD_DIR)/.quilt_used)
|
2009-02-22 12:37:20 +08:00
|
|
|
endef
|
|
|
|
|
2007-09-29 11:28:03 +08:00
|
|
|
define Build/Patch/Default
|
|
|
|
$(if $(QUILT),rm -rf $(PKG_BUILD_DIR)/patches; mkdir -p $(PKG_BUILD_DIR)/patches)
|
2009-02-22 12:37:20 +08:00
|
|
|
$(call PatchDir,$(PKG_BUILD_DIR),$(PATCH_DIR),)
|
2009-02-23 01:50:31 +08:00
|
|
|
$(if $(QUILT),touch $(PKG_BUILD_DIR)/.quilt_used)
|
2007-09-29 11:28:03 +08:00
|
|
|
endef
|
|
|
|
|
2008-10-22 03:26:36 +08:00
|
|
|
kernel_files=$(foreach fdir,$(GENERIC_FILES_DIR) $(FILES_DIR),$(fdir)/.)
|
2007-06-03 16:28:05 +08:00
|
|
|
define Kernel/Patch/Default
|
2008-08-27 22:14:00 +08:00
|
|
|
rm -rf $(PKG_BUILD_DIR)/patches; mkdir -p $(PKG_BUILD_DIR)/patches
|
2008-10-22 03:26:36 +08:00
|
|
|
$(if $(kernel_files),$(CP) $(kernel_files) $(LINUX_DIR)/)
|
2008-10-19 05:43:30 +08:00
|
|
|
find $(LINUX_DIR)/ -name \*.rej -or -name \*.orig | $(XARGS) rm -f
|
2009-02-22 12:37:20 +08:00
|
|
|
$(call PatchDir,$(PKG_BUILD_DIR),$(GENERIC_PATCH_DIR),generic/)
|
|
|
|
$(call PatchDir,$(PKG_BUILD_DIR),$(PATCH_DIR),platform/)
|
2007-06-03 16:28:05 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Quilt/RefreshDir
|
2009-02-22 12:37:20 +08:00
|
|
|
mkdir -p $(2)
|
|
|
|
-rm -f $(2)/* 2>/dev/null >/dev/null
|
2007-06-03 16:28:05 +08:00
|
|
|
@( \
|
2009-02-22 12:37:20 +08:00
|
|
|
for patch in $$$$($(if $(3),grep "^$(3)",cat) $(PKG_BUILD_DIR)/patches/series | awk '{print $$$$1}'); do \
|
|
|
|
$(CP) -v "$(PKG_BUILD_DIR)/patches/$$$$patch" $(2); \
|
2007-06-03 16:28:05 +08:00
|
|
|
done; \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
define Quilt/Refresh/Host
|
|
|
|
$(call Quilt/RefreshDir,$(HOST_BUILD_DIR),$(PATCH_DIR))
|
|
|
|
endef
|
|
|
|
|
2007-06-03 16:28:05 +08:00
|
|
|
define Quilt/Refresh/Package
|
2009-02-22 12:37:20 +08:00
|
|
|
$(call Quilt/RefreshDir,$(PKG_BUILD_DIR),$(PATCH_DIR))
|
2007-06-03 16:28:05 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Quilt/Refresh/Kernel
|
|
|
|
@[ -z "$$(grep -v '^generic/' $(PKG_BUILD_DIR)/patches/series | grep -v '^platform/')" ] || { \
|
|
|
|
echo "All kernel patches must start with either generic/ or platform/"; \
|
|
|
|
false; \
|
|
|
|
}
|
2009-02-22 12:37:20 +08:00
|
|
|
$(call Quilt/RefreshDir,$(PKG_BUILD_DIR),$(GENERIC_PATCH_DIR),generic/)
|
|
|
|
$(call Quilt/RefreshDir,$(PKG_BUILD_DIR),$(PATCH_DIR),platform/)
|
2007-09-29 12:29:11 +08:00
|
|
|
endef
|
|
|
|
|
2009-02-23 00:49:21 +08:00
|
|
|
define Quilt/Template
|
2009-02-22 12:37:20 +08:00
|
|
|
$($(2)STAMP_CONFIGURED): $($(2)STAMP_CHECKED) FORCE
|
2009-03-23 20:02:02 +08:00
|
|
|
$($(2)STAMP_CHECKED): $($(2)STAMP_PREPARED)
|
2009-02-22 12:37:20 +08:00
|
|
|
if [ -s "$(1)/patches/series" ]; then \
|
|
|
|
(cd "$(1)"; \
|
|
|
|
if $(QUILT_CMD) next >/dev/null 2>&1; then \
|
|
|
|
$(QUILT_CMD) push -a; \
|
|
|
|
else \
|
|
|
|
$(QUILT_CMD) top >/dev/null 2>&1; \
|
|
|
|
fi \
|
|
|
|
); \
|
|
|
|
fi
|
|
|
|
touch "$$@"
|
2007-09-29 12:29:11 +08:00
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
$(3)quilt-check: $($(2)STAMP_PREPARED) FORCE
|
|
|
|
@[ -f "$(1)/.quilt_used" ] || { \
|
2007-06-03 15:33:00 +08:00
|
|
|
echo "The source directory was not unpacked using quilt. Please rebuild with QUILT=1"; \
|
|
|
|
false; \
|
|
|
|
}
|
2009-02-22 12:37:20 +08:00
|
|
|
@[ -f "$(1)/patches/series" ] || { \
|
2007-06-03 15:33:00 +08:00
|
|
|
echo "The source directory contains no quilt patches."; \
|
2007-06-03 14:16:08 +08:00
|
|
|
false; \
|
|
|
|
}
|
2009-02-22 12:37:20 +08:00
|
|
|
@[ -n "$$$$(ls $(1)/patches/series)" -o "$$$$(cat $(1)/patches/series | md5sum)" = "$$(sort $(1)/patches/series | md5sum)" ] || { \
|
2007-06-03 14:16:08 +08:00
|
|
|
echo "The patches are not sorted in the right order. Please fix."; \
|
|
|
|
false; \
|
|
|
|
}
|
2007-06-04 19:14:08 +08:00
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
$(3)refresh: $(3)quilt-check
|
|
|
|
@cd "$(1)"; $(QUILT_CMD) pop -a -f >/dev/null 2>/dev/null
|
|
|
|
@cd "$(1)"; while $(QUILT_CMD) next 2>/dev/null >/dev/null && $(QUILT_CMD) push; do \
|
2009-02-02 15:41:01 +08:00
|
|
|
QUILT_DIFF_OPTS="-p" $(QUILT_CMD) refresh -p ab --no-index --no-timestamps; \
|
|
|
|
done; ! $(QUILT_CMD) next 2>/dev/null >/dev/null
|
2009-02-22 12:37:20 +08:00
|
|
|
$(Quilt/Refresh/$(4))
|
2007-06-04 19:14:08 +08:00
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
$(3)update: $(3)quilt-check
|
|
|
|
$(Quilt/Refresh/$(4))
|
2007-09-29 12:29:11 +08:00
|
|
|
endef
|
2007-06-03 16:28:05 +08:00
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
Build/Quilt=$(call Quilt/Template,$(PKG_BUILD_DIR),,,$(if $(TARGET_BUILD),Kernel,Package))
|
|
|
|
Host/Quilt=$(call Quilt/Template,$(HOST_BUILD_DIR),HOST_,host-,Host)
|
|
|
|
|
2007-09-28 09:23:56 +08:00
|
|
|
endif
|