aboutsummaryrefslogtreecommitdiffstats
path: root/virtme-mkinitramfs
blob: 3e0673279380ec5d42b12bd39a60a9fb5dfd4461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python3
# -*- mode: python -*-
# virtme-mkinitramfs: Generate an initramfs image for virtme
# Copyright © 2019 Marcos Paulo de Souza
# Licensed under the GPLv2, which is available in the virtme distribution
# as a file called LICENSE with SHA-256 hash:
# 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643

import sys
if sys.version_info < (3,3):
    print('virtme requires Python 3.3 or higher')
    sys.exit(1)

from virtme.commands import mkinitramfs
exit(mkinitramfs.main())