Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/
Date: Wed, 01 Apr 2020 04:22:25
Message-Id: 1585714863.46322490b543105aa561933d678368082ccc096d.mattst88@gentoo
1 commit: 46322490b543105aa561933d678368082ccc096d
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 1 03:47:06 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 1 04:21:03 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=46322490
7
8 targets: Fix expected System.map name
9
10 This fixes a regression that broke netboot2 on SPARC.
11
12 Fixes: 23cd0ed7dc8a (netboot2.sh: Fix missing slashes in paths)
13 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
14
15 targets/support/netboot2-final.sh | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/targets/support/netboot2-final.sh b/targets/support/netboot2-final.sh
19 index 28b0d005..52b85f05 100755
20 --- a/targets/support/netboot2-final.sh
21 +++ b/targets/support/netboot2-final.sh
22 @@ -50,7 +50,7 @@ case ${clst_hostarch} in
23 fi
24 for x in ${clst_boot_kernel}; do
25 elftoaout ${clst_target_path}/kernels/${x} -o ${clst_target_path}/${x}-a.out
26 - ${piggyback} ${clst_target_path}/${x}-a.out ${clst_target_path}/kernels/misc/System.map-${x} ${clst_target_path}/kernels/misc/${x}.igz
27 + ${piggyback} ${clst_target_path}/${x}-a.out ${clst_target_path}/kernels/misc/System-${x}.map ${clst_target_path}/kernels/misc/${x}.igz
28 done
29 ;;
30 ia64)