* [PATCH 1/2] x86/build: Add {kvm_guest,xen}.config targets to make help's output
@ 2020-12-17 13:46 Borislav Petkov
2020-12-17 13:46 ` [PATCH 2/2] x86/build: Realign archhelp Borislav Petkov
2020-12-28 17:31 ` [tip: x86/build] x86/build: Add {kvm_guest,xen}.config targets to make help's output tip-bot2 for Borislav Petkov
0 siblings, 2 replies; 4+ messages in thread
From: Borislav Petkov @ 2020-12-17 13:46 UTC (permalink / raw)
To: X86 ML; +Cc: LKML
From: Borislav Petkov <bp@suse.de>
Add the targets which add Kconfig items to the .config so that the
kernel can be run 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>
---
arch/x86/Makefile | 3 +++
1 file changed, 3 insertions(+)
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
--
2.29.2
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH 2/2] x86/build: Realign archhelp
2020-12-17 13:46 [PATCH 1/2] x86/build: Add {kvm_guest,xen}.config targets to make help's output Borislav Petkov
@ 2020-12-17 13:46 ` Borislav Petkov
2020-12-28 17:31 ` [tip: x86/build] " tip-bot2 for Borislav Petkov
2020-12-28 17:31 ` [tip: x86/build] x86/build: Add {kvm_guest,xen}.config targets to make help's output tip-bot2 for Borislav Petkov
1 sibling, 1 reply; 4+ messages in thread
From: Borislav Petkov @ 2020-12-17 13:46 UTC (permalink / raw)
To: X86 ML; +Cc: LKML
From: Borislav Petkov <bp@suse.de>
Realign help text vertically and add spacing so that target help text
is properly separated.
No functional changes.
Signed-off-by: Borislav Petkov <bp@suse.de>
---
arch/x86/Makefile | 29 +++++++++++++++--------------
1 file changed, 15 insertions(+), 14 deletions(-)
diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index 3dae5c90c159..32dcdddc1089 100644
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -292,19 +292,20 @@ archclean:
$(Q)$(MAKE) $(clean)=arch/x86/tools
define archhelp
- echo '* bzImage - Compressed kernel image (arch/x86/boot/bzImage)'
- echo ' install - Install kernel using'
- echo ' (your) ~/bin/$(INSTALLKERNEL) or'
- echo ' (distribution) /sbin/$(INSTALLKERNEL) or'
- echo ' install to $$(INSTALL_PATH) and run lilo'
- echo ' fdimage - Create 1.4MB boot floppy image (arch/x86/boot/fdimage)'
- echo ' fdimage144 - Create 1.4MB boot floppy image (arch/x86/boot/fdimage)'
- echo ' fdimage288 - Create 2.8MB boot floppy image (arch/x86/boot/fdimage)'
- echo ' isoimage - Create a boot CD-ROM image (arch/x86/boot/image.iso)'
- 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'
+ echo '* bzImage - Compressed kernel image (arch/x86/boot/bzImage)'
+ echo ' install - Install kernel using (your) ~/bin/$(INSTALLKERNEL) or'
+ echo ' (distribution) /sbin/$(INSTALLKERNEL) or install to '
+ echo ' $$(INSTALL_PATH) and run lilo'
+ echo ''
+ echo ' fdimage - Create 1.4MB boot floppy image (arch/x86/boot/fdimage)'
+ echo ' fdimage144 - Create 1.4MB boot floppy image (arch/x86/boot/fdimage)'
+ echo ' fdimage288 - Create 2.8MB boot floppy image (arch/x86/boot/fdimage)'
+ echo ' isoimage - Create a boot CD-ROM image (arch/x86/boot/image.iso)'
+ echo ' bzdisk/fdimage*/isoimage also accept:'
+ echo ' FDARGS="..." arguments for the booted kernel'
+ echo ' FDINITRD=file initrd for the booted kernel'
+ echo ''
+ 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
--
2.29.2
^ permalink raw reply [flat|nested] 4+ messages in thread* [tip: x86/build] x86/build: Realign archhelp
2020-12-17 13:46 ` [PATCH 2/2] x86/build: Realign archhelp Borislav Petkov
@ 2020-12-28 17:31 ` tip-bot2 for Borislav Petkov
0 siblings, 0 replies; 4+ messages in thread
From: tip-bot2 for Borislav Petkov @ 2020-12-28 17:31 UTC (permalink / raw)
To: linux-tip-commits; +Cc: Borislav Petkov, x86, linux-kernel
The following commit has been merged into the x86/build branch of tip:
Commit-ID: ac5d08870d0b94cbfa8103c9e294de2b96f249bc
Gitweb: https://git.kernel.org/tip/ac5d08870d0b94cbfa8103c9e294de2b96f249bc
Author: Borislav Petkov <bp@suse.de>
AuthorDate: Thu, 17 Dec 2020 14:42:00 +01:00
Committer: Borislav Petkov <bp@suse.de>
CommitterDate: Mon, 28 Dec 2020 18:25:53 +01:00
x86/build: Realign archhelp
Realign help text vertically and add spacing so that the target help
text is properly separated.
No functional changes.
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20201217134608.31811-2-bp@alien8.de
---
arch/x86/Makefile | 29 +++++++++++++++--------------
1 file changed, 15 insertions(+), 14 deletions(-)
diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index 3dae5c9..32dcddd 100644
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -292,19 +292,20 @@ archclean:
$(Q)$(MAKE) $(clean)=arch/x86/tools
define archhelp
- echo '* bzImage - Compressed kernel image (arch/x86/boot/bzImage)'
- echo ' install - Install kernel using'
- echo ' (your) ~/bin/$(INSTALLKERNEL) or'
- echo ' (distribution) /sbin/$(INSTALLKERNEL) or'
- echo ' install to $$(INSTALL_PATH) and run lilo'
- echo ' fdimage - Create 1.4MB boot floppy image (arch/x86/boot/fdimage)'
- echo ' fdimage144 - Create 1.4MB boot floppy image (arch/x86/boot/fdimage)'
- echo ' fdimage288 - Create 2.8MB boot floppy image (arch/x86/boot/fdimage)'
- echo ' isoimage - Create a boot CD-ROM image (arch/x86/boot/image.iso)'
- 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'
+ echo '* bzImage - Compressed kernel image (arch/x86/boot/bzImage)'
+ echo ' install - Install kernel using (your) ~/bin/$(INSTALLKERNEL) or'
+ echo ' (distribution) /sbin/$(INSTALLKERNEL) or install to '
+ echo ' $$(INSTALL_PATH) and run lilo'
+ echo ''
+ echo ' fdimage - Create 1.4MB boot floppy image (arch/x86/boot/fdimage)'
+ echo ' fdimage144 - Create 1.4MB boot floppy image (arch/x86/boot/fdimage)'
+ echo ' fdimage288 - Create 2.8MB boot floppy image (arch/x86/boot/fdimage)'
+ echo ' isoimage - Create a boot CD-ROM image (arch/x86/boot/image.iso)'
+ echo ' bzdisk/fdimage*/isoimage also accept:'
+ echo ' FDARGS="..." arguments for the booted kernel'
+ echo ' FDINITRD=file initrd for the booted kernel'
+ echo ''
+ 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
^ permalink raw reply [flat|nested] 4+ messages in thread
* [tip: x86/build] x86/build: Add {kvm_guest,xen}.config targets to make help's output
2020-12-17 13:46 [PATCH 1/2] x86/build: Add {kvm_guest,xen}.config targets to make help's output Borislav Petkov
2020-12-17 13:46 ` [PATCH 2/2] x86/build: Realign archhelp Borislav Petkov
@ 2020-12-28 17:31 ` tip-bot2 for Borislav Petkov
1 sibling, 0 replies; 4+ messages in thread
From: tip-bot2 for Borislav Petkov @ 2020-12-28 17:31 UTC (permalink / raw)
To: linux-tip-commits; +Cc: Borislav Petkov, x86, linux-kernel
The following commit has been merged into the x86/build branch of tip:
Commit-ID: fbaf0aa8c7a8d4f7c3e4664f2f03ec8c7cc79910
Gitweb: https://git.kernel.org/tip/fbaf0aa8c7a8d4f7c3e4664f2f03ec8c7cc79910
Author: Borislav Petkov <bp@suse.de>
AuthorDate: Thu, 17 Dec 2020 13:13:34 +01:00
Committer: Borislav Petkov <bp@suse.de>
CommitterDate: Mon, 28 Dec 2020 18:23:25 +01:00
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
---
arch/x86/Makefile | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index 7116da3..3dae5c9 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
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-12-28 17:32 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-17 13:46 [PATCH 1/2] x86/build: Add {kvm_guest,xen}.config targets to make help's output Borislav Petkov
2020-12-17 13:46 ` [PATCH 2/2] x86/build: Realign archhelp Borislav Petkov
2020-12-28 17:31 ` [tip: x86/build] " tip-bot2 for Borislav Petkov
2020-12-28 17:31 ` [tip: x86/build] x86/build: Add {kvm_guest,xen}.config targets to make help's output tip-bot2 for Borislav Petkov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®