All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v1 0/2]
@ 2017-04-18  8:17 Eric Gao
  0 siblings, 0 replies; 4+ messages in thread
From: Eric Gao @ 2017-04-18  8:17 UTC (permalink / raw)
  To: u-boot

Add bmp logo display support for evb-rk3399


Changes in v1:
-Add bmp logo display support.
-Enable logo display for evb-rk3399

Eric Gao (2):
  board: rockchip: common: Add bmp logo support
  rockchip: include: Enable logo display for evb-rk3399

 board/rockchip/common/Makefile   |    9 +
 board/rockchip/common/common.c   |   20 +
 board/rockchip/common/misc.c     |   85 +
 include/configs/evb_rk3399.h     |    7 +
 include/rockchip/misc.h          |    9 +
 include/rockchip/rockchip_logo.h | 9613 ++++++++++++++++++++++++++++++++++++++
 tools/logos/rockchip_24bit.bmp   |  Bin 0 -> 115322 bytes
 7 files changed, 9743 insertions(+)
 create mode 100644 board/rockchip/common/Makefile
 create mode 100644 board/rockchip/common/common.c
 create mode 100644 board/rockchip/common/misc.c
 create mode 100644 include/rockchip/misc.h
 create mode 100644 include/rockchip/rockchip_logo.h
 create mode 100644 tools/logos/rockchip_24bit.bmp

-- 
1.9.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH v1 0/2]
@ 2018-02-09 11:09 Jean-Jacques Hiblot
  0 siblings, 0 replies; 4+ messages in thread
From: Jean-Jacques Hiblot @ 2018-02-09 11:09 UTC (permalink / raw)
  To: u-boot

This series is about fixing 2 issues:
- SD breakage with QEmu / vexpress-a15
- incorrect version identification for MMC above version 4.41 (included)

Thanks to Jonathan Gray and eil Eilmsteiner Heribert for reporting them.



Jean-Jacques Hiblot (2):
  mmc: Fix bug in sd_set_card_speed()
  mmc: fix bug in mmc_startup_v4()

 drivers/mmc/mmc.c | 3 ++-
 include/mmc.h     | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH v1 0/2]
  2017-04-18  8:21 Eric Gao
@ 2017-04-18 14:17 ` Eddie Cai
  0 siblings, 0 replies; 4+ messages in thread
From: Eddie Cai @ 2017-04-18 14:17 UTC (permalink / raw)
  To: u-boot

Hi Eric
Please don't forget the title of cover letter next time.

2017-04-18 16:21 GMT+08:00 Eric Gao <eric.gao@rock-chips.com>:

> Add bmp logo display support for evb-rk3399
>
Can you  elaborate the commit message?

>
>
> Changes in v1:
> -Add bmp logo display support.
> -Enable logo display for evb-rk3399
>
> Eric Gao (2):
>   board: rockchip: common: Add bmp logo support
>   rockchip: include: Enable logo display for evb-rk3399
>
>  board/rockchip/common/Makefile   |    9 +
>  board/rockchip/common/common.c   |   20 +
>  board/rockchip/common/misc.c     |   85 +
>  include/configs/evb_rk3399.h     |    7 +
>  include/rockchip/misc.h          |    9 +
>  include/rockchip/rockchip_logo.h | 9613 ++++++++++++++++++++++++++++++
> ++++++++
>  tools/logos/rockchip_24bit.bmp   |  Bin 0 -> 115322 bytes
>  7 files changed, 9743 insertions(+)
>  create mode 100644 board/rockchip/common/Makefile
>  create mode 100644 board/rockchip/common/common.c
>  create mode 100644 board/rockchip/common/misc.c
>  create mode 100644 include/rockchip/misc.h
>  create mode 100644 include/rockchip/rockchip_logo.h
>  create mode 100644 tools/logos/rockchip_24bit.bmp
>
> --
> 1.9.1
>
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> https://lists.denx.de/listinfo/u-boot
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH v1 0/2]
@ 2017-04-18  8:21 Eric Gao
  2017-04-18 14:17 ` Eddie Cai
  0 siblings, 1 reply; 4+ messages in thread
From: Eric Gao @ 2017-04-18  8:21 UTC (permalink / raw)
  To: u-boot

Add bmp logo display support for evb-rk3399


Changes in v1:
-Add bmp logo display support.
-Enable logo display for evb-rk3399

Eric Gao (2):
  board: rockchip: common: Add bmp logo support
  rockchip: include: Enable logo display for evb-rk3399

 board/rockchip/common/Makefile   |    9 +
 board/rockchip/common/common.c   |   20 +
 board/rockchip/common/misc.c     |   85 +
 include/configs/evb_rk3399.h     |    7 +
 include/rockchip/misc.h          |    9 +
 include/rockchip/rockchip_logo.h | 9613 ++++++++++++++++++++++++++++++++++++++
 tools/logos/rockchip_24bit.bmp   |  Bin 0 -> 115322 bytes
 7 files changed, 9743 insertions(+)
 create mode 100644 board/rockchip/common/Makefile
 create mode 100644 board/rockchip/common/common.c
 create mode 100644 board/rockchip/common/misc.c
 create mode 100644 include/rockchip/misc.h
 create mode 100644 include/rockchip/rockchip_logo.h
 create mode 100644 tools/logos/rockchip_24bit.bmp

-- 
1.9.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-02-09 11:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-18  8:17 [U-Boot] [PATCH v1 0/2] Eric Gao
2017-04-18  8:21 Eric Gao
2017-04-18 14:17 ` Eddie Cai
2018-02-09 11:09 Jean-Jacques Hiblot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.