diff options
author | Ian Jordan <immoloism@gmail.com> | 2024-08-01 07:10:47 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-08-26 15:26:33 +0200 |
commit | 033a719e870cdf5b63573db9b609a43518ea30e1 (patch) | |
tree | e79ae2d764151445244a342a6018f5a66a1592ea | |
parent | Also disable quic for curl in stage3 (diff) | |
download | releng-033a719e870cdf5b63573db9b609a43518ea30e1.tar.gz releng-033a719e870cdf5b63573db9b609a43518ea30e1.tar.bz2 releng-033a719e870cdf5b63573db9b609a43518ea30e1.zip |
kconfig: Add x86 dist-kernel config
Build kernel for i486 and disable DRM building.
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Signed-off-by: Ian Jordan <immoloism@gmail.com>
-rw-r--r-- | releases/kconfig/x86/dist-x86-livecd.config | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/releases/kconfig/x86/dist-x86-livecd.config b/releases/kconfig/x86/dist-x86-livecd.config new file mode 100644 index 00000000..5ff138d3 --- /dev/null +++ b/releases/kconfig/x86/dist-x86-livecd.config @@ -0,0 +1,26 @@ +# Kernel config for x86 Livecds + +# Ian Jordan <immoloism@gmail.com (2024-07-31) +# Build kernel for 486 CPU +CONFIG_M486=y + +# Ian Jordan <immoloism@gmail.com> (2024-05-26) +# Disable DRM support from being built on livecds to save space and load errors. +CONFIG_DRM=n +CONFIG_DRM_RADEON=n +CONFIG_DRM_AMDGPU=n +CONFIG_DRM_NOUVEAU=n +CONFIG_DRM_I915=n +CONFIG_DRM_XE=n +CONFIG_DRM_VGEM=n +CONFIG_DRM_VKMS=n +CONFIG_DRM_VMWGFX=n +CONFIG_DRM_GMA500=n +CONFIG_DRM_MGAG200=n +CONFIG_DRM_AST=n +CONFIG_DRM_QXL=n +CONFIG_DRM_VIRTIO_GPU=n +CONFIG_DRM_BOCHS=n +CONFIG_DRM_CIRRUS_QEMU=n +CONFIG_DRM_GM12U320=n +CONFIG_DRM_PANEL_MIPI_DBI=n |