bundlewrap/bundles/raspberrypi/metadata.py

40 lines
934 B
Python
Raw Permalink Normal View History

2020-09-27 14:46:26 +00:00
defaults = {
'apt': {
'packages': {
'dhcpcd5': {
'installed': False,
},
'dphys-swapfile': {
'installed': False,
},
'isc-dhcp-client': {
'installed': False,
},
'isc-dhcp-common': {
'installed': False,
},
},
},
2020-09-27 14:46:26 +00:00
'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',
2020-09-27 14:46:26 +00:00
},
},
2020-12-12 09:39:57 +00:00
'systemd': {
'journal': {
'storage': 'volatile',
'maxuse': '100M',
'keepfree': '100M',
},
},
2020-09-27 14:46:26 +00:00
}