diff options
4 files changed, 59 insertions, 0 deletions
diff --git a/conf/distro/include/am335x-evm.conf b/conf/distro/include/am335x-evm.conf new file mode 100644 index 0000000..65d0ba4 --- /dev/null +++ b/conf/distro/include/am335x-evm.conf | |||
@@ -0,0 +1,18 @@ | |||
1 | IMAGE_FSTYPES = "tar.gz" | ||
2 | |||
3 | PREFERRED_PROVIDER_virtual/libgl = "libgles-omap3" | ||
4 | PREFERRED_VERSION_libgles-omap3 = "4.09.00.01" | ||
5 | PREFERRED_VERSION_omap3-sgx-modules = "4.09.00.01" | ||
6 | |||
7 | PREFERRED_PROVIDER_virtual/kernel = "linux-am335x-psp" | ||
8 | PREFERRED_PROVIDER_u-boot = "u-boot-am33x" | ||
9 | PREFERRED_VERSION_u-boot-am33x = "2013.01.01" | ||
10 | |||
11 | MACHINE_EXTRA_INSTALL = "\ | ||
12 | libgles-omap3 \ | ||
13 | libgles-omap3-rawdemos \ | ||
14 | " | ||
15 | |||
16 | MACHINE_EXTRA_INSTALL_SDK = "\ | ||
17 | libgles-omap3-dev \ | ||
18 | " | ||
diff --git a/recipes/linux/linux-am335x-psp_3.2.bbappend b/recipes/linux/linux-am335x-psp_3.2.bbappend new file mode 100644 index 0000000..1fe9d2a --- /dev/null +++ b/recipes/linux/linux-am335x-psp_3.2.bbappend | |||
@@ -0,0 +1,12 @@ | |||
1 | do_configure_append() { | ||
2 | # FunctionFS for adb | ||
3 | echo "CONFIG_USB_LIBCOMPOSITE=y" >> ${S}/.config | ||
4 | echo "CONFIG_USB_FUNCTIONFS=m" >> ${S}/.config | ||
5 | echo "CONFIG_USB_FUNCTIONFS_ETH=n" >> ${S}/.config | ||
6 | echo "CONFIG_USB_FUNCTIONFS_RNDIS=n" >> ${S}/.config | ||
7 | echo "CONFIG_USB_FUNCTIONFS_GENERIC=y" >> ${S}/.config | ||
8 | |||
9 | echo "CONFIG_DEVTMPFS=y" >> ${S}/.config | ||
10 | |||
11 | yes '' | oe_runmake oldconfig | ||
12 | } | ||
diff --git a/recipes/u-boot/u-boot-am33x/0001-am335x-evm-disable-console-cursor-blinking.patch b/recipes/u-boot/u-boot-am33x/0001-am335x-evm-disable-console-cursor-blinking.patch new file mode 100644 index 0000000..8c3ee2d --- /dev/null +++ b/recipes/u-boot/u-boot-am33x/0001-am335x-evm-disable-console-cursor-blinking.patch | |||
@@ -0,0 +1,25 @@ | |||
1 | From c7edbae8c34f73abb1974c0e8722f6f3c7b49f45 Mon Sep 17 00:00:00 2001 | ||
2 | From: Samuli Piippo <samuli.piippo@digia.com> | ||
3 | Date: Tue, 17 Sep 2013 08:16:51 +0300 | ||
4 | Subject: [PATCH] am335x-evm: disable console cursor blinking | ||
5 | |||
6 | --- | ||
7 | include/configs/am335x_evm.h | 2 + | ||
8 | 1 file changed, 2 insertion(++) | ||
9 | |||
10 | diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h | ||
11 | index 90e35ee..f28e842 100644 | ||
12 | --- a/include/configs/am335x_evm.h | ||
13 | +++ b/include/configs/am335x_evm.h | ||
14 | @@ -86,6 +86,8 @@ | ||
15 | "ip_method=none\0" \ | ||
16 | "bootargs_defaults=setenv bootargs " \ | ||
17 | "console=${console} " \ | ||
18 | + "consoleblank=0 " \ | ||
19 | + "vt.global_cursor_default=0 " \ | ||
20 | "${optargs}\0" \ | ||
21 | "mmcargs=run bootargs_defaults;" \ | ||
22 | "setenv bootargs ${bootargs} " \ | ||
23 | -- | ||
24 | 1.7.10.4 | ||
25 | |||
diff --git a/recipes/u-boot/u-boot-am33x_2013.01.01.bbappend b/recipes/u-boot/u-boot-am33x_2013.01.01.bbappend new file mode 100644 index 0000000..48d7885 --- /dev/null +++ b/recipes/u-boot/u-boot-am33x_2013.01.01.bbappend | |||
@@ -0,0 +1,4 @@ | |||
1 | FILESEXTRAPATHS_append := "${THISDIR}/${PN}:" | ||
2 | SRC_URI += " \ | ||
3 | file://0001-am335x-evm-disable-console-cursor-blinking.patch \ | ||
4 | " | ||