From: Rodolfo Giometti <giometti@linux.it>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] [PATCH] LOGO: Allow each board to define its own logo.
Date: Sun, 27 May 2007 16:58:33 +0200 [thread overview]
Message-ID: <20070527145833.GS21180@enneenne.com> (raw)
In-Reply-To: <20070525142604.C486C352B1F@atlas.denx.de>
This allow developers to define per board logo file into boards' main
configuration file (board/*/config.mk) as follow:
# The logo bitmap
LOGO_BMP = board/<name>/<logo>.bmp
Signed-off-by: Rodolfo Giometti <giometti@linux.it>
---
tools/Makefile | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/tools/Makefile b/tools/Makefile
index 6177f90..ad2824d 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -40,7 +40,7 @@ endif
LOGO_H = $(OBJTREE)/include/bmp_logo.h
ifeq ($(LOGO_BMP),)
-LOGO_BMP= logos/denx.bmp
+LOGO_BMP= tools/logos/denx.bmp
endif
#-------------------------------------------------------------------------
@@ -203,8 +203,8 @@ $(obj)crc32.c:
@rm -f $(obj)crc32.c
ln -s $(src)../lib_generic/crc32.c $(obj)crc32.c
-$(LOGO_H): $(obj)bmp_logo $(LOGO_BMP)
- $(obj)./bmp_logo $(LOGO_BMP) >$@
+$(LOGO_H): $(obj)bmp_logo $(TOPDIR)/$(LOGO_BMP)
+ $(obj)./bmp_logo $(TOPDIR)/$(LOGO_BMP) >$@
#########################################################################
--
1.5.1.1
next prev parent reply other threads:[~2007-05-27 14:58 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-25 14:20 [U-Boot-Users] [PATCH] LOGO: All logos must be placed into the "logos" directory Rodolfo Giometti
2007-05-25 14:26 ` Wolfgang Denk
2007-05-25 14:52 ` Rodolfo Giometti
2007-05-25 15:43 ` Wolfgang Denk
2007-05-25 16:02 ` Rodolfo Giometti
2007-05-27 14:58 ` Rodolfo Giometti [this message]
2007-05-27 20:58 ` [U-Boot-Users] [PATCH] LOGO: Allow each board to define its own logo Wolfgang Denk
2007-05-28 7:52 ` Rodolfo Giometti
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=20070527145833.GS21180@enneenne.com \
--to=giometti@linux.it \
--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.