2015-02-18 00:46:36 +03:00
|
|
|
#
|
|
|
|
# gdb helper commands and functions for Linux kernel debugging
|
|
|
|
#
|
|
|
|
# loader module
|
|
|
|
#
|
|
|
|
# Copyright (c) Siemens AG, 2012, 2013
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Jan Kiszka <jan.kiszka@siemens.com>
|
|
|
|
#
|
|
|
|
# This work is licensed under the terms of the GNU GPL version 2.
|
|
|
|
#
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
sys.path.insert(0, os.path.dirname(__file__) + "/scripts/gdb")
|
|
|
|
|
|
|
|
try:
|
|
|
|
gdb.parse_and_eval("0")
|
|
|
|
gdb.execute("", to_string=True)
|
|
|
|
except:
|
|
|
|
gdb.write("NOTE: gdb 7.2 or later required for Linux helper scripts to "
|
|
|
|
"work.\n")
|
2015-02-18 00:46:41 +03:00
|
|
|
else:
|
|
|
|
import linux.utils
|
2015-02-18 00:46:47 +03:00
|
|
|
import linux.symbols
|
2015-02-18 00:46:55 +03:00
|
|
|
import linux.modules
|
2015-02-18 00:47:04 +03:00
|
|
|
import linux.dmesg
|
2015-02-18 00:47:10 +03:00
|
|
|
import linux.tasks
|
2019-05-15 01:45:53 +03:00
|
|
|
import linux.config
|
2015-02-18 00:47:21 +03:00
|
|
|
import linux.cpus
|
2015-07-01 00:58:07 +03:00
|
|
|
import linux.lists
|
2019-05-15 01:45:56 +03:00
|
|
|
import linux.rbtree
|
2016-03-23 00:27:33 +03:00
|
|
|
import linux.proc
|
2016-05-24 02:24:40 +03:00
|
|
|
import linux.constants
|
2019-05-15 01:45:59 +03:00
|
|
|
import linux.timerlist
|
2019-05-15 01:46:08 +03:00
|
|
|
import linux.clk
|
2019-07-17 02:30:12 +03:00
|
|
|
import linux.genpd
|
2019-07-17 02:30:15 +03:00
|
|
|
import linux.device
|