From 397cd446bb358b8fa505a7c1699094ad500b6a26 Mon Sep 17 00:00:00 2001 From: Sam Tebbs Date: Mon, 11 May 2020 13:36:54 +0100 Subject: [PATCH] Write full symbol name to kernel symbol file --- makeiso.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makeiso.sh b/makeiso.sh index ed953b0..c137f74 100755 --- a/makeiso.sh +++ b/makeiso.sh @@ -25,7 +25,7 @@ cp -r grub $BOOT_DIR cp $PLUTO_ELF $BOOT_DIR/"pluto.elf" # Read the symbols from the binary, remove all the unnecessary columns with awk and emit to a map file -readelf -s $PLUTO_ELF | grep -F "FUNC" | awk '{$1=$3=$4=$5=$6=$7=""; print $0}' | sort -k 1 > $MAP_FILE +readelf -s --wide $PLUTO_ELF | grep -F "FUNC" | awk '{$1=$3=$4=$5=$6=$7=""; print $0}' | sort -k 1 > $MAP_FILE echo "" >> $MAP_FILE grub-mkrescue -o $OUTPUT_FILE $ISO_DIR