This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Author: Jan C Peters | |
| # | |
| # Description: | |
| # Creates a unified kernel image for systemd-boot (which | |
| # is assumed to be installed already) and places it in the | |
| # appropriate folder in the ESP for systemd-boot to find it. | |
| # The commandline for it is taken from the file | |
| # /etc/kernel/cmdline, which is also used by kernel-install. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 | |
| from argparse import ArgumentParser | |
| import xml.etree.ElementTree as ET | |
| from time import time | |
| # external lib | |
| import vobject | |
| type_dict = { |