From fb6fa99c0da96a45d458b2ffa0b9b2fe8890ac36 Mon Sep 17 00:00:00 2001 From: VG Date: Sun, 6 Nov 2016 17:32:20 +0100 Subject: move to a subdir since this repo will have other debootstrap scripts --- qemu-headless/extract-kernel.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 qemu-headless/extract-kernel.py (limited to 'qemu-headless/extract-kernel.py') diff --git a/qemu-headless/extract-kernel.py b/qemu-headless/extract-kernel.py new file mode 100755 index 0000000..71dde88 --- /dev/null +++ b/qemu-headless/extract-kernel.py @@ -0,0 +1,30 @@ +#!/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']) -- cgit v1.2.3