diff options
Diffstat (limited to 'strata/bsp-x86_32-generic/linux-x86-32-generic.morph')
-rw-r--r-- | strata/bsp-x86_32-generic/linux-x86-32-generic.morph | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/strata/bsp-x86_32-generic/linux-x86-32-generic.morph b/strata/bsp-x86_32-generic/linux-x86-32-generic.morph index 208eb506..529b74bd 100644 --- a/strata/bsp-x86_32-generic/linux-x86-32-generic.morph +++ b/strata/bsp-x86_32-generic/linux-x86-32-generic.morph @@ -264,6 +264,9 @@ configure-commands: - scripts/config -e SCSI_VIRTIO - scripts/config -e HYPERVISOR_GUEST - scripts/config -e PARAVIRT +- scripts/config -e CONFIG_SND_INTEL8X0 +- scripts/config -m CONFIG_DRM_CIRRUS_QEMU +- scripts/config -m CONFIG_DRM_BOCHS - yes '' | make oldconfig build-commands: - make $MAKEFLAGS @@ -285,3 +288,11 @@ install-commands: find include/uapi -print0 find scripts -print0 ) | cpio -0pumd "$DESTDIR$PREFIX/src/linux" +system-integration: + linux-x86-32-generic-misc: + # This is required for any modules to work correctly. However, it depends + # `depmod` from the 'kmod' chunk in the 'foundation' stratum, so it runs + # conditionally on `depmod` existing to avoid breaking in + # minimal-system-x86_32. + 00-depmod: + - if which depmod; then (cd /lib/modules && for version in *; do depmod -a "$version"; done) fi |