alpine-zdt-images/configs/cloud/aws.conf
Jake Buchholz Göktürk 13ad49f6f3 Move AWS-Related configs to aws.conf
Resolves #131
2022-02-23 18:51:07 -08:00

34 lines
591 B
Plaintext

# vim: ts=2 et:
builder = qemu
ntp_server = 169.254.169.123
kernel_modules {
ena = true
nvme = true
}
kernel_options {
"nvme_core.io_timeout=4294967295" = true
}
initfs_features {
ena = true
nvme = true
}
access.PUBLIC = true
regions.ALL = true
WHEN {
aarch64 {
# new AWS aarch64 default...
kernel_modules.gpio_pl061 = true
initfs_features.gpio_pl061 = true
WHEN {
"3.14 3.13 3.12" {
# ...but not supported for older versions
kernel_modules.gpio_pl061 = false
initfs_features.gpio_pl061 = false
}
}
}
}