diff options
author | Borislav Petkov <bp@suse.de> | 2020-12-17 15:13:34 +0300 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2020-12-28 20:23:25 +0300 |
commit | fbaf0aa8c7a8d4f7c3e4664f2f03ec8c7cc79910 (patch) | |
tree | 11f365719b5d8916a011cc4c219e8aa4fbd4f68f /arch/x86/Makefile | |
parent | 5c8fe583cce542aa0b84adc939ce85293de36e5e (diff) | |
download | linux-fbaf0aa8c7a8d4f7c3e4664f2f03ec8c7cc79910.tar.xz |
x86/build: Add {kvm_guest,xen}.config targets to make help's output
Add the targets which add additional items to the .config which
facilitate running the kernel as a guest, to the 'make help' output so
that they can be found easier and there's no need to grep the tree each
time to remember what they should be called.
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20201217134608.31811-1-bp@alien8.de
Diffstat (limited to 'arch/x86/Makefile')
-rw-r--r-- | arch/x86/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/Makefile b/arch/x86/Makefile index 7116da3980be..3dae5c90c159 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile @@ -304,4 +304,7 @@ define archhelp echo ' bzdisk/fdimage*/isoimage also accept:' echo ' FDARGS="..." arguments for the booted kernel' echo ' FDINITRD=file initrd for the booted kernel' + echo ' kvm_guest.config - Enable Kconfig items for running this kernel as a KVM guest' + echo ' xen.config - Enable Kconfig items for running this kernel as a Xen guest' + endef |