Message ID | 20231208160226.14739-4-anthony.perard@citrix.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Set CONFIG_X86_GENERIC=y for i386 kernel build | expand |
diff --git a/ts-kernel-build b/ts-kernel-build index 719b33aa..05da9a7f 100755 --- a/ts-kernel-build +++ b/ts-kernel-build @@ -607,19 +607,6 @@ setopt CONFIG_AHCI_XGENE y setopt CONFIG_POWER_RESET_XGENE y setopt CONFIG_RTC_DRV_XGENE y -case ${XEN_TARGET_ARCH} in - x86_32) setopt CONFIG_64BIT n ;; - x86_64) - setopt CONFIG_64BIT y - setopt CONFIG_IA32_EMULATION y - setopt CONFIG_IA32_AOUT n - setopt CONFIG_CRYPTO_AES_X86_64 n - setopt CONFIG_CRYPTO_SALSA20_X86_64 n - setopt CONFIG_CRYPTO_TWOFISH_X86_64 n - ;; - *) ;; -esac - # Disable components that don't build setopt CONFIG_TEGRA_HOST1X n
osstest doesn't set $XEN_TARGET_ARCH, and this is a Xen build variable, not a Linux build one. So, this code have been running with an empty $XEN_TARGET_ARCH for a while which mean none of those `setopt` has run in a while. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- ts-kernel-build | 13 ------------- 1 file changed, 13 deletions(-)