From: David Gibson <david@gibson.dropbear.id.au>
To: Scott Wood <scottwood@freescale.com>
Cc: linuxppc-dev@ozlabs.org
Subject: Re: [PATCH 5/6] bootwrapper: Add a cuImage target.
Date: Fri, 23 Mar 2007 16:40:48 +1100 [thread overview]
Message-ID: <20070323054048.GA27940@localhost.localdomain> (raw)
In-Reply-To: <20070322194928.GE31965@ld0162-tx32.am.freescale.net>
On Thu, Mar 22, 2007 at 02:49:28PM -0500, Scott Wood wrote:
> The cuImage target calls the wrapper with a cuboot platform chosen
> based on the kernel config, as opposed to the uboot platform.
>
> Signed-off-by: Scott Wood <scottwood@freescale.com>
> ---
> arch/powerpc/Makefile | 2 +-
> arch/powerpc/boot/.gitignore | 3 +++
> arch/powerpc/boot/Makefile | 13 +++++++++++--
> 3 files changed, 15 insertions(+), 3 deletions(-)
>
> diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile
> index a00fe72..e6c3add 100644
> --- a/arch/powerpc/Makefile
> +++ b/arch/powerpc/Makefile
> @@ -148,7 +148,7 @@ all: $(KBUILD_IMAGE)
>
> CPPFLAGS_vmlinux.lds := -Upowerpc
>
> -BOOT_TARGETS = zImage zImage.initrd uImage
> +BOOT_TARGETS = zImage zImage.initrd uImage cuImage
>
> PHONY += $(BOOT_TARGETS)
>
> diff --git a/arch/powerpc/boot/.gitignore b/arch/powerpc/boot/.gitignore
> index 0734b2f..eec7af7 100644
> --- a/arch/powerpc/boot/.gitignore
> +++ b/arch/powerpc/boot/.gitignore
> @@ -18,6 +18,9 @@ kernel-vmlinux.strip.c
> kernel-vmlinux.strip.gz
> mktree
> uImage
> +cuImage
> +cuImage.bin.gz
> +cuImage.elf
> zImage
> zImage.chrp
> zImage.coff
> diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile
> index 43179b4..93c25f8 100644
> --- a/arch/powerpc/boot/Makefile
> +++ b/arch/powerpc/boot/Makefile
> @@ -43,7 +43,8 @@ $(addprefix $(obj)/,$(zlib) main.o): $(addprefix $(obj)/,$(zliblinuxheader)) \
> src-wlib := string.S crt0.S stdio.c main.c flatdevtree.c flatdevtree_misc.c \
> ns16550.c serial.c simple_alloc.c div64.S util.S \
> gunzip_util.c $(zlib) devtree.c
> -src-plat := of.c
> +cuboot-plats :=
> +src-plat := of.c $(cuboot-plats:%=cuboot-%.c)
Rather than this special cuboot-plats stuff, I suggest you just list
each cuboot platform in src-plat independently. We can also git rid
of the need for a CONFIG option specifying the dts (and thereby taking
us back to the one-config-per-board era) by using rules like:
$(obj)/uImage.83xx.%: vmlinux $(wrapperbits) $(srctree)/$(src)/dts/%.dts
$(call if_changed,wrap,cuboot-83xx,$(srctree)/$(src)/dts/$*)
And to get the right things built use something like:
image-$(CONFIG-83xx) += $(mpx83xx-boards:%=uImage.83xx.%)
Or optionally add a batch of bool config options for each board
variant.
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
next prev parent reply other threads:[~2007-03-23 5:40 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-22 19:46 [PATCH 0/6] bootwrapper/cuboot Scott Wood
2007-03-22 19:49 ` [PATCH 1/6] bootwrapper: Add dt_xlate_reg(), and use it to find serial registers Scott Wood
2007-03-22 19:49 ` [PATCH 2/6] bootwrapper: Add ppcboot.h Scott Wood
2007-03-22 19:49 ` [PATCH 3/6] bootwrapper: Add support for cuboot platforms Scott Wood
2007-03-23 5:25 ` David Gibson
2007-03-22 19:49 ` [PATCH 4/6] bootwrapper: Add CONFIG_DEVICE_TREE Scott Wood
2007-03-22 19:49 ` [PATCH 5/6] bootwrapper: Add a cuImage target Scott Wood
2007-03-23 5:40 ` David Gibson [this message]
2007-03-23 15:18 ` Scott Wood
2007-03-23 23:39 ` David Gibson
2007-03-22 19:49 ` [PATCH 6/6] bootwrapper: cuboot for 83xx Scott Wood
2007-03-23 5:54 ` David Gibson
2007-03-23 15:30 ` Scott Wood
2007-03-23 23:37 ` David Gibson
2007-03-26 15:53 ` Scott Wood
2007-04-04 2:06 ` Mark A. Greer
2007-04-04 6:38 ` David Gibson
2007-04-04 16:01 ` Mark A. Greer
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=20070323054048.GA27940@localhost.localdomain \
--to=david@gibson.dropbear.id.au \
--cc=linuxppc-dev@ozlabs.org \
--cc=scottwood@freescale.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).