From 10c21dfc1796bee8a0b34caa87c687390138bd64 Mon Sep 17 00:00:00 2001 From: Chris Packham Date: Tue, 11 May 2021 20:39:28 +1200 Subject: alpha: Support 64-bit only Alpha is a 64-bit only arch. The menu options only allowed 32 bitness to be selected. This was harmless but confusing, update the config to specify 64-bit only. Fixes: #1506 Signed-off-by: Chris Packham --- config/arch/alpha.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config') diff --git a/config/arch/alpha.in b/config/arch/alpha.in index e46772dc..c5d76e46 100644 --- a/config/arch/alpha.in +++ b/config/arch/alpha.in @@ -1,8 +1,8 @@ # Alpha specific configuration file ## no-package -## select ARCH_SUPPORTS_32 -## select ARCH_DEFAULT_32 +## select ARCH_SUPPORTS_64 +## select ARCH_DEFAULT_64 ## select ARCH_USE_MMU ## select ARCH_SUPPORTS_WITH_CPU ## select ARCH_SUPPORTS_WITH_TUNE -- cgit v1.2.3 From cc8c64a8dc5c069204ce7334861997febc45a69f Mon Sep 17 00:00:00 2001 From: Chris Packham Date: Mon, 7 Sep 2020 20:25:19 +1200 Subject: glibc: --enable-obsolete-rpc has been removed as of 2.32 Make --enable-obsolete-rpc conditional on !GLIBC_2_32_or_later as it's been removed from that version on. Fixes: #1505 Fixes: commit 1ee44ab5 ("glibc: --enable-obsolete-rpc has been removed as of 2.32") Signed-off-by: Chris Packham --- config/libc/glibc.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config') diff --git a/config/libc/glibc.in b/config/libc/glibc.in index e89ed8ce..5a3b1b8c 100644 --- a/config/libc/glibc.in +++ b/config/libc/glibc.in @@ -150,7 +150,7 @@ config GLIBC_NO_SPARC_V8 # The option and the code has finally been removed in 2.32 config GLIBC_HAS_OBSOLETE_RPC def_bool y - depends on GLIBC_2_14_or_later && !CT_GLIBC_2_32_or_later + depends on GLIBC_2_14_or_later && !GLIBC_2_32_or_later config GLIBC_EXTRA_CONFIG_ARRAY string -- cgit v1.2.3