From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bo Shen Date: Mon, 3 Mar 2014 17:09:03 +0800 Subject: [U-Boot] logo part Makefile doesn't work as expected Message-ID: <531446AF.8010607@atmel.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Masahiro Yamada, Today, I tested with u-boot master branch, I found the u-boot logo is not set as we expected. The following line's do not executed as expected, as the BOARD and VENDOR parameter value is not passed to . So, if not define LOGO_BMP, it always take the first value. I try some method to fix it, it works, however I am not familiar with whole build system, so can you help to fix it? Thanks. --->8--- # Generic logo ifeq ($(LOGO_BMP),) LOGO_BMP= $(srctree)/$(src)/logos/denx.bmp # Use board logo and fallback to vendor ifneq ($(wildcard logos/$(BOARD).bmp),) LOGO_BMP= $(srctree)/$(src)/logos/$(BOARD).bmp else ifneq ($(wildcard logos/$(VENDOR).bmp),) LOGO_BMP= $(srctree)/$(src)/logos/$(VENDOR).bmp endif endif ---8<--- Best Regards, Bo Shen