mirror of https://github.com/hak5/openwrt.git
allow the kernel to provide own series files for specific subdirs
SVN-Revision: 8557lede-17.01
parent
f0cdd3ffdd
commit
9566fb1f07
|
@ -59,6 +59,25 @@ define Kernel/Patch/Default
|
||||||
$(if $(strip $(QUILT)),touch $(PKG_BUILD_DIR)/.quilt_used)
|
$(if $(strip $(QUILT)),touch $(PKG_BUILD_DIR)/.quilt_used)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
ifeq ($(KERNEL_BUILD),1)
|
||||||
|
$(STAMP_PATCHED): $(STAMP_PREPARED)
|
||||||
|
@cd $(PKG_BUILD_DIR); quilt pop -a -f >/dev/null 2>/dev/null || true
|
||||||
|
(\
|
||||||
|
cd $(PKG_BUILD_DIR)/patches; \
|
||||||
|
rm -f series; \
|
||||||
|
for file in *; do \
|
||||||
|
if [ -f $$file/series ]; then \
|
||||||
|
echo "Converting $$file/series"; \
|
||||||
|
awk -v file="$$file/" '$$0 !~ /^#/ { print file $$0 }' $$file/series >> series; \
|
||||||
|
else \
|
||||||
|
echo "Sorting patches in $$file"; \
|
||||||
|
find $$file/* -type f \! -name series | sort >> series; \
|
||||||
|
fi; \
|
||||||
|
done; \
|
||||||
|
)
|
||||||
|
if [ -s "$(PKG_BUILD_DIR)/patches/series" ]; then (cd $(PKG_BUILD_DIR); quilt push -a); fi
|
||||||
|
touch $@
|
||||||
|
else
|
||||||
$(STAMP_PATCHED): $(STAMP_PREPARED)
|
$(STAMP_PATCHED): $(STAMP_PREPARED)
|
||||||
@cd $(PKG_BUILD_DIR); quilt pop -a -f >/dev/null 2>/dev/null || true
|
@cd $(PKG_BUILD_DIR); quilt pop -a -f >/dev/null 2>/dev/null || true
|
||||||
(\
|
(\
|
||||||
|
@ -67,6 +86,7 @@ $(STAMP_PATCHED): $(STAMP_PREPARED)
|
||||||
)
|
)
|
||||||
if [ -s "$(PKG_BUILD_DIR)/patches/series" ]; then (cd $(PKG_BUILD_DIR); quilt push -a); fi
|
if [ -s "$(PKG_BUILD_DIR)/patches/series" ]; then (cd $(PKG_BUILD_DIR); quilt push -a); fi
|
||||||
touch $@
|
touch $@
|
||||||
|
endif
|
||||||
|
|
||||||
define Quilt/RefreshDir
|
define Quilt/RefreshDir
|
||||||
mkdir -p $(1)
|
mkdir -p $(1)
|
||||||
|
|
Loading…
Reference in New Issue