22 lines
508 B
Python
22 lines
508 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',
|
|
},
|
|
},
|
|
}
|