diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-07-12 12:42:08 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-07-12 12:42:08 +0000 |
commit | 2123a2aba7385cb19a25f0cf61be70bea52f5929 (patch) | |
tree | bfadf95fc30cc8dbf26e769e4ca901060c360ce7 /conf | |
parent | 75dd520287cba973d751626c17f595f603687dbe (diff) |
bitbake.conf: Introduce variables to specify machine's display properties.
* Per RFC on the mailing list.
* Following variables added:
MACHINE_DISPLAY_WIDTH_PIXELS - width in pixels in hardware orientation
MACHINE_DISPLAY_HEIGHT_PIXELS - height in pixels in hardware orientation
MACHINE_DISPLAY_ORIENTATION - number of degrees hardware display orientation must
be rotated to be in "default natural use" orientation.
MACHINE_DISPLAY_BPP - bits per pixel
* Also, deprecate GUI_MACHINE_CLASS and replace with MACHINE_GUI_CLASS.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/bitbake.conf | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index a4dd4b18a8..77d6c1ee83 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -468,7 +468,7 @@ IMAGE_ROOTFS_SIZE_ext3.gz ?= "65536" OES_BITBAKE_CONF = "1" ################################################################## -# Task-base stuff +# Machine properties and task-base stuff ################################################################## MACHINE_FEATURES ?= "kernel26" @@ -477,7 +477,13 @@ DISTRO_FEATURES ?= "" # This is used to limit what packages goes into images built, so set big by default ROOT_FLASH_SIZE ?= "256" -GUI_MACHINE_CLASS ?= "smallscreen" +MACHINE_GUI_CLASS ?= "smallscreen" +# GUI_MACHINE_CLASS is deprecated, please use MACHINE_GUI_CLASS instead +GUI_MACHINE_CLASS ?= "${MACHINE_GUI_CLASS}" +MACHINE_DISPLAY_WIDTH_PIXELS ?= "240" +MACHINE_DISPLAY_HEIGHT_PIXELS ?= "320" +MACHINE_DISPLAY_ORIENTATION ?= "0" +MACHINE_DISPLAY_BPP ?= "16" DISTRO_EXTRA_RDEPENDS ?= "" DISTRO_EXTRA_RRECOMMENDS ?= "" |