bundlewrap/bundles/systemd-boot/files/entry

14 lines
258 B
Plaintext
Raw Normal View History

2022-02-13 08:24:11 +00:00
title ${config['title']}
% if 'linux' in config:
linux ${config['linux']}
% for line in config['initrd']:
initrd ${line}
% endfor
% if config.get('options', set()):
options ${' '.join(sorted(config['options']))}
% endif
% else:
efi ${config['efi']}
% endif