bundlewrap/bundles/raspberrypi/metadata.py
Franzi 58d99eb402
All checks were successful
bundlewrap/pipeline/head This commit looks good
bundles/systemd: configure journald
2020-12-12 10:39:57 +01:00

31 lines
690 B
Python

defaults = {
'apt': {
'packages': {
'dphys-swapfile': {
'installed': False,
},
},
},
'raspberrypi': {
'default-target': 'multi-user.target',
'cmdline': {
'console=tty1',
'root=/dev/mmcblk0p2',
'rootfstype=ext4',
'elevator=deadline',
'fsck.repair=yes',
'rootwait',
'quiet',
'plymouth.ignore-serial-consoles',
'net.ifnames=0',
},
},
'systemd': {
'journal': {
'storage': 'volatile',
'maxuse': '100M',
'keepfree': '100M',
},
},
}