[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH] OSStest: use CONFIG_X86_GENERIC for 32-bit x86 kernel
Today the cpu type for a 32-bit x86 kernel is not specified in the used kernel config, resulting in the M686 to be used. Instead of using the M686 which isn't even a 64-bit cpu (thus not capable to run a Xen guest), use the X86_GENERIC variant which is more appropriate. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> --- ts-kernel-build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ts-kernel-build b/ts-kernel-build index 719b33aa..d9e033c4 100755 --- a/ts-kernel-build +++ b/ts-kernel-build @@ -608,7 +608,10 @@ setopt CONFIG_POWER_RESET_XGENE y setopt CONFIG_RTC_DRV_XGENE y case ${XEN_TARGET_ARCH} in - x86_32) setopt CONFIG_64BIT n ;; + x86_32) + setopt CONFIG_64BIT n + setopt CONFIG_X86_GENERIC y + ;; x86_64) setopt CONFIG_64BIT y setopt CONFIG_IA32_EMULATION y -- 2.35.3
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |