diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-04-18 21:51:08 +0100 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2017-04-19 19:17:57 +0100 |
commit | 375e5d64baf039c846f6f504523e9b0e9d564496 (patch) | |
tree | 477f57b48d66ffdea3c602fd8427404deecd3e6f | |
parent | b61403a6a3a87e8e906e13d82cf77fa6241f3f64 (diff) | |
download | meta-raspberrypi-375e5d64baf039c846f6f504523e9b0e9d564496.tar.gz |
rpi-config: Specify bcm2710-rpi-3-b dtb for 64bit rpi3
Let config.txt explicitly specify it
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | recipes-bsp/bootfiles/rpi-config_git.bb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/recipes-bsp/bootfiles/rpi-config_git.bb b/recipes-bsp/bootfiles/rpi-config_git.bb index f610718..20ec343 100644 --- a/recipes-bsp/bootfiles/rpi-config_git.bb +++ b/recipes-bsp/bootfiles/rpi-config_git.bb | |||
@@ -112,6 +112,12 @@ do_deploy() { | |||
112 | fi | 112 | fi |
113 | } | 113 | } |
114 | 114 | ||
115 | do_deploy_append_raspberrypi3-64() { | ||
116 | # Device Tree support | ||
117 | echo "# Load correct Device Tree for Aarch64" >>${DEPLOYDIR}/bcm2835-bootfiles/config.txt | ||
118 | echo "device_tree=bcm2710-rpi-3-b.dtb" >>${DEPLOYDIR}/bcm2835-bootfiles/config.txt | ||
119 | } | ||
120 | |||
115 | addtask deploy before do_package after do_install | 121 | addtask deploy before do_package after do_install |
116 | do_deploy[dirs] += "${DEPLOYDIR}/bcm2835-bootfiles" | 122 | do_deploy[dirs] += "${DEPLOYDIR}/bcm2835-bootfiles" |
117 | 123 | ||