diff options
author | Andrei Gherzan <andrei@gherzan.ro> | 2019-07-15 14:26:21 +0100 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2019-07-15 15:29:49 +0100 |
commit | f31d0193c5d12648bbef425ec319e096453b3a9b (patch) | |
tree | f9d1dd830ff9e1758864268679203ff3d0bcb405 | |
parent | 89401374988a507390546757d135ed31bcdb9d5b (diff) | |
download | meta-raspberrypi-ag/rpi4-64-dtbo.tar.gz |
linux-raspberrypi: Build dtbs with dtbs make target for all 64bit targetsag/rpi4-64-dtbo
We already do this for rpi3-64 and we will need it for rpi4-64 as well.
See 6c4de0b5fe44b8e661f1391ee8540a7f04d75315 for more details.
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
-rw-r--r-- | recipes-kernel/linux/linux-raspberrypi.inc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/recipes-kernel/linux/linux-raspberrypi.inc b/recipes-kernel/linux/linux-raspberrypi.inc index e20bfef..ea7f778 100644 --- a/recipes-kernel/linux/linux-raspberrypi.inc +++ b/recipes-kernel/linux/linux-raspberrypi.inc | |||
@@ -122,9 +122,11 @@ do_configure_prepend() { | |||
122 | rm -f ${B}/.config.patched | 122 | rm -f ${B}/.config.patched |
123 | } | 123 | } |
124 | 124 | ||
125 | do_compile_append_raspberrypi3-64() { | 125 | do_compile_append() { |
126 | cc_extra=$(get_cc_option) | 126 | if [ "${SITEINFO_BITS}" = "64" ]; then |
127 | oe_runmake dtbs CC="${KERNEL_CC} $cc_extra " LD="${KERNEL_LD}" ${KERNEL_EXTRA_ARGS} | 127 | cc_extra=$(get_cc_option) |
128 | oe_runmake dtbs CC="${KERNEL_CC} $cc_extra " LD="${KERNEL_LD}" ${KERNEL_EXTRA_ARGS} | ||
129 | fi | ||
128 | } | 130 | } |
129 | 131 | ||
130 | do_deploy_append() { | 132 | do_deploy_append() { |