make sure quilt starts with the correct patch order in series
[openwrt-10.03/.git] / include / quilt.mk
1
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 ifeq ($(KERNEL_BUILD),1)
9   PKG_BUILD_DIR:=$(LINUX_DIR)
10 endif
11
12 define Quilt/Patch
13         @for patch in $$$$( (cd $(1) && ls) 2>/dev/null ); do ( \
14                 cp "$(1)/$$$$patch" $(PKG_BUILD_DIR); \
15                 cd $(PKG_BUILD_DIR); \
16                 quilt import -P$(2)$$$$patch -p 1 "$$$$patch"; \
17                 quilt push -f >/dev/null 2>/dev/null; \
18                 rm -f "$$$$patch"; \
19         ); done
20 endef
21
22 QUILT?=$(strip $(shell test -f $(PKG_BUILD_DIR)/.quilt_used && echo y))
23 ifneq ($(QUILT),)
24   STAMP_PREPARED:=$(strip $(STAMP_PREPARED))_q
25   STAMP_PATCHED:=$(PKG_BUILD_DIR)/.quilt_patched
26   CONFIG_AUTOREBUILD=
27   PATCHES:=$(shell )
28   define Build/Patch/Default
29         rm -rf $(PKG_BUILD_DIR)/patches
30         mkdir -p $(PKG_BUILD_DIR)/patches
31         $(call Quilt/Patch,./patches,)
32         @echo
33         touch $(PKG_BUILD_DIR)/.quilt_used
34   endef
35   $(STAMP_CONFIGURED): $(STAMP_PATCHED) FORCE
36   prepare: $(STAMP_PATCHED)
37   quilt-check: $(STAMP_PATCHED)
38 else
39   define Build/Patch/Default
40         @if [ -d ./patches -a "$$$$(ls ./patches | wc -l)" -gt 0 ]; then \
41                 $(PATCH) $(PKG_BUILD_DIR) ./patches; \
42         fi
43   endef
44 endif
45
46 define Kernel/Patch/Default
47         if [ -d $(GENERIC_PLATFORM_DIR)/files ]; then $(CP) $(GENERIC_PLATFORM_DIR)/files/* $(LINUX_DIR)/; fi
48         if [ -d ./files ]; then $(CP) ./files/* $(LINUX_DIR)/; fi
49         $(if $(strip $(QUILT)),$(call Quilt/Patch,$(GENERIC_PATCH_DIR),generic/), \
50                 if [ -d $(GENERIC_PATCH_DIR) ]; then $(PATCH) $(LINUX_DIR) $(GENERIC_PATCH_DIR); fi \
51         )
52         $(if $(strip $(QUILT)),$(call Quilt/Patch,$(PATCH_DIR),platform/), \
53                 if [ -d $(PATCH_DIR) ]; then $(PATCH) $(LINUX_DIR) $(PATCH_DIR); fi \
54         )
55         $(if $(strip $(QUILT)),touch $(PKG_BUILD_DIR)/.quilt_used)
56 endef
57
58 $(STAMP_PATCHED): $(STAMP_PREPARED)
59         @cd $(PKG_BUILD_DIR); quilt pop -a -f >/dev/null 2>/dev/null || true
60         (\
61                 cd $(PKG_BUILD_DIR)/patches; \
62                 find * -type f \! -name series | sort > series; \
63         )
64         [ -f "$(PKG_BUILD_DIR)/patches/series" ] && cd $(PKG_BUILD_DIR); quilt push -a
65         touch $@
66
67 define Quilt/RefreshDir
68         mkdir -p $(1)
69         -rm -f $(1)/* 2>/dev/null >/dev/null
70         @( \
71                 for patch in $$($(if $(2),grep "^$(2)",cat) $(PKG_BUILD_DIR)/patches/series | awk '{print $$1}'); do \
72                         $(CP) -v "$(PKG_BUILD_DIR)/patches/$$patch" $(1); \
73                 done; \
74         )
75 endef
76
77 define Quilt/Refresh/Package
78         $(call Quilt/RefreshDir,./patches)
79 endef
80
81 define Quilt/Refresh/Kernel
82         @[ -z "$$(grep -v '^generic/' $(PKG_BUILD_DIR)/patches/series | grep -v '^platform/')" ] || { \
83                 echo "All kernel patches must start with either generic/ or platform/"; \
84                 false; \
85         }
86         $(call Quilt/RefreshDir,$(GENERIC_PATCH_DIR),generic/)
87         $(call Quilt/RefreshDir,$(PATCH_DIR),platform/)
88 endef
89
90 quilt-check: $(STAMP_PREPARED) FORCE
91         @[ -f "$(PKG_BUILD_DIR)/.quilt_used" ] || { \
92                 echo "The source directory was not unpacked using quilt. Please rebuild with QUILT=1"; \
93                 false; \
94         }
95         @[ -f "$(PKG_BUILD_DIR)/patches/series" ] || { \
96                 echo "The source directory contains no quilt patches."; \
97                 false; \
98         }
99         @[ "$$(cat $(PKG_BUILD_DIR)/patches/series | md5sum)" = "$$(sort $(PKG_BUILD_DIR)/patches/series | md5sum)" ] || { \
100                 echo "The patches are not sorted in the right order. Please fix."; \
101                 false; \
102         }
103
104 refresh: quilt-check
105         @cd $(PKG_BUILD_DIR); quilt pop -a -f >/dev/null 2>/dev/null
106         @cd $(PKG_BUILD_DIR); while quilt next 2>/dev/null >/dev/null && quilt push; do \
107                 quilt refresh; \
108         done; ! quilt next 2>/dev/null >/dev/null
109         $(if $(KERNEL_BUILD),$(Quilt/Refresh/Kernel),$(Quilt/Refresh/Package))
110         
111 update: quilt-check
112         $(if $(KERNEL_BUILD),$(Quilt/Refresh/Kernel),$(Quilt/Refresh/Package))
113