diff options
| author | Lee Jones <lee.jones@linaro.org> | 2021-10-20 07:20:57 +0000 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2021-10-20 16:10:48 +0200 |
| commit | d1baf2f47063e58b159aad8ec4e58bd0cb2fbbfd (patch) | |
| tree | 1ea6e7d0ecdd514ab48d6c97be33a7dd1b1e5f81 /dashboard/config/linux/bits | |
| parent | bc9326611677877f3eee3016953c4894cfe046f5 (diff) | |
dashboard/config/linux: support back-ported KASAN_STACK{_ENABLE} rename in Android
KASAN_STACK_ENABLE was renamed to KASAN_STACK in kernel version v5.11.
This change was also back-ported to android12-5.10, so we need to
provide support for that here too or else `make configs` will complain
that KASAN_STACK_ENABLE is not enabled.
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'dashboard/config/linux/bits')
| -rw-r--r-- | dashboard/config/linux/bits/android.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dashboard/config/linux/bits/android.yml b/dashboard/config/linux/bits/android.yml index f93d782ed..eacac8a0c 100644 --- a/dashboard/config/linux/bits/android.yml +++ b/dashboard/config/linux/bits/android.yml @@ -7,3 +7,6 @@ config: # gki_defconfig defaults to KERNEL_LZ4, but we don't have lz4 installed, # and the package lz4 is not available on the syzbot distros. - KERNEL_GZIP + # Android has back-ported the KASAN_STACK_ENABLE => KASAN_STACK rename from v5.11 + - KASAN_STACK_ENABLE: [n, v5.10, override] + - KASAN_STACK: [v5.10, override] |
