Revision tags: v00.04.15, v00.04.14, v00.04.13, v00.04.12, v00.04.11, v00.04.10, v00.04.09, v00.04.08, v00.04.07, v00.04.06, v00.04.05, v00.04.04, v00.04.03, v00.04.02, v00.04.01, v00.04.00, v2021.04, v00.03.03, v2021.01, v2020.10, v2020.07, v00.02.13, v2020.04, v2020.01, v2019.10, v00.02.05, v00.02.04, v00.02.03, v00.02.02, v00.02.01, v2019.07, v00.02.00, v2019.04, v2018.07, v2018.03, v2018.01, v2017.11 |
|
#
06d326d3 |
| 05-Oct-2017 |
Jon Smith <jtsmith@pdiarm.com> |
tools: bmp_logo: correctly interpret BMP files with larger headers
All BMP files were being treated as though they had a 40 byte header. There are several BMP header formats consisting of additional
tools: bmp_logo: correctly interpret BMP files with larger headers
All BMP files were being treated as though they had a 40 byte header. There are several BMP header formats consisting of additional data. This was causing some of the header to be read as color information, skewing the color palette.
Signed-off-by: Jon Smith <jtsmith@pdiarm.com>
show more ...
|
Revision tags: v2016.07, openbmc-20160624-1, v2016.01-rc1, v2015.10, v2015.10-rc5, v2015.10-rc4, v2015.10-rc3, v2015.10-rc2, v2015.10-rc1, v2015.07, v2015.07-rc3, v2015.07-rc2, v2015.07-rc1, v2015.04, v2015.04-rc5, v2015.04-rc4, v2015.04-rc3, v2015.04-rc2, v2015.04-rc1, v2015.01, v2015.01-rc4, v2015.01-rc3, v2015.01-rc2, v2015.01-rc1, v2014.10, v2014.10-rc3, v2014.10-rc2, v2014.10-rc1, v2014.07, v2014.07-rc4, v2014.07-rc3, v2014.07-rc2, v2014.07-rc1, v2014.04, v2014.04-rc3, v2014.04-rc2, v2014.04-rc1, v2014.01, v2014.01-rc3, v2014.01-rc2, v2014.01-rc1, v2013.10, v2013.10-rc4, v2013.10-rc3, v2013.10-rc2, v2013.10-rc1 |
|
#
c15438ea |
| 12-Aug-2013 |
Tom Rini <trini@ti.com> |
Merge branch 'master' of git://www.denx.de/git/u-boot-video
|
#
3d192be9 |
| 03-Aug-2013 |
Heiko Schocher <hs@denx.de> |
tools, bmp_logo: fix index from uint16_t to int to allow bigger logos
when generating the bmp_logo_bitmap, the index is casted as an uint16_t. So bigger logos as 65535 bytes are converted wrong Fix
tools, bmp_logo: fix index from uint16_t to int to allow bigger logos
when generating the bmp_logo_bitmap, the index is casted as an uint16_t. So bigger logos as 65535 bytes are converted wrong Fix this.
Signed-off-by: Heiko Schocher <hs@denx.de> Cc: Anatolij Gustschin <agust@denx.de>
show more ...
|
Revision tags: v2013.07, v2013.07-rc3, v2013.07-rc2, v2013.07-rc1, v2013.04, v2013.04-rc3, v2013.04-rc2, v2013.04-rc1, v2013.01.01, v2013.01, v2013.01-rc3, v2013.01-rc2, v2013.01-rc1, v2012.10, v2012.10-rc3, v2012.10-rc2, v2012.10-rc1, v2012.07, v2012.07-rc3, v2012.07-rc2, v2012.07-rc1, v2012.04.01, v2012.04, v2012.04-rc3, v2012.04-rc2, v2012.04-rc1, v2011.12, v2011.12-rc3, v2011.12-rc2, v2011.12-rc1 |
|
#
bb82de88 |
| 16-Nov-2011 |
Wolfgang Denk <wd@denx.de> |
Merge branch 'master' of /home/wd/git/u-boot/custodians
* 'master' of /home/wd/git/u-boot/custodians: api: export LCD device to external apps font: split font data from video_font.h tools: log
Merge branch 'master' of /home/wd/git/u-boot/custodians
* 'master' of /home/wd/git/u-boot/custodians: api: export LCD device to external apps font: split font data from video_font.h tools: logo: split bmp arrays from bmp_logo.h lcd: add clear and draw bitmap declaration VIDEO: mx3fb: GCC4.6 fix build warnings Powerpc/DIU: Fixed the 800x600 and 1024x768 resolution bug
show more ...
|
#
9dfa8da7 |
| 16-Nov-2011 |
Wolfgang Denk <wd@denx.de> |
Merge branch 'master' of git://git.denx.de/u-boot-video
* 'master' of git://git.denx.de/u-boot-video: api: export LCD device to external apps font: split font data from video_font.h tools: log
Merge branch 'master' of git://git.denx.de/u-boot-video
* 'master' of git://git.denx.de/u-boot-video: api: export LCD device to external apps font: split font data from video_font.h tools: logo: split bmp arrays from bmp_logo.h lcd: add clear and draw bitmap declaration VIDEO: mx3fb: GCC4.6 fix build warnings Powerpc/DIU: Fixed the 800x600 and 1024x768 resolution bug
show more ...
|
#
c270730f |
| 20-Oct-2011 |
Che-Liang Chiou <clchiou@chromium.org> |
tools: logo: split bmp arrays from bmp_logo.h
The generated header bmp_logo.h is useful even outside common/lcd.c for the logo dimension. However, the problem is, the generated bmp_logo.h cannot be
tools: logo: split bmp arrays from bmp_logo.h
The generated header bmp_logo.h is useful even outside common/lcd.c for the logo dimension. However, the problem is, the generated bmp_logo.h cannot be included multiple times because bmp_logo_palette[] and bmp_logo_bitmap[] are defined in the bmp_logo.h.
This patch fixes this by defining these arrays in another header bmp_logo_data.h and in bmp_logo.h only declaring these arrays.
Signed-off-by: Che-Liang Chiou <clchiou@chromium.org> Acked-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Anatolij Gustschin <agust@denx.de>
show more ...
|
Revision tags: v2011.09, v2011.09-rc2, v2011.09-rc1, v2011.06, v2011.06-rc3, v2011.06-rc2, v2011.06-rc1, v2011.03, v2011.03-rc2, v2011.03-rc1, v2010.12, v2010.12-rc3, v2010.12-rc2, v2010.12-rc1, v2010.09, v2010.09-rc2, v2010.09-rc1, v2010.06, v2010.06-rc3, v2010.06-rc2, v2010.06-rc1, v2010.03, v2010.03-rc3, v2010.03-rc2, v2010.03-rc1, v2009.11.1, v2009.11, v2009.11-rc2, v2009.11-rc1, v2009.08, v2009.08-rc3, v2009.08-rc2, v2009.08-rc1 |
|
#
37566090 |
| 02-Jul-2009 |
Mike Frysinger <vapier@gentoo.org> |
compiler.h: unify system ifdef cruft here
Shove a lot of the HOSTCC and related #ifdef checking crap into the new compiler.h header so that we can keep all other headers nice and clean.
Also introd
compiler.h: unify system ifdef cruft here
Shove a lot of the HOSTCC and related #ifdef checking crap into the new compiler.h header so that we can keep all other headers nice and clean.
Also introduce custom uswap functions so we don't have to rely on the non standard implementations that a host may (or may not in the case of OS X) provide. This allows mkimage to finally build cleanly on an OS X system.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
show more ...
|
Revision tags: v2009.06, v2009.06-rc3, v2009.06-rc2, v2009.06-rc1 |
|
#
65351a87 |
| 24-Apr-2009 |
Peter Tyser <ptyser@xes-inc.com> |
bmp_logo: Check return value of fread()
Add basic error handling to fread() function calls. This prevents compililation warnings such as:
bmp_logo.c: In function ‘main’: bmp_logo.c:71: warning: ig
bmp_logo: Check return value of fread()
Add basic error handling to fread() function calls. This prevents compililation warnings such as:
bmp_logo.c: In function ‘main’: bmp_logo.c:71: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result ...
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
show more ...
|
Revision tags: v2009.03, v2009.03-rc2, v2009.03-rc1, v2009.01, v2009.01-rc3, v2009.01-rc2, v2009.01-rc1, v2008.10, v2008.10-rc3, v2008.10-rc2, v2008.10-rc1, v1.3.4, v1.3.4-rc2, v1.3.4-rc1, v1.3.3, v1.3.3-rc3, v1.3.3-rc2, v1.3.3-rc1, v1.3.2, v1.3.2-rc3, v1.3.2-rc2, v1.3.2-rc1, v1.3.1, v1.3.1-rc1, v1.3.0, v1.3.0-rc4, v1.3.0-rc3, v1.3.0-rc2, v1.3.0-rc1, U-Boot-1_2_0, U-Boot-1_1_6, U-Boot-1_1_5, LABEL_2006_06_30_2020, LABEL_2006_05_19_1133, LABEL_2006_05_10_1800, LABEL_2006_04_18_1106, LABEL_2006_03_12_0025, U-Boot-1_1_4, DENX-2005-10-29-2350 |
|
#
fd4bb67b |
| 25-Sep-2005 |
Wolfgang Denk <wd@pollux.(none)> |
Fix tools/bmp_logo.c using incorrect offset to pixel data Patch by Andrew Dyer, 31 Jan 2005
|
Revision tags: LABEL_2005_09_15_2320, U-Boot-1_1_3, LABEL_2005_08_12_0050, LABEL_2005_07_04_0202, LABEL_2005_05_13_0050, LABEL_2005_05_09_1245, LABEL_2005_05_05_1920, LABEL_2005_04_14_0115, LABEL_2005_04_05_2345, LABEL_2005_04_05_1830, LABEL_2005_03_15_0125, LABEL_2005_03_06_0225, LABEL_2005_02_28_0050, LABEL_2005_02_08_1615, LABEL_2005_02_07_2045, LABEL_2005_01_31_2245, U-Boot-1_1_2, LABEL_2004_12_20_1220, LABEL_2004_12_19_2240, LABEL_2004_12_19_1100, LABEL_2004_12_18_2335, LABEL_2004_11_25_0035, LABEL_2004_11_17_2222, LABEL_2004_10_20_0020, LABEL_2004_10_12_0110 |
|
#
8655b6f8 |
| 09-Oct-2004 |
wdenk <wdenk> |
* Clean up tools/bmp_logo.c to not add trailing white space
* Patch by Hinko Kocevar, 21 Aug 2004: - Group common framebuffer functions in common/lcd.c - Group common framebuffer macros and #def
* Clean up tools/bmp_logo.c to not add trailing white space
* Patch by Hinko Kocevar, 21 Aug 2004: - Group common framebuffer functions in common/lcd.c - Group common framebuffer macros and #defines in include/lcd.h - Provide calc_fbsize() for video ATAG
show more ...
|
Revision tags: LABEL_2004_09_09_0000, LABEL_2004_08_29_0045, LABEL_2004_08_28_2355, LABEL_2004_07_01_1200, LABEL_2004_06_24_1800, LABEL_2004_05_29_1850, LABEL_2004_05_19_2335, U-Boot-1_1_1, LABEL_2004_04_23_2240, LABEL_2004_04_18_2135, U-Boot-1_1_0, LABEL_2004_03_25_1630, LABEL_2004_03_16_2330, LABEL_2004_03_14_2340, LABEL_2004_03_12_0130, LABEL_2004_02_24_0305, LABEL_2004_02_20_2310, U-Boot-1_0_2, LABEL_2004_02_11_2240, LABEL_2004_01_21_2110, LABEL_2004_01_29_1030, U-Boot-1_0_1, LABEL_2003_12_06_1550, LABEL_2003_11_26_MKR, U-Boot-1_0_0 |
|
#
b13fb01a |
| 30-Oct-2003 |
wdenk <wdenk> |
* Fix parameter passing to standalone images with bootm command
* Patch by Kyle Harris, 30 Oct 2003: Fix build errors for ixdp425 board
* Patch by David M. Horn, 29 Oct 2003: Fixes to build und
* Fix parameter passing to standalone images with bootm command
* Patch by Kyle Harris, 30 Oct 2003: Fix build errors for ixdp425 board
* Patch by David M. Horn, 29 Oct 2003: Fixes to build under CYGWIN
* Get IceCube MGT5100 working (again)
show more ...
|
Revision tags: LABEL_2003_10_20_0025, LABEL_2003_10_16_0200, LABEL_2003_10_14_2140, LABEL_2003_10_10_1200, LABEL_2003_10_09_2320, LABEL_2003_10_09_1515, LABEL_2003_10_06_2355, LABEL_2003_10_01_1830, LABEL_2003_09_18_2045, LABEL_2003_09_16_2310, LABEL_2003_09_13_2100, LABEL_2003_09_12_1745, LABEL_2003_09_12_0110, U-Boot-0_4_8, LABEL_2003_09_06_0055, U-Boot-0_4_7, U-Boot-0_4_6, U-Boot-0_4_5, U-Boot-0_4_4, U-Boot-0_4_3, U-Boot-0_4_2, U-Boot-0_4_1, LABEL_2003_06_29_0145, LABEL_2003_06_28_1800-stable, LABEL_2003_06_28_0130-stable, LABEL_2003_06_28_0050-stable, LABEL_2003_06_27_2340 |
|
#
8bde7f77 |
| 27-Jun-2003 |
wdenk <wdenk> |
* Code cleanup: - remove trailing white space, trailing empty lines, C++ comments, etc. - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)
* Patches by Kenneth Johansson, 25 Jun 2003: -
* Code cleanup: - remove trailing white space, trailing empty lines, C++ comments, etc. - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)
* Patches by Kenneth Johansson, 25 Jun 2003: - major rework of command structure (work done mostly by Michal Cendrowski and Joakim Kristiansen)
show more ...
|
Revision tags: U-Boot-0_4_0, LABEL_2003_06_26_2220, LABEL_2003_06_22_1530, LABEL_2003_06_16_0055, LABEL_2003_06_05_2140, LABEL_2003_06_04_0200, LABEL_2003_05_31_2115, LABEL_2003_05_30_1450, LABEL_2003_05_23_1450, LABEL_2003_05_23_0055, LABEL_2003_05_22_2230, LABEL_2003_05_20_2250, LABEL_2003_05_20_1630, LABEL_2003_05_12_2355, LABEL_2003_05_03_1700, U-Boot-0_3_1, LABEL_2003_04_15_1900, U-Boot-0_3_0, LABEL_2003_04_05_0300, LABEL_2003_03_27_1900, LABEL_2003_03_26_1300, LABEL_2003_03_25_1830, LABEL_2003_03_14_2150, LABEL_2003_03_06_2255, LABEL_2003_03_06_1440, LABEL_2003_03_06_0200, LABEL_2003_03_06_0050, LABEL_2003_02_28_0150, LABEL_2003_01_14_0055, LABEL_2003_01_11_1050, LABEL_2002_12_28_1700, LABEL_2002_12_21_0040, U-Boot-0_2_0, LABEL_2002_12_07_0120, LABEL_2002_12_03_2230, LABEL_2002_11_22_0015, LABEL_2002_11_18_0115, LABEL_2002_11_11_2211, LABEL_2002_11_10_2310, LABEL_2002_11_05_1735, LABEL_2002_11_05_0120, U_BOOT_0_1_0 |
|
#
0bbe2005 |
| 14-Mar-2002 |
wdenk <wdenk> |
Initial revision
|