bundles/raspberrypi: do not set empty default for config.txt
This commit is contained in:
parent
c953d138ee
commit
a955a7b84d
2 changed files with 1 additions and 2 deletions
|
@ -11,6 +11,6 @@ force_turbo=1
|
|||
arm_64bit=1
|
||||
% endif
|
||||
|
||||
% for item in sorted(node.metadata['raspberrypi']['config.txt']):
|
||||
% for item in sorted(node.metadata['raspberrypi'].get('config.txt', set())):
|
||||
${item}
|
||||
% endfor
|
||||
|
|
|
@ -18,6 +18,5 @@ defaults = {
|
|||
'quiet',
|
||||
'plymouth.ignore-serial-consoles',
|
||||
},
|
||||
'config.txt': {},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue