diff options
-rw-r--r-- | meta/classes/grub-efi.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/grub-efi.bbclass b/meta/classes/grub-efi.bbclass index 178d0c8350..26ba8cefcb 100644 --- a/meta/classes/grub-efi.bbclass +++ b/meta/classes/grub-efi.bbclass | |||
@@ -146,7 +146,8 @@ python build_efi_cfg() { | |||
146 | 146 | ||
147 | if append: | 147 | if append: |
148 | append = replace_rootfs_uuid(d, append) | 148 | append = replace_rootfs_uuid(d, append) |
149 | cfgfile.write('%s' % (append)) | 149 | cfgfile.write(' %s' % (append)) |
150 | |||
150 | cfgfile.write(' %s' % btype[1]) | 151 | cfgfile.write(' %s' % btype[1]) |
151 | cfgfile.write('\n') | 152 | cfgfile.write('\n') |
152 | 153 | ||