build-u_boot: Add U_BOOT_PATCHES_DIR option
This commit is contained in:
parent
a82903ec52
commit
908dc3130c
|
|
@ -23,6 +23,11 @@ fi
|
|||
# Step into U-Boot directory
|
||||
cd u-boot
|
||||
|
||||
# Apply patches
|
||||
if [ -d "${U_BOOT_PATCHES_DIR}" ]; then
|
||||
git apply "${U_BOOT_PATCHES_DIR}"/*.patch || :
|
||||
fi
|
||||
|
||||
# Setup ARCH
|
||||
case "${TUPLE}" in
|
||||
arm-*)
|
||||
|
|
|
|||
Loading…
Reference in New Issue