commit: 46322490b543105aa561933d678368082ccc096d
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 1 03:47:06 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> 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 <mattst88 <AT> 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)