summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrei Gherzan <andrei@gherzan.ro>2017-04-19 18:02:00 +0100
committerAndrei Gherzan <andrei@gherzan.ro>2017-04-19 18:43:48 +0100
commit962ba44ec855b44dc28ea4149bacd4955edd938e (patch)
treee0b2ca843c1458d12621ff881ff35f78f1c887a3
parent668446e2835b3d48f9eda6648a09a825fe61c04c (diff)
downloadmeta-raspberrypi-962ba44ec855b44dc28ea4149bacd4955edd938e.tar.gz
raspberrypi0-wifi.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/raspberrypi0-wifi.conf10
1 files changed, 7 insertions, 3 deletions
diff --git a/conf/machine/raspberrypi0-wifi.conf b/conf/machine/raspberrypi0-wifi.conf
index 2b7cea4..adb2238 100644
--- a/conf/machine/raspberrypi0-wifi.conf
+++ b/conf/machine/raspberrypi0-wifi.conf
@@ -2,10 +2,14 @@
2#@NAME: RaspberryPi Zero WiFi Development Board 2#@NAME: RaspberryPi Zero WiFi Development Board
3#@DESCRIPTION: Machine configuration for the RaspberryPi Zero WiFi board (https://www.raspberrypi.org/blog/raspberry-pi-zero-w-joins-family/) 3#@DESCRIPTION: Machine configuration for the RaspberryPi Zero WiFi board (https://www.raspberrypi.org/blog/raspberry-pi-zero-w-joins-family/)
4 4
5MACHINEOVERRIDES = "raspberrypi:${MACHINE}" 5DEFAULTTUNE ?= "arm1176jzfshf"
6include conf/machine/raspberrypi.conf 6require conf/machine/include/tune-arm1176jzf-s.inc
7include conf/machine/include/rpi-base.inc
7 8
8MACHINE_EXTRA_RRECOMMENDS += "linux-firmware-bcm43430" 9MACHINE_EXTRA_RRECOMMENDS += "linux-firmware-bcm43430"
9 10
10SERIAL_CONSOLE = "115200 ttyS0" 11SDIMG_KERNELIMAGE ?= "kernel.img"
12KERNEL_DEFCONFIG ?= "bcmrpi_defconfig"
13UBOOT_MACHINE ?= "rpi_config"
14SERIAL_CONSOLE ?= "115200 ttyS0"
11VC4_CMA_SIZE ?= "cma-128" 15VC4_CMA_SIZE ?= "cma-128"