From patchwork Sun Aug 14 16:28:49 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 5862 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4M5NCG2SKdz3wfT for ; Sun, 14 Aug 2022 16:28:58 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4M5NCF1hF0z1Pd; Sun, 14 Aug 2022 16:28:57 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4M5NCF0xg5z2xxk; Sun, 14 Aug 2022 16:28:57 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4M5NCD5WLrz2xK6 for ; Sun, 14 Aug 2022 16:28:56 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4M5NCC6Zr6zlc; Sun, 14 Aug 2022 16:28:55 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1660494536; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=rn9cwwj1o2ZDDAwA3/j2rVCZyot8T7oTAPDRsT7wjgE=; b=sDWtrNdNENiY81lWeLrV5Mj0Z70xZgIx4OmydhAEwvSRS6Ma7/LsSybpLnlurObIe7th7h Un9aj+hDzGaw4iDQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1660494536; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=rn9cwwj1o2ZDDAwA3/j2rVCZyot8T7oTAPDRsT7wjgE=; b=HrX2iCTquteNJhf+F1lOiTkJMRZvL8TR8VhAxmlxJyCAq/qcysnECnjZ737inyM3uGzQHR q1k/4cjUZk6o6+J+lhcqoHpMtbW5phV3ga9EnBZWc5saVxNU4XjoU1SfN/iThV6tXa57uc hox3/N+/SAuqRl6oKWAr6QYaBDQ+saCX+fVGxyFG7P+8wBhEjMquKIOt9A7mGzIZNMgaUb xamA2q78d+68HmqgpqH80sa3aXPeMVnFy1Eezbn2I/hNzxXsAaIXjXlf3dmLZVXxVCXOvQ sccLGaiZLSSsTRzQ9VvLHMUQZkSmm+AtZhzmHrVE18xb+CeEpnqmWJeILGATaw== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] index.cgi: Show deprecation warning for armv6l Date: Sun, 14 Aug 2022 16:28:49 +0000 Message-Id: <20220814162849.1786477-1-michael.tremer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Tremer Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Signed-off-by: Michael Tremer Reviewed-by: Peter Müller --- html/cgi-bin/index.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/cgi-bin/index.cgi b/html/cgi-bin/index.cgi index 6fecae1ff..5c384fd49 100644 --- a/html/cgi-bin/index.cgi +++ b/html/cgi-bin/index.cgi @@ -543,7 +543,7 @@ if ( ! -e "/var/ipfire/main/send_profile") { # EOL architecture my ($sysname, $nodename, $release, $version, $machine) = &POSIX::uname(); -if ($machine =~ m/^i.86$/) { +if ($machine =~ m/^arm/) { $warnmessage .= "
  • $Lang::tr{'eol architecture warning'}
  • "; }