aboutsummaryrefslogtreecommitdiffstats
path: root/extract-kernel.py
diff options
context:
space:
mode:
authorVG <vg@devys.org>2016-11-06 17:32:20 +0100
committerVG <vg@devys.org>2016-11-06 17:32:20 +0100
commitfb6fa99c0da96a45d458b2ffa0b9b2fe8890ac36 (patch)
tree9d8e9346cf193b9115e6d4f98fbbfb2acc412226 /extract-kernel.py
parent4f11597d495853c4ef8d10d9cadd13c231b2bec3 (diff)
downloaddebootstrap-scripts-fb6fa99c0da96a45d458b2ffa0b9b2fe8890ac36.tar.gz
debootstrap-scripts-fb6fa99c0da96a45d458b2ffa0b9b2fe8890ac36.tar.bz2
debootstrap-scripts-fb6fa99c0da96a45d458b2ffa0b9b2fe8890ac36.zip
move to a subdir since this repo will have other debootstrap scripts
Diffstat (limited to 'extract-kernel.py')
-rwxr-xr-xextract-kernel.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/extract-kernel.py b/extract-kernel.py
deleted file mode 100755
index 71dde88..0000000
--- a/extract-kernel.py
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/python3
-
-
-import os
-import shutil
-import subprocess
-import sys
-
-def get_vmlinuz_path():
- return os.path.join('mnt', os.readlink('mnt/vmlinuz').lstrip('/'))
-
-def get_initrd_path():
- return os.path.join('mnt', os.readlink('mnt/initrd.img').lstrip('/'))
-
-if not os.path.exists('mnt'):
- os.mkdir('mnt')
-
-subprocess.run([
- 'guestmount',
- '-a', 'unstable-armhf.qcow2',
- '-m', '/dev/sda1',
- '--ro',
- 'mnt'])
-print(get_vmlinuz_path())
-print(get_initrd_path())
-
-shutil.copyfile(get_vmlinuz_path(), 'vmlinuz', follow_symlinks=True)
-shutil.copyfile(get_initrd_path(), 'initrd.img', follow_symlinks=True)
-
-subprocess.run(['fusermount', '-u', 'mnt'])