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 diff --git a/config/arch/alpha.in b/config/arch/alpha.in index e46772d..c5d76e4 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 v0.10.2-6-g49f6 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 diff --git a/config/libc/glibc.in b/config/libc/glibc.in index e89ed8c..5a3b1b8 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 v0.10.2-6-g49f6 From 813b6877e6937c56a91f3f67a8be085f45a651b7 Mon Sep 17 00:00:00 2001 From: Chris Packham Date: Tue, 11 May 2021 21:30:37 +1200 Subject: strace: Add github mirror strace.io currently has an expired certificate. The same files are available via github so add that as a mirror. Signed-off-by: Chris Packham diff --git a/packages/strace/package.desc b/packages/strace/package.desc index 637636d..657225f 100644 --- a/packages/strace/package.desc +++ b/packages/strace/package.desc @@ -1,4 +1,4 @@ repository='git https://github.com/strace/strace.git' bootstrap='./bootstrap' -mirrors='https://strace.io/files/${CT_STRACE_VERSION}' +mirrors='https://strace.io/files/${CT_STRACE_VERSION} https://github.com/strace/strace/releases/download/v${CT_STRACE_VERSION}' archive_formats='.tar.xz' -- cgit v0.10.2-6-g49f6