mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 05:36:32 +00:00
uboot: unbreak legal info for legacy versions
Fixes #6986 Prior to u-boot 2013.10, the GPL license text was stored in COPYING and not Licenses/gpl-2.0.txt, breaking legal-info. Work around it by simply copying the file from the old location to the new if present. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
482757f537
commit
2e628372d3
@ -75,6 +75,16 @@ $(if $(call qstrip,$(2)),
|
|||||||
@echo '#define $(strip $(1)) $(call qstrip,$(2))' >> $(@D)/include/config.h)
|
@echo '#define $(strip $(1)) $(call qstrip,$(2))' >> $(@D)/include/config.h)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
# prior to u-boot 2013.10 the license info was in COPYING. Copy it so
|
||||||
|
# legal-info finds it
|
||||||
|
define UBOOT_COPY_OLD_LICENSE_FILE
|
||||||
|
if [ -f $(@D)/COPYING ]; then \
|
||||||
|
$(INSTALL) -m 0644 -D $(@D)/COPYING $(@D)/Licenses/gpl-2.0.txt; \
|
||||||
|
fi
|
||||||
|
endef
|
||||||
|
|
||||||
|
UBOOT_POST_EXTRACT_HOOKS += UBOOT_COPY_OLD_LICENSE_FILE
|
||||||
|
|
||||||
ifneq ($(call qstrip,$(BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR)),)
|
ifneq ($(call qstrip,$(BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR)),)
|
||||||
define UBOOT_APPLY_CUSTOM_PATCHES
|
define UBOOT_APPLY_CUSTOM_PATCHES
|
||||||
support/scripts/apply-patches.sh $(@D) $(BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR) \
|
support/scripts/apply-patches.sh $(@D) $(BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR) \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user