[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20140603171327.GJ23395@redhat.com>
Date: Tue, 3 Jun 2014 13:13:27 -0400
From: Vivek Goyal <vgoyal@...hat.com>
To: Borislav Petkov <bp@...en8.de>
Cc: linux-kernel@...r.kernel.org, kexec@...ts.infradead.org,
ebiederm@...ssion.com, hpa@...or.com, mjg59@...f.ucam.org,
greg@...ah.com, jkosina@...e.cz, dyoung@...hat.com,
chaowang@...hat.com, bhe@...hat.com, akpm@...ux-foundation.org
Subject: Re: [PATCH 01/13] bin2c: Move bin2c in scripts/basic
On Tue, Jun 03, 2014 at 06:01:26PM +0200, Borislav Petkov wrote:
> On Tue, Jun 03, 2014 at 09:06:50AM -0400, Vivek Goyal wrote:
> > Kexec wants to use bin2c and it wants to use it really early in the build
> > process. See arch/x86/purgatory/ code in later patches.
> >
> > So move bin2c in scripts/basic so that it can be built very early and
> > be usable by arch/x86/purgatory/
> >
> > Signed-off-by: Vivek Goyal <vgoyal@...hat.com>
> > ---
> > kernel/Makefile | 2 +-
> > scripts/Makefile | 1 -
> > scripts/basic/Makefile | 1 +
> > scripts/basic/bin2c.c | 35 +++++++++++++++++++++++++++++++++++
> > scripts/bin2c.c | 36 ------------------------------------
> > 5 files changed, 37 insertions(+), 38 deletions(-)
> > create mode 100644 scripts/basic/bin2c.c
> > delete mode 100644 scripts/bin2c.c
> >
> > diff --git a/kernel/Makefile b/kernel/Makefile
> > index f2a8b62..9b07bb7 100644
> > --- a/kernel/Makefile
> > +++ b/kernel/Makefile
> > @@ -105,7 +105,7 @@ targets += config_data.gz
> > $(obj)/config_data.gz: $(KCONFIG_CONFIG) FORCE
> > $(call if_changed,gzip)
> >
> > - filechk_ikconfiggz = (echo "static const char kernel_config_data[] __used = MAGIC_START"; cat $< | scripts/bin2c; echo "MAGIC_END;")
> > + filechk_ikconfiggz = (echo "static const char kernel_config_data[] __used = MAGIC_START"; cat $< | scripts/basic/bin2c; echo "MAGIC_END;")
> > targets += config_data.h
> > $(obj)/config_data.h: $(obj)/config_data.gz FORCE
> > $(call filechk,ikconfiggz)
> > diff --git a/scripts/Makefile b/scripts/Makefile
> > index 1d07860..e9d56fb 100644
> > --- a/scripts/Makefile
> > +++ b/scripts/Makefile
> > @@ -13,7 +13,6 @@ HOST_EXTRACFLAGS += -I$(srctree)/tools/include
> > hostprogs-$(CONFIG_KALLSYMS) += kallsyms
> > hostprogs-$(CONFIG_LOGO) += pnmtologo
> > hostprogs-$(CONFIG_VT) += conmakehash
> > -hostprogs-$(CONFIG_IKCONFIG) += bin2c
>
> You also'd need to move the "bin2c" entry from scripts/.gitignore to
> scripts/basic/.gitignore. I just noticed this by grepping around the
> sources.
Good catch. Will do in next version.
Thanks
Vivek
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists