diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-02-16 10:46:42 -0800 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2017-02-16 20:53:12 +0100 |
commit | 11d376d2fe3a6079d5a8f6bfc17b8f99537e3ccc (patch) | |
tree | 821a92213d55ce4c19bf8deea7b97f1b7a999b59 | |
parent | 50f769f82c5dc41c8b5c1a249693f3e93e10ecb3 (diff) | |
download | meta-raspberrypi-11d376d2fe3a6079d5a8f6bfc17b8f99537e3ccc.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 | ||