From: Bo Shen <voice.shen@atmel.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] logo part Makefile doesn't work as expected
Date: Mon, 3 Mar 2014 17:09:03 +0800 [thread overview]
Message-ID: <531446AF.8010607@atmel.com> (raw)
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
<tools/Makefile>. 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
next reply other threads:[~2014-03-03 9:09 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-03 9:09 Bo Shen [this message]
2014-03-03 9:47 ` [U-Boot] logo part Makefile doesn't work as expected Masahiro Yamada
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=531446AF.8010607@atmel.com \
--to=voice.shen@atmel.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.