mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-24 07:06:42 +00:00
Change patch to git apply
This commit is contained in:
parent
f848070d16
commit
1279e8bd57
8
Makefile
8
Makefile
@ -260,7 +260,7 @@ define define_module =
|
|||||||
git clone $($1_repo) "$(build)/$($1_base_dir)"
|
git clone $($1_repo) "$(build)/$($1_base_dir)"
|
||||||
cd $(build)/$($1_base_dir) && git reset --hard $($1_commit_hash) && git submodule update --init --checkout
|
cd $(build)/$($1_base_dir) && git reset --hard $($1_commit_hash) && git submodule update --init --checkout
|
||||||
if [ -r patches/$($1_patch_name).patch ]; then \
|
if [ -r patches/$($1_patch_name).patch ]; then \
|
||||||
( cd $(build)/$($1_base_dir) ; patch -p1 ) \
|
( git apply --verbose --reject --binary --directory build/$(CONFIG_TARGET_ARCH)/$($1_base_dir) ) \
|
||||||
< patches/$($1_patch_name).patch \
|
< patches/$($1_patch_name).patch \
|
||||||
|| exit 1 ; \
|
|| exit 1 ; \
|
||||||
fi
|
fi
|
||||||
@ -268,7 +268,7 @@ define define_module =
|
|||||||
[ -r patches/$($1_patch_name) ] ; then \
|
[ -r patches/$($1_patch_name) ] ; then \
|
||||||
for patch in patches/$($1_patch_name)/*.patch ; do \
|
for patch in patches/$($1_patch_name)/*.patch ; do \
|
||||||
echo "Applying patch file : $$$$patch " ; \
|
echo "Applying patch file : $$$$patch " ; \
|
||||||
( cd $(build)/$($1_base_dir) ; patch -p1 ) \
|
( git apply --verbose --reject --binary --directory build/$(CONFIG_TARGET_ARCH)/$($1_base_dir) ) \
|
||||||
< $$$$patch \
|
< $$$$patch \
|
||||||
|| exit 1 ; \
|
|| exit 1 ; \
|
||||||
done ; \
|
done ; \
|
||||||
@ -296,7 +296,7 @@ define define_module =
|
|||||||
mkdir -p "$$(dir $$@)"
|
mkdir -p "$$(dir $$@)"
|
||||||
tar -xf "$(packages)/$($1_tar)" $(or $($1_tar_opt),--strip 1) -C "$$(dir $$@)"
|
tar -xf "$(packages)/$($1_tar)" $(or $($1_tar_opt),--strip 1) -C "$$(dir $$@)"
|
||||||
if [ -r patches/$($1_patch_name).patch ]; then \
|
if [ -r patches/$($1_patch_name).patch ]; then \
|
||||||
( cd $$(dir $$@) ; patch -p1 ) \
|
( git apply --verbose --reject --binary --directory build/$(CONFIG_TARGET_ARCH)/$($1_base_dir) ) \
|
||||||
< patches/$($1_patch_name).patch \
|
< patches/$($1_patch_name).patch \
|
||||||
|| exit 1 ; \
|
|| exit 1 ; \
|
||||||
fi
|
fi
|
||||||
@ -304,7 +304,7 @@ define define_module =
|
|||||||
[ -r patches/$($1_patch_name) ] ; then \
|
[ -r patches/$($1_patch_name) ] ; then \
|
||||||
for patch in patches/$($1_patch_name)/*.patch ; do \
|
for patch in patches/$($1_patch_name)/*.patch ; do \
|
||||||
echo "Applying patch file : $$$$patch " ; \
|
echo "Applying patch file : $$$$patch " ; \
|
||||||
( cd $$(dir $$@) ; patch -p1 ) \
|
( git apply --verbose --reject --binary --directory build/$(CONFIG_TARGET_ARCH)/$($1_base_dir) ) \
|
||||||
< $$$$patch \
|
< $$$$patch \
|
||||||
|| exit 1 ; \
|
|| exit 1 ; \
|
||||||
done ; \
|
done ; \
|
||||||
|
Loading…
Reference in New Issue
Block a user