From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Wood Date: Tue, 03 Nov 2009 11:01:46 -0600 Subject: [U-Boot] [PATCH 1/1] cmd_nand: push CONFIG check to Makefile In-Reply-To: <1257266176-13199-1-git-send-email-vapier@gentoo.org> References: <1257266176-13199-1-git-send-email-vapier@gentoo.org> Message-ID: <4AF061FA.7070304@freescale.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Mike Frysinger wrote: > Signed-off-by: Mike Frysinger > --- > common/Makefile | 2 +- > common/cmd_nand.c | 4 ---- > 2 files changed, 1 insertions(+), 5 deletions(-) > > diff --git a/common/Makefile b/common/Makefile > index 3781738..b8c596c 100644 > --- a/common/Makefile > +++ b/common/Makefile > @@ -116,7 +116,7 @@ COBJS-$(CONFIG_CMD_MISC) += cmd_misc.o > COBJS-$(CONFIG_CMD_MMC) += cmd_mmc.o > COBJS-$(CONFIG_MP) += cmd_mp.o > COBJS-$(CONFIG_CMD_MTDPARTS) += cmd_mtdparts.o > -COBJS-y += cmd_nand.o > +COBJS-$(CONFIG_CMD_NAND) += cmd_nand.o > COBJS-$(CONFIG_CMD_NET) += cmd_net.o > COBJS-$(CONFIG_CMD_ONENAND) += cmd_onenand.o > COBJS-$(CONFIG_CMD_OTP) += cmd_otp.o > diff --git a/common/cmd_nand.c b/common/cmd_nand.c > index 158a55f..a5d2074 100644 > --- a/common/cmd_nand.c > +++ b/common/cmd_nand.c > @@ -18,9 +18,6 @@ > */ > #include > #include > - > -#if defined(CONFIG_CMD_NAND) > - > #include > #include > #include > @@ -686,4 +683,3 @@ U_BOOT_CMD(nboot, 4, 1, do_nandboot, > "boot from NAND device", > "[partition] | [[[loadAddr] dev] offset]" > ); > -#endif I already have a patch in u-boot-nand-flash/next from Peter Tyser that does this. -Scott