mirror of
https://github.com/lingble/meta-tegra.git
synced 2025-10-30 03:52:41 +00:00
to take advantage of the automatic license whitelisting buried in base.bbclass that checks for PN starting with 'gcc-source-', and avoid the issue mentioned in #1711. Signed-off-by: Matt Madison <matt@madison.systems>
22 lines
620 B
PHP
22 lines
620 B
PHP
do_fetch() {
|
|
:
|
|
}
|
|
do_fetch[noexec] = "1"
|
|
deltask do_unpack
|
|
deltask do_patch
|
|
|
|
SRC_URI = ""
|
|
|
|
do_configure[depends] += "gcc-source-for-nvcc-${PV}:do_preconfigure"
|
|
do_populate_lic[depends] += "gcc-source-for-nvcc-${PV}:do_unpack"
|
|
do_deploy_source_date_epoch[depends] += "gcc-source-for-nvcc-${PV}:do_deploy_source_date_epoch"
|
|
|
|
# Copy the SDE from the shared workdir to the recipe workdir
|
|
do_deploy_source_date_epoch () {
|
|
sde_file=${SDE_FILE}
|
|
sde_file=${sde_file#${WORKDIR}/}
|
|
mkdir -p ${SDE_DEPLOYDIR} $(dirname ${SDE_FILE})
|
|
cp -p $(dirname ${S})/$sde_file ${SDE_DEPLOYDIR}
|
|
cp -p $(dirname ${S})/$sde_file ${SDE_FILE}
|
|
}
|