From patchwork Sat May 4 19:54:04 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Artur Rojek X-Patchwork-Id: 1931395 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=buildroot.org (client-ip=2605:bc80:3010::138; helo=smtp1.osuosl.org; envelope-from=buildroot-bounces@buildroot.org; receiver=patchwork.ozlabs.org) Received: from smtp1.osuosl.org (smtp1.osuosl.org [IPv6:2605:bc80:3010::138]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4VWz0S3sD9z1ybC for ; Sun, 5 May 2024 05:54:48 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by smtp1.osuosl.org (Postfix) with ESMTP id B6AF3820AC; Sat, 4 May 2024 19:54:43 +0000 (UTC) X-Virus-Scanned: amavis at osuosl.org Received: from smtp1.osuosl.org ([127.0.0.1]) by localhost (smtp1.osuosl.org [127.0.0.1]) (amavis, port 10024) with ESMTP id 1ZmlCjlpSXTt; Sat, 4 May 2024 19:54:42 +0000 (UTC) X-Comment: SPF check N/A for local connections - client-ip=140.211.166.34; helo=ash.osuosl.org; envelope-from=buildroot-bounces@buildroot.org; receiver= DKIM-Filter: OpenDKIM Filter v2.11.0 smtp1.osuosl.org 8DEEF821BF Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp1.osuosl.org (Postfix) with ESMTP id 8DEEF821BF; Sat, 4 May 2024 19:54:41 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from smtp4.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 192F31BF836 for ; Sat, 4 May 2024 19:54:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp4.osuosl.org (Postfix) with ESMTP id 0495A407A5 for ; Sat, 4 May 2024 19:54:38 +0000 (UTC) X-Virus-Scanned: amavis at osuosl.org Received: from smtp4.osuosl.org ([127.0.0.1]) by localhost (smtp4.osuosl.org [127.0.0.1]) (amavis, port 10024) with ESMTP id Ow9la0gHZBns for ; Sat, 4 May 2024 19:54:37 +0000 (UTC) Received-SPF: Pass (mailfrom) identity=mailfrom; client-ip=217.70.183.200; helo=relay7-d.mail.gandi.net; envelope-from=contact@artur-rojek.eu; receiver= DMARC-Filter: OpenDMARC Filter v1.4.2 smtp4.osuosl.org EA0FD40674 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp4.osuosl.org EA0FD40674 Received: from relay7-d.mail.gandi.net (relay7-d.mail.gandi.net [217.70.183.200]) by smtp4.osuosl.org (Postfix) with ESMTPS id EA0FD40674 for ; Sat, 4 May 2024 19:54:36 +0000 (UTC) Received: by mail.gandi.net (Postfix) with ESMTPSA id 51CCE20003; Sat, 4 May 2024 19:54:33 +0000 (UTC) From: Artur Rojek To: buildroot@buildroot.org Date: Sat, 4 May 2024 21:54:04 +0200 Message-ID: <20240504195407.1409466-2-contact@artur-rojek.eu> X-Mailer: git-send-email 2.45.0 In-Reply-To: <20240504195407.1409466-1-contact@artur-rojek.eu> References: <20240504195407.1409466-1-contact@artur-rojek.eu> MIME-Version: 1.0 X-GND-Sasl: contact@artur-rojek.eu X-Mailman-Original-Authentication-Results: smtp4.osuosl.org; dmarc=none (p=none dis=none) header.from=artur-rojek.eu Subject: [Buildroot] [PATCH 1/4] arch: reintroduce sh3 support X-BeenThere: buildroot@buildroot.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Artur Rojek , Paul Cercueil , Julien Olivain , Thomas Petazzoni , John Paul Adrian Glaubitz , Romain Naour , Giulio Benetti Errors-To: buildroot-bounces@buildroot.org Sender: "buildroot" This restores support for the little-endian SH3 based CPUs. Signed-off-by: Artur Rojek Tested-by: socksinspace --- arch/Config.in.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/arch/Config.in.sh b/arch/Config.in.sh index d3acc8ccf8e6..686789265e04 100644 --- a/arch/Config.in.sh +++ b/arch/Config.in.sh @@ -13,9 +13,13 @@ config BR2_sh4a bool "sh4a (SH4A little endian)" config BR2_sh4aeb bool "sh4aeb (SH4A big endian)" +config BR2_sh3 + bool "sh3 (SH3 little endian)" + select BR2_SOFT_FLOAT endchoice config BR2_ARCH + default "sh3" if BR2_sh3 default "sh4" if BR2_sh4 default "sh4eb" if BR2_sh4eb default "sh4a" if BR2_sh4a @@ -25,7 +29,7 @@ config BR2_NORMALIZED_ARCH default "sh" config BR2_ENDIAN - default "LITTLE" if BR2_sh4 || BR2_sh4a + default "LITTLE" if BR2_sh3 || BR2_sh4 || BR2_sh4a default "BIG" if BR2_sh4eb || BR2_sh4aeb config BR2_READELF_ARCH_NAME From patchwork Sat May 4 19:54:05 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Artur Rojek X-Patchwork-Id: 1931396 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=buildroot.org (client-ip=140.211.166.138; helo=smtp1.osuosl.org; envelope-from=buildroot-bounces@buildroot.org; receiver=patchwork.ozlabs.org) Received: from smtp1.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4VWz0W2LJ5z1ybC for ; Sun, 5 May 2024 05:54:51 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by smtp1.osuosl.org (Postfix) with ESMTP id 0B9F082188; Sat, 4 May 2024 19:54:47 +0000 (UTC) X-Virus-Scanned: amavis at osuosl.org Received: from smtp1.osuosl.org ([127.0.0.1]) by localhost (smtp1.osuosl.org [127.0.0.1]) (amavis, port 10024) with ESMTP id 3Bt_ODYievDo; Sat, 4 May 2024 19:54:46 +0000 (UTC) X-Comment: SPF check N/A for local connections - client-ip=140.211.166.34; helo=ash.osuosl.org; envelope-from=buildroot-bounces@buildroot.org; receiver= DKIM-Filter: OpenDKIM Filter v2.11.0 smtp1.osuosl.org BCC11835D3 Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp1.osuosl.org (Postfix) with ESMTP id BCC11835D3; Sat, 4 May 2024 19:54:45 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from smtp3.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 835C01BF836 for ; Sat, 4 May 2024 19:54:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp3.osuosl.org (Postfix) with ESMTP id 711C360667 for ; Sat, 4 May 2024 19:54:38 +0000 (UTC) X-Virus-Scanned: amavis at osuosl.org Received: from smtp3.osuosl.org ([127.0.0.1]) by localhost (smtp3.osuosl.org [127.0.0.1]) (amavis, port 10024) with ESMTP id U3tlc8sMXqUR for ; Sat, 4 May 2024 19:54:38 +0000 (UTC) Received-SPF: Pass (mailfrom) identity=mailfrom; client-ip=217.70.183.200; helo=relay7-d.mail.gandi.net; envelope-from=contact@artur-rojek.eu; receiver= DMARC-Filter: OpenDMARC Filter v1.4.2 smtp3.osuosl.org 855F76068F DKIM-Filter: OpenDKIM Filter v2.11.0 smtp3.osuosl.org 855F76068F Received: from relay7-d.mail.gandi.net (relay7-d.mail.gandi.net [217.70.183.200]) by smtp3.osuosl.org (Postfix) with ESMTPS id 855F76068F for ; Sat, 4 May 2024 19:54:37 +0000 (UTC) Received: by mail.gandi.net (Postfix) with ESMTPSA id 90E8A20009; Sat, 4 May 2024 19:54:34 +0000 (UTC) From: Artur Rojek To: buildroot@buildroot.org Date: Sat, 4 May 2024 21:54:05 +0200 Message-ID: <20240504195407.1409466-3-contact@artur-rojek.eu> X-Mailer: git-send-email 2.45.0 In-Reply-To: <20240504195407.1409466-1-contact@artur-rojek.eu> References: <20240504195407.1409466-1-contact@artur-rojek.eu> MIME-Version: 1.0 X-GND-Sasl: contact@artur-rojek.eu X-Mailman-Original-Authentication-Results: smtp3.osuosl.org; dmarc=none (p=none dis=none) header.from=artur-rojek.eu Subject: [Buildroot] [PATCH 2/4] package/gcc: reintroduce sh3 support X-BeenThere: buildroot@buildroot.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Artur Rojek , Paul Cercueil , Julien Olivain , Thomas Petazzoni , John Paul Adrian Glaubitz , Romain Naour , Giulio Benetti Errors-To: buildroot-bounces@buildroot.org Sender: "buildroot" Allow gcc to build with sh3 variant of the SuperH ISA. Signed-off-by: Artur Rojek Tested-by: socksinspace --- package/gcc/gcc-final/gcc-final.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/gcc/gcc-final/gcc-final.mk b/package/gcc/gcc-final/gcc-final.mk index 99d7047b5f00..0e0bcc3729d1 100644 --- a/package/gcc/gcc-final/gcc-final.mk +++ b/package/gcc/gcc-final/gcc-final.mk @@ -81,6 +81,8 @@ HOST_GCC_FINAL_GCC_LIB_DIR = $(HOST_DIR)/$(GNU_TARGET_NAME)/lib/!m4* else ifeq ($(BR2_sh4a)$(BR2_sh4aeb),y) HOST_GCC_FINAL_CONF_OPTS += "--with-multilib-list=m4a,m4a-nofpu" HOST_GCC_FINAL_GCC_LIB_DIR = $(HOST_DIR)/$(GNU_TARGET_NAME)/lib/!m4* +else ifeq ($(BR2_sh3),y) +HOST_GCC_FINAL_GCC_LIB_DIR = $(HOST_DIR)/$(GNU_TARGET_NAME)/lib/!m3* else HOST_GCC_FINAL_GCC_LIB_DIR = $(HOST_DIR)/$(GNU_TARGET_NAME)/lib* endif From patchwork Sat May 4 19:54:06 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Artur Rojek X-Patchwork-Id: 1931397 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=buildroot.org (client-ip=2605:bc80:3010::138; helo=smtp1.osuosl.org; envelope-from=buildroot-bounces@buildroot.org; receiver=patchwork.ozlabs.org) Received: from smtp1.osuosl.org (smtp1.osuosl.org [IPv6:2605:bc80:3010::138]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4VWz0Y4R9nz1ybC for ; Sun, 5 May 2024 05:54:53 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by smtp1.osuosl.org (Postfix) with ESMTP id 8AB5C835D9; Sat, 4 May 2024 19:54:50 +0000 (UTC) X-Virus-Scanned: amavis at osuosl.org Received: from smtp1.osuosl.org ([127.0.0.1]) by localhost (smtp1.osuosl.org [127.0.0.1]) (amavis, port 10024) with ESMTP id cbcxOj6PZSV1; Sat, 4 May 2024 19:54:49 +0000 (UTC) X-Comment: SPF check N/A for local connections - client-ip=140.211.166.34; helo=ash.osuosl.org; envelope-from=buildroot-bounces@buildroot.org; receiver= DKIM-Filter: OpenDKIM Filter v2.11.0 smtp1.osuosl.org 333148364F Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp1.osuosl.org (Postfix) with ESMTP id 333148364F; Sat, 4 May 2024 19:54:49 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from smtp4.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 854361BF836 for ; Sat, 4 May 2024 19:54:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp4.osuosl.org (Postfix) with ESMTP id 7EC29407A5 for ; Sat, 4 May 2024 19:54:39 +0000 (UTC) X-Virus-Scanned: amavis at osuosl.org Received: from smtp4.osuosl.org ([127.0.0.1]) by localhost (smtp4.osuosl.org [127.0.0.1]) (amavis, port 10024) with ESMTP id Nny-DaP9q4Ut for ; Sat, 4 May 2024 19:54:38 +0000 (UTC) Received-SPF: Pass (mailfrom) identity=mailfrom; client-ip=217.70.183.200; helo=relay7-d.mail.gandi.net; envelope-from=contact@artur-rojek.eu; receiver= DMARC-Filter: OpenDMARC Filter v1.4.2 smtp4.osuosl.org 52D5C40674 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp4.osuosl.org 52D5C40674 Received: from relay7-d.mail.gandi.net (relay7-d.mail.gandi.net [217.70.183.200]) by smtp4.osuosl.org (Postfix) with ESMTPS id 52D5C40674 for ; Sat, 4 May 2024 19:54:38 +0000 (UTC) Received: by mail.gandi.net (Postfix) with ESMTPSA id D3D002000B; Sat, 4 May 2024 19:54:35 +0000 (UTC) From: Artur Rojek To: buildroot@buildroot.org Date: Sat, 4 May 2024 21:54:06 +0200 Message-ID: <20240504195407.1409466-4-contact@artur-rojek.eu> X-Mailer: git-send-email 2.45.0 In-Reply-To: <20240504195407.1409466-1-contact@artur-rojek.eu> References: <20240504195407.1409466-1-contact@artur-rojek.eu> MIME-Version: 1.0 X-GND-Sasl: contact@artur-rojek.eu X-Mailman-Original-Authentication-Results: smtp4.osuosl.org; dmarc=none (p=none dis=none) header.from=artur-rojek.eu Subject: [Buildroot] [PATCH 3/4] package/uclibc: reintroduce sh3 support X-BeenThere: buildroot@buildroot.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Artur Rojek , Paul Cercueil , Julien Olivain , Thomas Petazzoni , John Paul Adrian Glaubitz , Romain Naour , Giulio Benetti Errors-To: buildroot-bounces@buildroot.org Sender: "buildroot" Allow uclibc to build with sh3 variant of the SuperH ISA. Signed-off-by: Artur Rojek --- package/uclibc/Config.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/uclibc/Config.in b/package/uclibc/Config.in index 2555487f06d2..2b5fc140ad22 100644 --- a/package/uclibc/Config.in +++ b/package/uclibc/Config.in @@ -17,6 +17,7 @@ config BR2_PACKAGE_UCLIBC_ARCH_SUPPORTS default y if BR2_powerpc # see libc/sysdeps/linux/riscv64/sys/asm.h default y if BR2_RISCV_64 && (BR2_RISCV_ABI_LP64 || BR2_RISCV_ABI_LP64D) + default y if BR2_sh3 default y if BR2_sh4 default y if BR2_sh4eb default y if BR2_sparc @@ -155,6 +156,7 @@ config BR2_UCLIBC_MIPS_NAN config BR2_UCLIBC_SH_TYPE string default "SH4" if BR2_sh4 || BR2_sh4eb + default "SH3" if BR2_sh3 depends on BR2_UCLIBC_TARGET_ARCH = "sh" config BR2_UCLIBC_SPARC_TYPE From patchwork Sat May 4 19:54:07 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Artur Rojek X-Patchwork-Id: 1931398 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=buildroot.org (client-ip=2605:bc80:3010::138; helo=smtp1.osuosl.org; envelope-from=buildroot-bounces@buildroot.org; receiver=patchwork.ozlabs.org) Received: from smtp1.osuosl.org (smtp1.osuosl.org [IPv6:2605:bc80:3010::138]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4VWz0b4HW3z1ybC for ; Sun, 5 May 2024 05:54:55 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by smtp1.osuosl.org (Postfix) with ESMTP id F3EB583750; Sat, 4 May 2024 19:54:53 +0000 (UTC) X-Virus-Scanned: amavis at osuosl.org Received: from smtp1.osuosl.org ([127.0.0.1]) by localhost (smtp1.osuosl.org [127.0.0.1]) (amavis, port 10024) with ESMTP id j7g9iLDaUmAX; Sat, 4 May 2024 19:54:53 +0000 (UTC) X-Comment: SPF check N/A for local connections - client-ip=140.211.166.34; helo=ash.osuosl.org; envelope-from=buildroot-bounces@buildroot.org; receiver= DKIM-Filter: OpenDKIM Filter v2.11.0 smtp1.osuosl.org C39DA83705 Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp1.osuosl.org (Postfix) with ESMTP id C39DA83705; Sat, 4 May 2024 19:54:52 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from smtp4.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id EBF3D1BF836 for ; Sat, 4 May 2024 19:54:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp4.osuosl.org (Postfix) with ESMTP id E5CDE407A5 for ; Sat, 4 May 2024 19:54:40 +0000 (UTC) X-Virus-Scanned: amavis at osuosl.org Received: from smtp4.osuosl.org ([127.0.0.1]) by localhost (smtp4.osuosl.org [127.0.0.1]) (amavis, port 10024) with ESMTP id v7NMR4NuTFW5 for ; Sat, 4 May 2024 19:54:40 +0000 (UTC) Received-SPF: Pass (mailfrom) identity=mailfrom; client-ip=2001:4b98:dc4:8::227; helo=relay7-d.mail.gandi.net; envelope-from=contact@artur-rojek.eu; receiver= DMARC-Filter: OpenDMARC Filter v1.4.2 smtp4.osuosl.org E3BF840674 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp4.osuosl.org E3BF840674 Received: from relay7-d.mail.gandi.net (relay7-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::227]) by smtp4.osuosl.org (Postfix) with ESMTPS id E3BF840674 for ; Sat, 4 May 2024 19:54:39 +0000 (UTC) Received: by mail.gandi.net (Postfix) with ESMTPSA id 1CCC72000A; Sat, 4 May 2024 19:54:36 +0000 (UTC) From: Artur Rojek To: buildroot@buildroot.org Date: Sat, 4 May 2024 21:54:07 +0200 Message-ID: <20240504195407.1409466-5-contact@artur-rojek.eu> X-Mailer: git-send-email 2.45.0 In-Reply-To: <20240504195407.1409466-1-contact@artur-rojek.eu> References: <20240504195407.1409466-1-contact@artur-rojek.eu> MIME-Version: 1.0 X-GND-Sasl: contact@artur-rojek.eu X-Mailman-Original-Authentication-Results: smtp4.osuosl.org; dmarc=none (p=none dis=none) header.from=artur-rojek.eu Subject: [Buildroot] [PATCH 4/4] package/kexec: reintroduce sh3 support X-BeenThere: buildroot@buildroot.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Artur Rojek , Paul Cercueil , Julien Olivain , Thomas Petazzoni , John Paul Adrian Glaubitz , Romain Naour , Giulio Benetti Errors-To: buildroot-bounces@buildroot.org Sender: "buildroot" Allow kexec to build with sh3 variant of the SuperH ISA. Signed-off-by: Artur Rojek --- package/kexec/Config.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/kexec/Config.in b/package/kexec/Config.in index 707f8663a45b..ede91b113058 100644 --- a/package/kexec/Config.in +++ b/package/kexec/Config.in @@ -4,7 +4,8 @@ config BR2_PACKAGE_KEXEC_ARCH_SUPPORTS depends on BR2_i386 || BR2_x86_64 || BR2_arm || BR2_armeb || \ BR2_mips || BR2_mips64 || BR2_mipsel || BR2_mips64el || \ BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le || \ - BR2_sh4 || BR2_sh4a || BR2_aarch64 || BR2_s390x || BR2_m68k + BR2_sh3 || BR2_sh4 || BR2_sh4a || BR2_aarch64 || BR2_s390x || \ + BR2_m68k config BR2_PACKAGE_KEXEC bool "kexec"