[oe-commits] org.oe.dev bitbake.conf: Introduce variables to specify machine's display properties.

pfalcon commit openembedded-commits at lists.openembedded.org
Fri Jul 13 10:49:28 UTC 2007


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.

Author: pfalcon at openembedded.org
Branch: org.openembedded.dev
Revision: 6fac15e307a3e92d647e9f142ee8341eec839a79
ViewMTN: http://monotone.openembedded.org/revision.psp?id=6fac15e307a3e92d647e9f142ee8341eec839a79
Files:
1
conf/bitbake.conf
Diffs:

#
# mt diff -r8654baa6db1769cd516400afebdc63c9b19ee633 -r6fac15e307a3e92d647e9f142ee8341eec839a79
#
# 
# 
# patch "conf/bitbake.conf"
#  from [28be7aa3c03959211fa8fff38d1903e1ec2dd8de]
#    to [1a40a8a4b4660be43379de36b41dceabe1bebd19]
# 
============================================================
--- conf/bitbake.conf	28be7aa3c03959211fa8fff38d1903e1ec2dd8de
+++ conf/bitbake.conf	1a40a8a4b4660be43379de36b41dceabe1bebd19
@@ -468,7 +468,7 @@ OES_BITBAKE_CONF = "1"
 OES_BITBAKE_CONF = "1"
 
 ##################################################################
-# Task-base stuff
+# Machine properties and task-base stuff
 ##################################################################
 
 MACHINE_FEATURES ?= "kernel26"
@@ -477,7 +477,13 @@ ROOT_FLASH_SIZE ?= "256"
 # 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 ?= ""






More information about the Openembedded-commits mailing list