18 lines
547 B
YAML
18 lines
547 B
YAML
# Debian kernel configuration for minimal base images
|
|
packages:
|
|
# Essential kernel packages - let apt resolve the version
|
|
- linux-image-amd64
|
|
- linux-headers-amd64
|
|
# Only specify specific version if absolutely necessary for compatibility
|
|
# - linux-image-6.1.0-13-amd64 # Commented out - let apt resolve
|
|
|
|
# Kernel configuration
|
|
kernel:
|
|
# Ensure kernel supports essential features
|
|
- CONFIG_DEVTMPFS=y
|
|
- CONFIG_CGROUPS=y
|
|
- CONFIG_NAMESPACES=y
|
|
- CONFIG_SECCOMP=y
|
|
- CONFIG_BLK_DEV_INITRD=y
|
|
- CONFIG_EFI_STUB=y
|
|
- CONFIG_EFI=y
|