Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1417650
| From | Nikolay Borisov <n.borisov.lkml@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] scripts/gdb: Perform path expansion to lx-symbol's arguments |
| Date | 2016-06-08 18:30 +0200 |
| Message-ID | <rHOwG-2ud-19@gated-at.bofh.it> (permalink) |
| References | <rHIUi-7mg-15@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Python doesn't do automatic expansion of paths. In case one passes
path of the from ~/foo/bar the gdb scripts won't automatically expand
that and as a result the symbols files won't be loaded. Fix this
by explicitly expanding all paths which begin with "~"
Signed-off-by: Nikolay Borisov <n.borisov.lkml@gmail.com>
---
scripts/gdb/linux/symbols.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/gdb/linux/symbols.py b/scripts/gdb/linux/symbols.py
index 9a0f8923f67c..004b0ac7fa72 100644
--- a/scripts/gdb/linux/symbols.py
+++ b/scripts/gdb/linux/symbols.py
@@ -153,7 +153,7 @@ lx-symbols command."""
saved_state['breakpoint'].enabled = saved_state['enabled']
def invoke(self, arg, from_tty):
- self.module_paths = arg.split()
+ self.module_paths = [os.path.expanduser(p) for p in arg.split()]
self.module_paths.append(os.getcwd())
# enforce update
--
2.7.4
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH] scripts/gdb: Add automatic path expansion when loading modules Nikolay Borisov <n.borisov.lkml@gmail.com> - 2016-06-07 23:30 +0200
Re: [PATCH] scripts/gdb: Add automatic path expansion when loading modules Jan Kiszka <jan.kiszka@siemens.com> - 2016-06-08 11:40 +0200
Re: [PATCH] scripts/gdb: Add automatic path expansion when loading modules Nikolay Borisov <n.borisov.lkml@gmail.com> - 2016-06-08 12:10 +0200
Re: [PATCH] scripts/gdb: Add automatic path expansion when loading modules Jan Kiszka <jan.kiszka@siemens.com> - 2016-06-08 12:30 +0200
[PATCH] scripts/gdb: Perform path expansion to lx-symbol's arguments Nikolay Borisov <n.borisov.lkml@gmail.com> - 2016-06-08 18:30 +0200
csiph-web