diff options
author | Borislav Petkov <bp@suse.de> | 2014-05-19 20:59:16 +0200 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2014-05-20 20:21:24 -0700 |
commit | 1b1ded57a4f2f4420b4de7c395d1b841d8b3c41a (patch) | |
tree | 1d532435cf6dbff969a3abc80457ae52d9c0a1e5 /arch/x86/lib/Makefile | |
parent | d6d211db37e75de2ddc3a4f979038c40df7cc79c (diff) | |
download | blackbird-obmc-linux-1b1ded57a4f2f4420b4de7c395d1b841d8b3c41a.tar.gz blackbird-obmc-linux-1b1ded57a4f2f4420b4de7c395d1b841d8b3c41a.zip |
x86, boot: Carve out early cmdline parsing function
Carve out early cmdline parsing function into .../lib/cmdline.c so it
can be used by early code in the kernel proper as well.
Adapted from arch/x86/boot/cmdline.c.
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: http://lkml.kernel.org/r/1400525957-11525-2-git-send-email-bp@alien8.de
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/lib/Makefile')
-rw-r--r-- | arch/x86/lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/Makefile b/arch/x86/lib/Makefile index eabcb6e6a900..4d4f96a27638 100644 --- a/arch/x86/lib/Makefile +++ b/arch/x86/lib/Makefile @@ -16,7 +16,7 @@ clean-files := inat-tables.c obj-$(CONFIG_SMP) += msr-smp.o cache-smp.o -lib-y := delay.o misc.o +lib-y := delay.o misc.o cmdline.o lib-y += thunk_$(BITS).o lib-y += usercopy_$(BITS).o usercopy.o getuser.o putuser.o lib-y += memcpy_$(BITS).o |