summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabio Estevam <fabio.estevam@freescale.com>2012-03-29 13:37:34 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2012-03-30 15:24:35 +0000
commit077c1794f2fffaa9d34a03ba4b6810d3cb76c186 (patch)
treeedb3d3d31c97a9adcf59ea09e9fd676e8126c78f
parentfdde5b651a97befed4fc6bf45417c2bb1dab6d45 (diff)
downloadmeta-fsl-arm-077c1794f2fffaa9d34a03ba4b6810d3cb76c186.tar.gz
recipes-bsp: u-boot: Fix the console port for mx6qsabrelite
On mx6qsabrelite the console is ttymxc1. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
-rw-r--r--recipes-bsp/u-boot/mx6qsabrelite-fix-console.patch26
-rw-r--r--recipes-bsp/u-boot/u-boot_git.bb6
2 files changed, 30 insertions, 2 deletions
diff --git a/recipes-bsp/u-boot/mx6qsabrelite-fix-console.patch b/recipes-bsp/u-boot/mx6qsabrelite-fix-console.patch
new file mode 100644
index 0000000..4bbb490
--- /dev/null
+++ b/recipes-bsp/u-boot/mx6qsabrelite-fix-console.patch
@@ -0,0 +1,26 @@
1Date: Wed, 28 Mar 2012 16:42:27 -0300
2Subject: [PATCH] mx6qsabrelite: Fix the serial console port
3
4On mx6qsabrelite the console is ttymxc1.
5
6Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
7---
8 include/configs/mx6qsabrelite.h | 2 +-
9 1 files changed, 1 insertions(+), 1 deletions(-)
10
11diff --git a/include/configs/mx6qsabrelite.h b/include/configs/mx6qsabrelite.h
12index 8bc8a83..2643817 100644
13--- a/include/configs/mx6qsabrelite.h
14+++ b/include/configs/mx6qsabrelite.h
15@@ -116,7 +116,7 @@
16 #define CONFIG_EXTRA_ENV_SETTINGS \
17 "script=boot.scr\0" \
18 "uimage=uImage\0" \
19- "console=ttymxc3\0" \
20+ "console=ttymxc1\0" \
21 "fdt_high=0xffffffff\0" \
22 "initrd_high=0xffffffff\0" \
23 "mmcdev=0\0" \
24--
251.7.1
26
diff --git a/recipes-bsp/u-boot/u-boot_git.bb b/recipes-bsp/u-boot/u-boot_git.bb
index 2d94670..112f6fa 100644
--- a/recipes-bsp/u-boot/u-boot_git.bb
+++ b/recipes-bsp/u-boot/u-boot_git.bb
@@ -6,7 +6,7 @@ COMPATIBLE_MACHINE = "(imx53qsb|imx53ard|imx51evk|imx28evk|imx6qsabrelite)"
6 6
7DEPENDS_mxs += "elftosb-native" 7DEPENDS_mxs += "elftosb-native"
8 8
9PR = "r2" 9PR = "r3"
10 10
11SRCREV = "6751b05f855bbe56005d5b88d4eb58bcd52170d2" 11SRCREV = "6751b05f855bbe56005d5b88d4eb58bcd52170d2"
12 12
@@ -15,7 +15,9 @@ PV = "v2011.12+git"
15SRC_URI = "git://git.denx.de/u-boot.git;branch=master;protocol=git \ 15SRC_URI = "git://git.denx.de/u-boot.git;branch=master;protocol=git \
16 file://mx53-fix-uart-clock.patch \ 16 file://mx53-fix-uart-clock.patch \
17 file://mx6qsabrelite_add_CONFIG_REVISION_TAG.patch \ 17 file://mx6qsabrelite_add_CONFIG_REVISION_TAG.patch \
18 file://mx6qsabrelite_add_MACH_TYPE_MX6Q_SABRELITE.patch " 18 file://mx6qsabrelite_add_MACH_TYPE_MX6Q_SABRELITE.patch \
19 file://mx6qsabrelite-fix-console.patch \
20 "
19 21
20S = "${WORKDIR}/git" 22S = "${WORKDIR}/git"
21 23