2 # Copyright (C) 2007 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 ifneq ($(__quilt_inc),1)
11 ifeq ($(TARGET_BUILD),1)
12 PKG_BUILD_DIR:=$(LINUX_DIR)
16 ifeq ($(MAKECMDGOALS),refresh)
21 sed -e s,\\\#.*,, $(1) | grep -E \[a-zA-Z0-9\]
25 @if [ -s $(1)/series ]; then \
26 mkdir -p $(PKG_BUILD_DIR)/patches$(if $(2),/$(2)); \
27 cp $(1)/series $(PKG_BUILD_DIR)/patches$(if $(2),/$(2))/; \
29 @for patch in $$$$( (cd $(1) && if [ -f series ]; then $(call filter_series,series); else ls; fi; ) 2>/dev/null ); do ( \
30 cp "$(1)/$$$$patch" $(PKG_BUILD_DIR); \
31 cd $(PKG_BUILD_DIR); \
32 quilt import -P$(2)$$$$patch -p 1 "$$$$patch"; \
33 quilt push -f >/dev/null 2>/dev/null; \
36 $(if $(2),@echo $(2) >> $(PKG_BUILD_DIR)/patches/.subdirs)
39 define PatchDir/Default
40 @if [ -d "$(1)" -a "$$$$(ls $(1) | wc -l)" -gt 0 ]; then \
41 if [ -s "$(1)/series" ]; then \
42 $(call filter_series,$(1)/series) | xargs -n1 \
43 $(PATCH) $(PKG_BUILD_DIR) "$(1)"; \
45 $(PATCH) $(PKG_BUILD_DIR) "$(1)"; \
51 $(call PatchDir/$(if $(strip $(QUILT)),Quilt,Default),$(strip $(1)),$(strip $(2)))
54 QUILT?=$(strip $(shell test -f $(PKG_BUILD_DIR)/.quilt_used && echo y))
56 STAMP_PATCHED:=$(PKG_BUILD_DIR)/.quilt_patched
57 STAMP_CHECKED:=$(PKG_BUILD_DIR)/.quilt_checked
58 override CONFIG_AUTOREBUILD=
59 $(STAMP_CONFIGURED): $(STAMP_CHECKED) FORCE
60 prepare: $(STAMP_PATCHED)
61 quilt-check: $(STAMP_CHECKED)
64 define Build/Patch/Default
65 $(if $(QUILT),rm -rf $(PKG_BUILD_DIR)/patches; mkdir -p $(PKG_BUILD_DIR)/patches)
66 $(call PatchDir,$(PATCH_DIR),)
69 define Kernel/Patch/Default
70 $(if $(QUILT),rm -rf $(PKG_BUILD_DIR)/patches; mkdir -p $(PKG_BUILD_DIR)/patches)
71 if [ -d $(GENERIC_PLATFORM_DIR)/files ]; then $(CP) $(GENERIC_PLATFORM_DIR)/files/* $(LINUX_DIR)/; fi
72 if [ -d ./files ]; then $(CP) ./files/* $(LINUX_DIR)/; fi
73 $(call PatchDir,$(GENERIC_PATCH_DIR),generic/)
74 $(call PatchDir,$(PATCH_DIR),platform/)
77 define Quilt/RefreshDir
79 -rm -f $(1)/* 2>/dev/null >/dev/null
81 for patch in $$$$($(if $(2),grep "^$(2)",cat) $(PKG_BUILD_DIR)/patches/series | awk '{print $$$$1}'); do \
82 $(CP) -v "$(PKG_BUILD_DIR)/patches/$$$$patch" $(1); \
87 define Quilt/Refresh/Package
88 $(call Quilt/RefreshDir,$(PATCH_DIR))
91 define Quilt/Refresh/Kernel
92 @[ -z "$$(grep -v '^generic/' $(PKG_BUILD_DIR)/patches/series | grep -v '^platform/')" ] || { \
93 echo "All kernel patches must start with either generic/ or platform/"; \
96 $(call Quilt/RefreshDir,$(GENERIC_PATCH_DIR),generic/)
97 $(call Quilt/RefreshDir,$(PATCH_DIR),platform/)
101 $(if $(TARGET_BUILD),$(Quilt/Refresh/Kernel),$(Quilt/Refresh/Package))
104 $(STAMP_PATCHED): $(STAMP_PREPARED)
106 cd $(PKG_BUILD_DIR)/patches; \
107 quilt pop -a -f >/dev/null 2>/dev/null; \
108 if [ -s ".subdirs" ]; then \
110 for file in $$(cat .subdirs); do \
111 if [ -f $$file/series ]; then \
112 echo "Converting $$file/series"; \
113 $(call filter_series,$$file/series) | awk -v file="$$file/" '$$0 !~ /^#/ { print file $$0 }' >> series; \
115 echo "Sorting patches in $$file"; \
116 find $$file/* -type f \! -name series | sort >> series; \
120 find * -type f \! -name series | sort > series; \
125 $(STAMP_CHECKED): $(STAMP_PATCHED)
126 if [ -s "$(PKG_BUILD_DIR)/patches/series" ]; then (cd $(PKG_BUILD_DIR); quilt next >/dev/null 2>&1 && quilt push -a || quilt top >/dev/null 2>&1); fi
130 quilt-check: $(STAMP_PREPARED) FORCE
131 @[ -f "$(PKG_BUILD_DIR)/.quilt_used" ] || { \
132 echo "The source directory was not unpacked using quilt. Please rebuild with QUILT=1"; \
135 @[ -f "$(PKG_BUILD_DIR)/patches/series" ] || { \
136 echo "The source directory contains no quilt patches."; \
139 @[ -n "$$$$(ls $(PKG_BUILD_DIR)/patches/series)" -o "$$$$(cat $(PKG_BUILD_DIR)/patches/series | md5sum)" = "$$(sort $(PKG_BUILD_DIR)/patches/series | md5sum)" ] || { \
140 echo "The patches are not sorted in the right order. Please fix."; \
145 @cd $(PKG_BUILD_DIR); quilt pop -a -f >/dev/null 2>/dev/null
146 @cd $(PKG_BUILD_DIR); while quilt next 2>/dev/null >/dev/null && quilt push; do \
148 done; ! quilt next 2>/dev/null >/dev/null