aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2020-03-31 20:47:06 -0700
committerMatt Turner <mattst88@gentoo.org>2020-03-31 21:21:03 -0700
commit46322490b543105aa561933d678368082ccc096d (patch)
treee74397e902ea16e627f9280dfd7d22da932e41f2
parenttargets: Remove gentoo-config (diff)
downloadcatalyst-46322490.tar.gz
catalyst-46322490.tar.bz2
catalyst-46322490.zip
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@gentoo.org>
-rwxr-xr-xtargets/support/netboot2-final.sh2
1 files changed, 1 insertions, 1 deletions
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)