config: Move ASHMEM into conditional (MR 2176)

Option was dropped and is no longer available.

See https://lore.kernel.org/all/20220315123457.2354812-1-hch@lst.de
And 721412ed3d
This commit is contained in:
Newbyte 2022-04-05 20:52:26 +02:00
parent 9a74848f19
commit ff569ece14
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 5 additions and 1 deletions

View File

@ -336,7 +336,6 @@ necessary_kconfig_options_anbox = {
"SQUASHFS_XZ": True,
"SQUASHFS_XATTR": True,
"TMPFS_XATTR": True,
"ASHMEM": True,
"ANDROID_BINDER_IPC": True,
"ANDROID_BINDERFS": False,
"ANDROID_BINDER_DEVICES": ["binder", "hwbinder"],
@ -362,6 +361,11 @@ necessary_kconfig_options_anbox = {
"PSI": True, # required by userspace OOM killer in Waydroid
"PSI_DEFAULT_DISABLED": False,
}
},
"<5.18_rc1": { # option has been dropped
"all": {
"ASHMEM": True,
}
}
}