From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ADAE7138350 for ; Wed, 1 Apr 2020 04:22:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D480AE0AC5; Wed, 1 Apr 2020 04:22:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A3718E0ABA for ; Wed, 1 Apr 2020 04:22:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3827B34F4F2 for ; Wed, 1 Apr 2020 04:22:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E24ED1B1 for ; Wed, 1 Apr 2020 04:22:20 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1585714863.46322490b543105aa561933d678368082ccc096d.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/netboot2-final.sh X-VCS-Directories: targets/support/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 46322490b543105aa561933d678368082ccc096d X-VCS-Branch: master Date: Wed, 1 Apr 2020 04:22:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2e55079a-d986-4dae-bd25-670b0bcd0b49 X-Archives-Hash: 5700844c6aa9a4c82853ae53991d4069 commit: 46322490b543105aa561933d678368082ccc096d Author: Matt Turner gentoo org> AuthorDate: Wed Apr 1 03:47:06 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Apr 1 04:21:03 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=46322490 targets: Fix expected System.map name This fixes a regression that broke netboot2 on SPARC. Fixes: 23cd0ed7dc8a (netboot2.sh: Fix missing slashes in paths) Signed-off-by: Matt Turner gentoo.org> targets/support/netboot2-final.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/support/netboot2-final.sh b/targets/support/netboot2-final.sh index 28b0d005..52b85f05 100755 --- a/targets/support/netboot2-final.sh +++ b/targets/support/netboot2-final.sh @@ -50,7 +50,7 @@ case ${clst_hostarch} in fi for x in ${clst_boot_kernel}; do elftoaout ${clst_target_path}/kernels/${x} -o ${clst_target_path}/${x}-a.out - ${piggyback} ${clst_target_path}/${x}-a.out ${clst_target_path}/kernels/misc/System.map-${x} ${clst_target_path}/kernels/misc/${x}.igz + ${piggyback} ${clst_target_path}/${x}-a.out ${clst_target_path}/kernels/misc/System-${x}.map ${clst_target_path}/kernels/misc/${x}.igz done ;; ia64)