summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README9
-rw-r--r--classes/sdcard_image-rpi.bbclass5
-rwxr-xr-xconf/machine/raspberrypi.conf5
3 files changed, 10 insertions, 9 deletions
diff --git a/README b/README
index 1a5259b..90ad382 100644
--- a/README
+++ b/README
@@ -78,5 +78,14 @@ Optional - compressed deployed files:
78 SDIMG_ROOTFS_TYPE = "ext3.xz" 78 SDIMG_ROOTFS_TYPE = "ext3.xz"
79*Accommodate the values above to your own needs (ex: ext3 / ext4). 79*Accommodate the values above to your own needs (ex: ext3 / ext4).
80 80
81Optional - GPU firmware:
82
83By default the GPU firmware shipped is arm192. You can overwrite this using the
84variable RPI_GPU_FIRMWARE with one of the values below.
85# arm128 : 128M ARM, 128M GPU split
86# arm192 : 192M ARM, 64M GPU split
87# arm224 : 224M ARM, 32M GPU split
88# arm240 : 240M ARM, 16M GPU split
89
81Layer maintainer: John Willis <John.Willis at distant-earth.com> 90Layer maintainer: John Willis <John.Willis at distant-earth.com>
82 Andrei Gherzan <andrei at gherzan.ro> 91 Andrei Gherzan <andrei at gherzan.ro>
diff --git a/classes/sdcard_image-rpi.bbclass b/classes/sdcard_image-rpi.bbclass
index aceac27..eaa42f9 100644
--- a/classes/sdcard_image-rpi.bbclass
+++ b/classes/sdcard_image-rpi.bbclass
@@ -37,11 +37,6 @@ IMAGE_ROOTFS_ALIGNMENT = "4096"
37SDIMG_ROOTFS_TYPE ?= "ext3" 37SDIMG_ROOTFS_TYPE ?= "ext3"
38SDIMG_ROOTFS = "${IMAGE_NAME}.rootfs.${SDIMG_ROOTFS_TYPE}" 38SDIMG_ROOTFS = "${IMAGE_NAME}.rootfs.${SDIMG_ROOTFS_TYPE}"
39 39
40# Set GPU firmware image to be used
41# arm128 : 128M ARM, 128M GPU split
42# arm192 : 192M ARM, 64M GPU split
43# arm224 : 224M ARM, 32M GPU split
44# arm240 : 240M ARM, 16M GPU split
45RPI_GPU_FIRMWARE ?= "arm192" 40RPI_GPU_FIRMWARE ?= "arm192"
46 41
47IMAGE_DEPENDS_rpi-sdimg = " \ 42IMAGE_DEPENDS_rpi-sdimg = " \
diff --git a/conf/machine/raspberrypi.conf b/conf/machine/raspberrypi.conf
index db47ee2..4fd5c8c 100755
--- a/conf/machine/raspberrypi.conf
+++ b/conf/machine/raspberrypi.conf
@@ -38,8 +38,5 @@ MACHINE_EXTRA_RRECOMMENDS += " \
38 kernel-modules \ 38 kernel-modules \
39" 39"
40 40
41# Set GPU firmware image to be used 41# Set default GPU firmware image to be shipped
42# arm128 : 128M ARM, 128M GPU split
43# arm192 : 192M ARM, 64M GPU split
44# arm224 : 224M ARM, 32M GPU split
45RPI_GPU_FIRMWARE ?= "arm192" 42RPI_GPU_FIRMWARE ?= "arm192"