summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrei Gherzan <andrei@gherzan.ro>2017-04-20 18:17:36 +0100
committerAndrei Gherzan <andrei@gherzan.ro>2017-04-21 17:02:28 +0100
commitdecdacf30c2337193e99e4aac0ad2892120fe778 (patch)
tree0e69e98fb83b87404c04e02d8cec0c5b3af4d75b
parent0d28786dac56aecce9d3f7f74dd4b9c63779f2bc (diff)
downloadmeta-raspberrypi-decdacf30c2337193e99e4aac0ad2892120fe778.tar.gz
raspberrypi3.conf: Use a stand alone machine configuration
As well make all the variables assigned in a way that they can be overwritten so we can give maximum flexibility to distros. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
-rw-r--r--conf/machine/raspberrypi3.conf9
1 files changed, 6 insertions, 3 deletions
diff --git a/conf/machine/raspberrypi3.conf b/conf/machine/raspberrypi3.conf
index f9e0ff5..b511bec 100644
--- a/conf/machine/raspberrypi3.conf
+++ b/conf/machine/raspberrypi3.conf
@@ -2,11 +2,14 @@
2#@NAME: RaspberryPi 3 Development Board 2#@NAME: RaspberryPi 3 Development Board
3#@DESCRIPTION: Machine configuration for the RaspberryPi 3 3#@DESCRIPTION: Machine configuration for the RaspberryPi 3
4 4
5MACHINEOVERRIDES = "raspberrypi2:${MACHINE}" 5DEFAULTTUNE ?= "cortexa7thf-neon-vfpv4"
6include conf/machine/raspberrypi2.conf 6require conf/machine/include/tune-cortexa7.inc
7include conf/machine/include/rpi-base.inc
7 8
8MACHINE_EXTRA_RRECOMMENDS += "linux-firmware-bcm43430" 9MACHINE_EXTRA_RRECOMMENDS += "linux-firmware-bcm43430"
9 10
11SDIMG_KERNELIMAGE ?= "kernel7.img"
12KERNEL_DEFCONFIG ?= "bcm2709_defconfig"
10UBOOT_MACHINE = "rpi_3_32b_config" 13UBOOT_MACHINE = "rpi_3_32b_config"
11SERIAL_CONSOLE = "115200 ttyS0" 14SERIAL_CONSOLE ?= "115200 ttyS0"
12VC4_CMA_SIZE ?= "cma-256" 15VC4_CMA_SIZE ?= "cma-256"