summaryrefslogtreecommitdiffstats
path: root/recipes/u-boot/u-boot-beagleboard
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/u-boot/u-boot-beagleboard')
-rw-r--r--recipes/u-boot/u-boot-beagleboard/0001-beagle-change-default-kernel-args.patch77
1 files changed, 0 insertions, 77 deletions
diff --git a/recipes/u-boot/u-boot-beagleboard/0001-beagle-change-default-kernel-args.patch b/recipes/u-boot/u-boot-beagleboard/0001-beagle-change-default-kernel-args.patch
deleted file mode 100644
index 1dea7f5..0000000
--- a/recipes/u-boot/u-boot-beagleboard/0001-beagle-change-default-kernel-args.patch
+++ /dev/null
@@ -1,77 +0,0 @@
1From 9ac6875931f5f9d073ca31cd6e1fb7636afb76bc Mon Sep 17 00:00:00 2001
2From: Samuli Piippo <samuli.piippo@digia.com>
3Date: Thu, 23 May 2013 14:37:10 +0300
4Subject: [PATCH] beagle: change default kernel args
5
6- default resolution to 800x600
7- increase VRAM for fb0
8- disable console blank
9- disable console cursor blinking
10- use extrabootargs
11---
12 include/configs/omap3_beagle.h | 20 ++++++++++++++++----
13 1 file changed, 16 insertions(+), 4 deletions(-)
14
15diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h
16index 1cc46dc..945e15e 100644
17--- a/include/configs/omap3_beagle.h
18+++ b/include/configs/omap3_beagle.h
19@@ -224,7 +224,7 @@
20 "optargs=\0" \
21 "camera=none\0" \
22 "vram=12M\0" \
23- "dvimode=640x480MR-16@60\0" \
24+ "dvimode=800x600MR-16@60\0" \
25 "defaultdisplay=dvi\0" \
26 "mmcdev=0\0" \
27 "mmcroot=/dev/mmcblk0p2 ro\0" \
28@@ -240,20 +240,28 @@
29 "buddy2=${buddy2} "\
30 "camera=${camera} "\
31 "vram=${vram} " \
32+ "omapfb.vram=0:${vram} " \
33 "omapfb.mode=dvi:${dvimode} " \
34 "omapdss.def_disp=${defaultdisplay} " \
35 "root=${mmcroot} " \
36- "rootfstype=${mmcrootfstype}\0" \
37+ "rootfstype=${mmcrootfstype} " \
38+ "consoleblank=0 " \
39+ "vt.global_cursor_default=0 " \
40+ "${extrabootargs}\0" \
41 "nandargs=setenv bootargs console=${console} " \
42 "${optargs} " \
43 "mpurate=${mpurate} " \
44 "buddy=${buddy} "\
45 "camera=${camera} "\
46 "vram=${vram} " \
47+ "omapfb.vram=0:${vram} " \
48 "omapfb.mode=dvi:${dvimode} " \
49 "omapdss.def_disp=${defaultdisplay} " \
50 "root=${nandroot} " \
51- "rootfstype=${nandrootfstype}\0" \
52+ "rootfstype=${nandrootfstype} " \
53+ "consoleblank=0 " \
54+ "vt.global_cursor_default=0 " \
55+ "${extrabootargs}\0" \
56 "bootenv=uEnv.txt\0" \
57 "loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
58 "importbootenv=echo Importing environment from mmc ...; " \
59@@ -263,10 +271,14 @@
60 "mpurate=${mpurate} " \
61 "buddy=${buddy} "\
62 "vram=${vram} " \
63+ "omapfb.vram=0:${vram} " \
64 "omapfb.mode=dvi:${dvimode} " \
65 "omapdss.def_disp=${defaultdisplay} " \
66 "root=${ramroot} " \
67- "rootfstype=${ramrootfstype}\0" \
68+ "rootfstype=${ramrootfstype} " \
69+ "consoleblank=0 " \
70+ "vt.global_cursor_default=0 " \
71+ "${extrabootargs}\0" \
72 "loadramdisk=fatload mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \
73 "loaduimagefat=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \
74 "loaduimage=ext2load mmc ${mmcdev}:2 ${loadaddr} /boot/uImage\0" \
75--
761.7.10.4
77