summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-01-08 21:26:50 +0000
committerThierry Vignaud <tv@mageia.org>2012-01-08 21:26:50 +0000
commit416724d23b6a1eb192e11a0ed75722c307f0f241 (patch)
tree3b2a8fa17d941a97dfdc76312b22ec585b523e55 /tools
parent87196fcf36ad1bb6363a4bb1634a483ef00e9c2b (diff)
downloaddrakx-backup-do-not-use-416724d23b6a1eb192e11a0ed75722c307f0f241.tar
drakx-backup-do-not-use-416724d23b6a1eb192e11a0ed75722c307f0f241.tar.gz
drakx-backup-do-not-use-416724d23b6a1eb192e11a0ed75722c307f0f241.tar.bz2
drakx-backup-do-not-use-416724d23b6a1eb192e11a0ed75722c307f0f241.tar.xz
drakx-backup-do-not-use-416724d23b6a1eb192e11a0ed75722c307f0f241.zip
add support for --gdb
Diffstat (limited to 'tools')
-rwxr-xr-xtools/drakx-in-chroot16
1 files changed, 15 insertions, 1 deletions
diff --git a/tools/drakx-in-chroot b/tools/drakx-in-chroot
index a4064ed5b..744b68096 100755
--- a/tools/drakx-in-chroot
+++ b/tools/drakx-in-chroot
@@ -29,6 +29,7 @@ my ($disk_iso_repository, $repository_uri);
";
(my $repository, my $dir, @ARGV) = @ARGV;
+my ($gdb);
foreach (@ARGV) {
if (/--resolution=(.*)/) {
$resolution = $1;
@@ -36,6 +37,8 @@ foreach (@ARGV) {
$disk_iso_repository = $1;
} elsif (/--repository=(.*)/) {
$repository_uri = $1;
+ } elsif (/--gdb/) {
+ $gdb = "gdb -q --args";
}
}
my ($repository_without_arch, $repository_arch) = basename($repository) eq arch() ? (dirname($repository), '/' . arch()) : ($repository, '');
@@ -137,7 +140,18 @@ if (my $pid = fork()) {
if_($disk_iso_repository, "--method disk-iso"),
if_($remote_repository, "--method $remote_repository"),
@ARGV);
- exec "$sudo chroot $SLASH_LOCATION $cmd" or die "exec $cmd in $SLASH_LOCATION failed\n";
+ if ($gdb) {
+ warn qq(GDB USAGE
+Beware that debug info won't be found so on segfault
+just generate a core dump with "gcore" and then
+analyze it offline.
+Thus you sessions will look like:
+(gdb) run
+(gdb) gcore
+(gdb) exit
+);
+ }
+ exec "$sudo $gdb chroot $SLASH_LOCATION $cmd" or die "exec $cmd in $SLASH_LOCATION failed\n";
}
sub system_verbose { warn join(' ', @_), "\n" if $verbose; system(@_) }