From eb8dc40360f0cfef56fb6947cc817a547d6d9bc6 Mon Sep 17 00:00:00 2001 From: Dave Cobbley Date: Tue, 14 Aug 2018 10:05:37 -0700 Subject: [Subtree] Removing import-layers directory As part of the move to subtrees, need to bring all the import layers content to the top level. Change-Id: I4a163d10898cbc6e11c27f776f60e1a470049d8f Signed-off-by: Dave Cobbley Signed-off-by: Brad Bishop --- poky/meta/recipes-bsp/formfactor/files/config | 50 ++++++++++++++++++++++ poky/meta/recipes-bsp/formfactor/files/machconfig | 0 .../formfactor/files/qemuarm/machconfig | 10 +++++ .../formfactor/files/qemuarmv6/machconfig | 10 +++++ .../formfactor/files/qemuarmv7/machconfig | 10 +++++ .../formfactor/files/qemumips/machconfig | 10 +++++ .../formfactor/files/qemumips64/machconfig | 10 +++++ .../formfactor/files/qemuppc/machconfig | 10 +++++ .../formfactor/files/qemux86-64/machconfig | 10 +++++ .../formfactor/files/qemux86/machconfig | 10 +++++ 10 files changed, 130 insertions(+) create mode 100755 poky/meta/recipes-bsp/formfactor/files/config create mode 100755 poky/meta/recipes-bsp/formfactor/files/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemuarm/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemuarmv6/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemuarmv7/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemumips/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemumips64/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemuppc/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemux86-64/machconfig create mode 100755 poky/meta/recipes-bsp/formfactor/files/qemux86/machconfig (limited to 'poky/meta/recipes-bsp/formfactor/files') diff --git a/poky/meta/recipes-bsp/formfactor/files/config b/poky/meta/recipes-bsp/formfactor/files/config new file mode 100755 index 000000000..ecfdf26e2 --- /dev/null +++ b/poky/meta/recipes-bsp/formfactor/files/config @@ -0,0 +1,50 @@ +#!/bin/sh + +if [ -e /etc/formfactor/machconfig ]; then + . /etc/formfactor/machconfig +fi + +if [ -z "$HAVE_TOUCHSCREEN" ]; then + HAVE_TOUCHSCREEN=0 +fi + +if [ -z "$HAVE_KEYBOARD" ]; then + HAVE_KEYBOARD=1 +fi + +if [ -z "$HAVE_KEYBOARD_PORTRAIT" ]; then + HAVE_KEYBOARD_PORTRAIT=0 +fi + +if [ -z "$HAVE_KEYBOARD_LANDSCAPE" ]; then + HAVE_KEYBOARD_LANDSCAPE=0 +fi + +if [ -z "$DISPLAY_CAN_ROTATE" ]; then + DISPLAY_CAN_ROTATE=0 +fi + +if [ -z "$DISPLAY_ORIENTATION" ]; then + DISPLAY_ORIENTATION=0 +fi + +if [ -e "/dev/fb" ]; then + if [ -z "$DISPLAY_WIDTH_PIXELS" ]; then + DISPLAY_WIDTH_PIXELS=`/usr/sbin/fbset | grep geometry | awk '{ print $2 }'` + fi + + if [ -z "$DISPLAY_HEIGHT_PIXELS" ]; then + DISPLAY_HEIGHT_PIXELS=`/usr/sbin/fbset | grep geometry | awk '{ print $3 }'` + fi + + if [ -z "$DISPLAY_BPP" ]; then + DISPLAY_BPP=`/usr/sbin/fbset | grep geometry | awk '{ print $6 }'` + fi +fi + +# +# No way to guess these or have any defaults +# +#DISPLAY_WIDTH_MM +#DISPLAY_HEIGHT_MM +#DISPLAY_SUBPIXEL_ORDER= diff --git a/poky/meta/recipes-bsp/formfactor/files/machconfig b/poky/meta/recipes-bsp/formfactor/files/machconfig new file mode 100755 index 000000000..e69de29bb diff --git a/poky/meta/recipes-bsp/formfactor/files/qemuarm/machconfig b/poky/meta/recipes-bsp/formfactor/files/qemuarm/machconfig new file mode 100755 index 000000000..56a2ae2e3 --- /dev/null +++ b/poky/meta/recipes-bsp/formfactor/files/qemuarm/machconfig @@ -0,0 +1,10 @@ +HAVE_TOUCHSCREEN=1 +HAVE_KEYBOARD=1 + +DISPLAY_CAN_ROTATE=0 +DISPLAY_ORIENTATION=0 +#DISPLAY_WIDTH_PIXELS=640 +#DISPLAY_HEIGHT_PIXELS=480 +#DISPLAY_BPP=16 +DISPLAY_DPI=150 +DISPLAY_SUBPIXEL_ORDER=vrgb diff --git a/poky/meta/recipes-bsp/formfactor/files/qemuarmv6/machconfig b/poky/meta/recipes-bsp/formfactor/files/qemuarmv6/machconfig new file mode 100755 index 000000000..56a2ae2e3 --- /dev/null +++ b/poky/meta/recipes-bsp/formfactor/files/qemuarmv6/machconfig @@ -0,0 +1,10 @@ +HAVE_TOUCHSCREEN=1 +HAVE_KEYBOARD=1 + +DISPLAY_CAN_ROTATE=0 +DISPLAY_ORIENTATION=0 +#DISPLAY_WIDTH_PIXELS=640 +#DISPLAY_HEIGHT_PIXELS=480 +#DISPLAY_BPP=16 +DISPLAY_DPI=150 +DISPLAY_SUBPIXEL_ORDER=vrgb diff --git a/poky/meta/recipes-bsp/formfactor/files/qemuarmv7/machconfig b/poky/meta/recipes-bsp/formfactor/files/qemuarmv7/machconfig new file mode 100755 index 000000000..56a2ae2e3 --- /dev/null +++ b/poky/meta/recipes-bsp/formfactor/files/qemuarmv7/machconfig @@ -0,0 +1,10 @@ +HAVE_TOUCHSCREEN=1 +HAVE_KEYBOARD=1 + +DISPLAY_CAN_ROTATE=0 +DISPLAY_ORIENTATION=0 +#DISPLAY_WIDTH_PIXELS=640 +#DISPLAY_HEIGHT_PIXELS=480 +#DISPLAY_BPP=16 +DISPLAY_DPI=150 +DISPLAY_SUBPIXEL_ORDER=vrgb diff --git a/poky/meta/recipes-bsp/formfactor/files/qemumips/machconfig b/poky/meta/recipes-bsp/formfactor/files/qemumips/machconfig new file mode 100755 index 000000000..56777b6e2 --- /dev/null +++ b/poky/meta/recipes-bsp/formfactor/files/qemumips/machconfig @@ -0,0 +1,10 @@ +HAVE_TOUCHSCREEN=1 +HAVE_KEYBOARD=1 + +DISPLAY_CAN_ROTATE=0 +DISPLAY_ORIENTATION=0 +DISPLAY_WIDTH_PIXELS=640 +DISPLAY_HEIGHT_PIXELS=480 +DISPLAY_BPP=16 +DISPLAY_DPI=150 +#DISPLAY_SUBPIXEL_ORDER=vrgb diff --git a/poky/meta/recipes-bsp/formfactor/files/qemumips64/machconfig b/poky/meta/recipes-bsp/formfactor/files/qemumips64/machconfig new file mode 100755 index 000000000..56777b6e2 --- /dev/null +++ b/poky/meta/recipes-bsp/formfactor/files/qemumips64/machconfig @@ -0,0 +1,10 @@ +HAVE_TOUCHSCREEN=1 +HAVE_KEYBOARD=1 + +DISPLAY_CAN_ROTATE=0 +DISPLAY_ORIENTATION=0 +DISPLAY_WIDTH_PIXELS=640 +DISPLAY_HEIGHT_PIXELS=480 +DISPLAY_BPP=16 +DISPLAY_DPI=150 +#DISPLAY_SUBPIXEL_ORDER=vrgb diff --git a/poky/meta/recipes-bsp/formfactor/files/qemuppc/machconfig b/poky/meta/recipes-bsp/formfactor/files/qemuppc/machconfig new file mode 100755 index 000000000..5ea2270cd --- /dev/null +++ b/poky/meta/recipes-bsp/formfactor/files/qemuppc/machconfig @@ -0,0 +1,10 @@ +HAVE_TOUCHSCREEN=1 +HAVE_KEYBOARD=1 + +DISPLAY_CAN_ROTATE=0 +DISPLAY_ORIENTATION=0 +DISPLAY_WIDTH_PIXELS=800 +DISPLAY_HEIGHT_PIXELS=600 +DISPLAY_BPP=16 +DISPLAY_DPI=150 +DISPLAY_SUBPIXEL_ORDER=vrgb diff --git a/poky/meta/recipes-bsp/formfactor/files/qemux86-64/machconfig b/poky/meta/recipes-bsp/formfactor/files/qemux86-64/machconfig new file mode 100755 index 000000000..56a2ae2e3 --- /dev/null +++ b/poky/meta/recipes-bsp/formfactor/files/qemux86-64/machconfig @@ -0,0 +1,10 @@ +HAVE_TOUCHSCREEN=1 +HAVE_KEYBOARD=1 + +DISPLAY_CAN_ROTATE=0 +DISPLAY_ORIENTATION=0 +#DISPLAY_WIDTH_PIXELS=640 +#DISPLAY_HEIGHT_PIXELS=480 +#DISPLAY_BPP=16 +DISPLAY_DPI=150 +DISPLAY_SUBPIXEL_ORDER=vrgb diff --git a/poky/meta/recipes-bsp/formfactor/files/qemux86/machconfig b/poky/meta/recipes-bsp/formfactor/files/qemux86/machconfig new file mode 100755 index 000000000..56a2ae2e3 --- /dev/null +++ b/poky/meta/recipes-bsp/formfactor/files/qemux86/machconfig @@ -0,0 +1,10 @@ +HAVE_TOUCHSCREEN=1 +HAVE_KEYBOARD=1 + +DISPLAY_CAN_ROTATE=0 +DISPLAY_ORIENTATION=0 +#DISPLAY_WIDTH_PIXELS=640 +#DISPLAY_HEIGHT_PIXELS=480 +#DISPLAY_BPP=16 +DISPLAY_DPI=150 +DISPLAY_SUBPIXEL_ORDER=vrgb -- cgit v1.2.3