diff options
author | Paul Barker <pbarker@toganlabs.com> | 2018-04-16 20:44:51 +0000 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.com> | 2018-04-23 14:08:04 +0100 |
commit | 9b2cbacb074786530c3c7eab70260c8f6de302bf (patch) | |
tree | ac02e6cb14b76eddd62d6d177f0b62b5722cd909 /recipes-kernel | |
parent | e059aaffdf8a83ab59bec7d26bd78291b5abee10 (diff) | |
download | meta-raspberrypi-9b2cbacb074786530c3c7eab70260c8f6de302bf.tar.gz |
Drop unnecessary dependencies and tasks
We have a few recipes which only deploy files that go into the boot partition
and do not create packages to be installed into the rootfs. These recipes don't
need to run the usual packaging tasks so we can drop them to speed up the build
a little.
We also have a bunch of recipes that don't need the usual toolchain as they just
copy files or invoke native commands like `mkimage`. So to speed up the build a
little more we can set INHIBIT_DEFAULT_DEPS to avoid an unnecessary dependency
on the toolchain.
Signed-off-by: Paul Barker <pbarker@toganlabs.com>
Diffstat (limited to 'recipes-kernel')
-rw-r--r-- | recipes-kernel/linux-firmware/linux-firmware-raspbian.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes-kernel/linux-firmware/linux-firmware-raspbian.bb b/recipes-kernel/linux-firmware/linux-firmware-raspbian.bb index ee89301..d11a53b 100644 --- a/recipes-kernel/linux-firmware/linux-firmware-raspbian.bb +++ b/recipes-kernel/linux-firmware/linux-firmware-raspbian.bb | |||
@@ -5,6 +5,8 @@ LICENSE = "Firmware-broadcom_bcm43xx" | |||
5 | 5 | ||
6 | LIC_FILES_CHKSUM = "file://LICENCE.broadcom_bcm43xx;md5=3160c14df7228891b868060e1951dfbc" | 6 | LIC_FILES_CHKSUM = "file://LICENCE.broadcom_bcm43xx;md5=3160c14df7228891b868060e1951dfbc" |
7 | 7 | ||
8 | INHIBIT_DEFAULT_DEPS = "1" | ||
9 | |||
8 | # These are not common licenses, set NO_GENERIC_LICENSE for them | 10 | # These are not common licenses, set NO_GENERIC_LICENSE for them |
9 | # so that the license files will be copied from fetched source | 11 | # so that the license files will be copied from fetched source |
10 | NO_GENERIC_LICENSE[Firmware-broadcom_bcm43xx] = "LICENCE.broadcom_bcm43xx" | 12 | NO_GENERIC_LICENSE[Firmware-broadcom_bcm43xx] = "LICENCE.broadcom_bcm43xx" |