2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-05-26 14:08:24 +02:00
|
|
|
#
|
|
|
|
# freescale-imx
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-05-26 14:08:24 +02:00
|
|
|
|
2019-12-02 21:05:00 +01:00
|
|
|
FREESCALE_IMX_SITE = http://www.nxp.com/lgfiles/NMG/MAD/YOCTO
|
2013-05-26 14:08:24 +02:00
|
|
|
|
2014-11-19 22:30:34 +01:00
|
|
|
# Helper for self-extracting binaries distributed by Freescale.
|
|
|
|
#
|
|
|
|
# The --force option makes sure it doesn't fail if the source
|
|
|
|
# directory already exists. The --auto-accept skips the license check,
|
|
|
|
# as it is not needed in Buildroot because we have legal-info. Since
|
|
|
|
# there's a EULA in the binary file, we extract it in this macro, and
|
|
|
|
# it should therefore be added to the LICENSE_FILES variable of
|
|
|
|
# packages using this macro. Also, remember to set REDISTRIBUTE to
|
|
|
|
# "NO". Indeed, this is a legal minefield: the EULA specifies that the
|
|
|
|
# Board Support Package includes software and hardware (sic!) for
|
|
|
|
# which a separate license is needed...
|
|
|
|
#
|
|
|
|
# $(1): full path to the archive file
|
|
|
|
#
|
|
|
|
define FREESCALE_IMX_EXTRACT_HELPER
|
|
|
|
awk 'BEGIN { start = 0; } \
|
|
|
|
/^EOEULA/ { start = 0; } \
|
|
|
|
{ if (start) print; } \
|
|
|
|
/<<EOEULA/ { start = 1; }' \
|
|
|
|
$(1) > $(@D)/EULA
|
|
|
|
cd $(@D) && sh $(1) --force --auto-accept
|
|
|
|
find $(@D)/$(basename $(notdir $(1))) -mindepth 1 -maxdepth 1 -exec mv {} $(@D) \;
|
|
|
|
rmdir $(@D)/$(basename $(notdir $(1)))
|
|
|
|
endef
|
|
|
|
|
2013-09-03 10:45:41 +02:00
|
|
|
include $(sort $(wildcard package/freescale-imx/*/*.mk))
|