diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-05-12 12:32:33 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-05-31 13:56:46 +0200 |
commit | 6acc5c046905183d38e2f44fb0fe69001939d969 (patch) | |
tree | 85b8c520f31c030193b7e4eed5ad85ee7e372d97 /scripts | |
parent | c86274bc2e34295764fb44c2aef3cf29623f9b4b (diff) | |
download | qemu-6acc5c046905183d38e2f44fb0fe69001939d969.zip qemu-6acc5c046905183d38e2f44fb0fe69001939d969.tar.gz qemu-6acc5c046905183d38e2f44fb0fe69001939d969.tar.bz2 |
scripts/qemugdb: Remove shebang header
These scripts are loaded as plugin by GDB (and they don't
have any __main__ entry point). Remove the shebang header.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Acked-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: John Snow <jsnow@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Message-Id: <20200512103238.7078-2-philmd@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/qemugdb/__init__.py | 3 | ||||
-rw-r--r-- | scripts/qemugdb/aio.py | 3 | ||||
-rw-r--r-- | scripts/qemugdb/coroutine.py | 3 | ||||
-rw-r--r-- | scripts/qemugdb/mtree.py | 4 | ||||
-rw-r--r-- | scripts/qemugdb/tcg.py | 1 | ||||
-rw-r--r-- | scripts/qemugdb/timers.py | 1 |
6 files changed, 4 insertions, 11 deletions
diff --git a/scripts/qemugdb/__init__.py b/scripts/qemugdb/__init__.py index 969f552..da8ff61 100644 --- a/scripts/qemugdb/__init__.py +++ b/scripts/qemugdb/__init__.py @@ -1,5 +1,4 @@ -#!/usr/bin/python - +# # GDB debugging support # # Copyright (c) 2015 Linaro Ltd diff --git a/scripts/qemugdb/aio.py b/scripts/qemugdb/aio.py index 2ba00c4..d7c1ba0 100644 --- a/scripts/qemugdb/aio.py +++ b/scripts/qemugdb/aio.py @@ -1,5 +1,4 @@ -#!/usr/bin/python - +# # GDB debugging support: aio/iohandler debug # # Copyright (c) 2015 Red Hat, Inc. diff --git a/scripts/qemugdb/coroutine.py b/scripts/qemugdb/coroutine.py index 41e079d..db61389 100644 --- a/scripts/qemugdb/coroutine.py +++ b/scripts/qemugdb/coroutine.py @@ -1,5 +1,4 @@ -#!/usr/bin/python - +# # GDB debugging support # # Copyright 2012 Red Hat, Inc. and/or its affiliates diff --git a/scripts/qemugdb/mtree.py b/scripts/qemugdb/mtree.py index 3030a60..8fe42c3 100644 --- a/scripts/qemugdb/mtree.py +++ b/scripts/qemugdb/mtree.py @@ -1,5 +1,4 @@ -#!/usr/bin/python - +# # GDB debugging support # # Copyright 2012 Red Hat, Inc. and/or its affiliates @@ -84,4 +83,3 @@ class MtreeCommand(gdb.Command): while not isnull(subregion): self.print_item(subregion, addr, level) subregion = subregion['subregions_link']['tqe_next'] - diff --git a/scripts/qemugdb/tcg.py b/scripts/qemugdb/tcg.py index 18880fc..16c03c0 100644 --- a/scripts/qemugdb/tcg.py +++ b/scripts/qemugdb/tcg.py @@ -1,4 +1,3 @@ -#!/usr/bin/python # -*- coding: utf-8 -*- # # GDB debugging support, TCG status diff --git a/scripts/qemugdb/timers.py b/scripts/qemugdb/timers.py index f0e132d..46537b2 100644 --- a/scripts/qemugdb/timers.py +++ b/scripts/qemugdb/timers.py @@ -1,4 +1,3 @@ -#!/usr/bin/python # -*- coding: utf-8 -*- # GDB debugging support # |