aboutsummaryrefslogtreecommitdiff
path: root/external
diff options
context:
space:
mode:
Diffstat (limited to 'external')
-rw-r--r--external/mambo/mambo_utils.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/external/mambo/mambo_utils.tcl b/external/mambo/mambo_utils.tcl
index 837ae9b..1e3dea0 100644
--- a/external/mambo/mambo_utils.tcl
+++ b/external/mambo/mambo_utils.tcl
@@ -336,7 +336,7 @@ proc linsym { name } {
# create a regexp that matches the symbol name
set base {([[:xdigit:]]*) (.)}
- set exp [concat $base " $name"]
+ set exp [concat $base " $name\$"]
set ret ""
foreach {line addr type} [regexp -line -inline $exp $linux_symbol_map] {
@@ -352,7 +352,7 @@ proc skisym { name } {
global mconf
set base {([[:xdigit:]]*) (.)}
- set exp [concat $base " $name"]
+ set exp [concat $base " $name\$"]
set ret ""
foreach {line addr type} [regexp -line -inline $exp $skiboot_symbol_map] {