mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
kernel config: Explicitly enable some stuff not enabled by 'make alldefconfig'
List of what to enable taken from https://lwn.net/Articles/672587/. This doesn't change the resulting x86 configs, but is more useful for other architectures. For instance, POSIX_MQUEUE is currently missing on ARM.
This commit is contained in:
parent
0b22104c1d
commit
c004c6e14d
1 changed files with 5 additions and 0 deletions
|
@ -107,6 +107,7 @@ with stdenv.lib;
|
||||||
WAN y
|
WAN y
|
||||||
|
|
||||||
# Networking options.
|
# Networking options.
|
||||||
|
NET y
|
||||||
IP_PNP n
|
IP_PNP n
|
||||||
${optionalString (versionOlder version "3.13") ''
|
${optionalString (versionOlder version "3.13") ''
|
||||||
IPV6_PRIVACY y
|
IPV6_PRIVACY y
|
||||||
|
@ -210,6 +211,7 @@ with stdenv.lib;
|
||||||
# Filesystem options - in particular, enable extended attributes and
|
# Filesystem options - in particular, enable extended attributes and
|
||||||
# ACLs for all filesystems that support them.
|
# ACLs for all filesystems that support them.
|
||||||
FANOTIFY y
|
FANOTIFY y
|
||||||
|
TMPFS y
|
||||||
EXT2_FS_XATTR y
|
EXT2_FS_XATTR y
|
||||||
EXT2_FS_POSIX_ACL y
|
EXT2_FS_POSIX_ACL y
|
||||||
EXT2_FS_SECURITY y
|
EXT2_FS_SECURITY y
|
||||||
|
@ -313,6 +315,7 @@ with stdenv.lib;
|
||||||
${optionalString (versionOlder version "4.4") ''
|
${optionalString (versionOlder version "4.4") ''
|
||||||
B43_PCMCIA? y
|
B43_PCMCIA? y
|
||||||
''}
|
''}
|
||||||
|
BLK_DEV_INITRD y
|
||||||
BLK_DEV_INTEGRITY y
|
BLK_DEV_INTEGRITY y
|
||||||
BSD_PROCESS_ACCT_V3 y
|
BSD_PROCESS_ACCT_V3 y
|
||||||
BT_HCIUART_BCSP? y
|
BT_HCIUART_BCSP? y
|
||||||
|
@ -323,8 +326,10 @@ with stdenv.lib;
|
||||||
CRASH_DUMP? n
|
CRASH_DUMP? n
|
||||||
DVB_DYNAMIC_MINORS? y # we use udev
|
DVB_DYNAMIC_MINORS? y # we use udev
|
||||||
EFI_STUB y # EFI bootloader in the bzImage itself
|
EFI_STUB y # EFI bootloader in the bzImage itself
|
||||||
|
CGROUPS y # used by systemd
|
||||||
FHANDLE y # used by systemd
|
FHANDLE y # used by systemd
|
||||||
SECCOMP y # used by systemd >= 231
|
SECCOMP y # used by systemd >= 231
|
||||||
|
POSIX_MQUEUE y
|
||||||
FRONTSWAP y
|
FRONTSWAP y
|
||||||
FUSION y # Fusion MPT device support
|
FUSION y # Fusion MPT device support
|
||||||
IDE n # deprecated IDE support
|
IDE n # deprecated IDE support
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue