add support for the AVR32 platform, namely the ATNGW100 board - joint work with wigyori
[openwrt/svn-archive/archive.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)
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_PLATFORM_DIR)/patches,generic/), \
50 if [ -d $(GENERIC_PLATFORM_DIR)/patches ]; then $(PATCH) $(LINUX_DIR) $(GENERIC_PLATFORM_DIR)/patches; fi \
51 )
52 $(if $(strip $(QUILT)),$(call Quilt/Patch,./patches,platform/), \
53 if [ -d ./patches ]; then $(PATCH) $(LINUX_DIR) ./patches; 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 [ -f "$(PKG_BUILD_DIR)/patches/series" ] && cd $(PKG_BUILD_DIR); quilt push -a
61 touch $@
62
63 define Quilt/RefreshDir
64 mkdir -p $(1)
65 -rm -f $(1)/* 2>/dev/null >/dev/null
66 @( \
67 for patch in $$($(if $(2),grep "^$(2)",cat) $(PKG_BUILD_DIR)/patches/series | awk '{print $$1}'); do \
68 $(CP) -v "$(PKG_BUILD_DIR)/patches/$$patch" $(1); \
69 done; \
70 )
71 endef
72
73 define Quilt/Refresh/Package
74 $(call Quilt/RefreshDir,./patches)
75 endef
76
77 define Quilt/Refresh/Kernel
78 @[ -z "$$(grep -v '^generic/' $(PKG_BUILD_DIR)/patches/series | grep -v '^platform/')" ] || { \
79 echo "All kernel patches must start with either generic/ or platform/"; \
80 false; \
81 }
82 $(call Quilt/RefreshDir,$(GENERIC_PLATFORM_DIR)/patches,generic/)
83 $(call Quilt/RefreshDir,./patches,platform/)
84 endef
85
86 quilt-check: $(STAMP_PREPARED) FORCE
87 @[ -f "$(PKG_BUILD_DIR)/.quilt_used" ] || { \
88 echo "The source directory was not unpacked using quilt. Please rebuild with QUILT=1"; \
89 false; \
90 }
91 @[ -f "$(PKG_BUILD_DIR)/patches/series" ] || { \
92 echo "The source directory contains no quilt patches."; \
93 false; \
94 }
95 @[ "$$(cat $(PKG_BUILD_DIR)/patches/series | md5sum)" = "$$(sort $(PKG_BUILD_DIR)/patches/series | md5sum)" ] || { \
96 echo "The patches are not sorted in the right order. Please fix."; \
97 false; \
98 }
99
100 refresh: quilt-check
101 @cd $(PKG_BUILD_DIR); quilt pop -a -f >/dev/null 2>/dev/null
102 @cd $(PKG_BUILD_DIR); while quilt next 2>/dev/null >/dev/null && quilt push; do \
103 quilt refresh; \
104 done; ! quilt next 2>/dev/null >/dev/null
105 $(if $(KERNEL_BUILD),$(Quilt/Refresh/Kernel),$(Quilt/Refresh/Package))
106
107 update: quilt-check
108 $(if $(KERNEL_BUILD),$(Quilt/Refresh/Kernel),$(Quilt/Refresh/Package))
109