From 7c1ef205d466ea08c6419000d65e699030ffa3fa Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Thu, 13 Sep 2012 10:56:02 -0300 Subject: u-boot: Fix mx28evk bootargs Without this patch console=${console_mainline} is never evaluated and we get console=${console_mainline} in the bootargs which leads to no kernel boot log on the serial console. Signed-off-by: Otavio Salvador Acked-by: Rogerio Pimentel --- recipes-bsp/u-boot/u-boot_2012.04.01.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-bsp/u-boot/u-boot_2012.04.01.bb b/recipes-bsp/u-boot/u-boot_2012.04.01.bb index 82c79bb..b18920b 100644 --- a/recipes-bsp/u-boot/u-boot_2012.04.01.bb +++ b/recipes-bsp/u-boot/u-boot_2012.04.01.bb @@ -6,10 +6,10 @@ COMPATIBLE_MACHINE = "(imx28evk|mx5|mx6)" DEPENDS_mxs += "elftosb-native" -SRCREV = "4e6e82429c127d6084b3a3cde5f2f2c4ea63440b" +SRCREV = "560b63a4fc0f293ab2bfde015781a8f48f2c24c4" PV = "v2012.04.01" -PR = "r4" +PR = "r5" SRC_URI = "git://github.com/Freescale/u-boot-imx.git" -- cgit v1.2.3-54-g00ecf From 9082ba0f6d61705f180585509a2ae6bde1a1b984 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Thu, 13 Sep 2012 09:21:00 -0300 Subject: imx-base.inc: Remove useless SoC override for U-Boot settings The U-Boot settings are the same for mx5 and mx6 SoCs so we don't need a override for it. Signed-off-by: Otavio Salvador Acked-by: Rogerio Pimentel --- conf/machine/include/imx-base.inc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc index c8e31ec..1b26f01 100644 --- a/conf/machine/include/imx-base.inc +++ b/conf/machine/include/imx-base.inc @@ -5,10 +5,8 @@ include conf/distro/include/fsl-default-versions.inc include conf/distro/include/fsl-default-providers.inc # Set specific make target and binary suffix -UBOOT_MAKE_TARGET_mx5 = "u-boot.imx" -UBOOT_SUFFIX_mx5 = "imx" -UBOOT_MAKE_TARGET_mx6 = "u-boot.imx" -UBOOT_SUFFIX_mx6 = "imx" +UBOOT_MAKE_TARGET = "u-boot.imx" +UBOOT_SUFFIX = "imx" XSERVER = "xserver-xorg-lite \ xf86-input-evdev \ -- cgit v1.2.3-54-g00ecf From 376c023d3aa79f1a526159187009468e2e007aff Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Thu, 13 Sep 2012 11:57:50 -0300 Subject: fsl-default-providers.inc: Change virtual/xserver to xserver-xorg Next Yocto release will drop xserver-xorg-lite as building xserver-xorg and not installing the DRI and GLX modules (and so not Mesa) results in an increase of 16kb only. Signed-off-by: Otavio Salvador Acked-by: Rogerio Pimentel --- conf/distro/include/fsl-default-providers.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/distro/include/fsl-default-providers.inc b/conf/distro/include/fsl-default-providers.inc index 3a9427f..ef0805c 100644 --- a/conf/distro/include/fsl-default-providers.inc +++ b/conf/distro/include/fsl-default-providers.inc @@ -1,6 +1,6 @@ # Freescale BSP default providers -PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg-lite" +PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg" PREFERRED_PROVIDER_virtual/kernel ?= "linux-imx" PREFERRED_PROVIDER_linux-libc-headers ?= "linux-libc-headers-imx" PREFERRED_PROVIDER_u-boot ?= "u-boot" -- cgit v1.2.3-54-g00ecf From e670cf5ef7d4ef2e749aae98836423872455d6fe Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Thu, 13 Sep 2012 09:41:38 -0300 Subject: imx-base.inc: Use xserver-xorg instead of xserver-xorg-lite Next Yocto release will drop xserver-xorg-lite as building xserver-xorg and not installing the DRI and GLX modules (and so not Mesa) results in an increase of 16kb only. Signed-off-by: Otavio Salvador Acked-by: Rogerio Pimentel --- conf/machine/include/imx-base.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc index 1b26f01..cecbe86 100644 --- a/conf/machine/include/imx-base.inc +++ b/conf/machine/include/imx-base.inc @@ -8,7 +8,7 @@ include conf/distro/include/fsl-default-providers.inc UBOOT_MAKE_TARGET = "u-boot.imx" UBOOT_SUFFIX = "imx" -XSERVER = "xserver-xorg-lite \ +XSERVER = "xserver-xorg \ xf86-input-evdev \ xf86-video-imxfb" -- cgit v1.2.3-54-g00ecf From 749e8333698cae764ccc13a969f24c0942a868c9 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Thu, 13 Sep 2012 12:00:54 -0300 Subject: mxs-base.inc: Use xserver-xorg instead of xserver-xorg-lite Next Yocto release will drop xserver-xorg-lite as building xserver-xorg and not installing the DRI and GLX modules (and so not Mesa) results in an increase of 16kb only. Signed-off-by: Otavio Salvador Acked-by: Rogerio Pimentel --- conf/machine/include/mxs-base.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/machine/include/mxs-base.inc b/conf/machine/include/mxs-base.inc index 1ca84d9..486e914 100644 --- a/conf/machine/include/mxs-base.inc +++ b/conf/machine/include/mxs-base.inc @@ -9,7 +9,7 @@ include conf/machine/include/tune-arm926ejs.inc SOC_FAMILY = "mxs" -XSERVER = "xserver-xorg-lite \ +XSERVER = "xserver-xorg \ xf86-input-evdev \ xf86-video-fbdev" -- cgit v1.2.3-54-g00ecf