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 19:19:32 +0100
commit039a1d7f2adc9e9025043be9d79b17df7b9d4a3f (patch)
treefef311f290e9a973fdf2ba9e193dba2444a08da1
parent375e5d64baf039c846f6f504523e9b0e9d564496 (diff)
downloadmeta-raspberrypi-039a1d7f2adc9e9025043be9d79b17df7b9d4a3f.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"