-
Notifications
You must be signed in to change notification settings - Fork 54
append: fix _append rules where there is no whitespace after " #180
Conversation
"git grep '_append.*=\ \"[^ \\]' meta-refkit*" reports no findings. Signed-off-by: Tuomas Katila <tuomas.katila@intel.com>
|
|
||
| # Enable emergency shell in initramfs-framework. | ||
| APPEND_append = "${@ ' init_fatal_sh' if (d.getVar('IMAGE_MODE') or '') == 'development' else ''}" | ||
| APPEND_append = " ${@ ' init_fatal_sh' if (d.getVar('IMAGE_MODE') or '') == 'development' else ''}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not a bug... the space is becore init_fatal_sh.
|
|
||
| # Enable/disable IMA also in per-image boot parameters. | ||
| APPEND_append = "${@bb.utils.contains('IMAGE_FEATURES', 'ima', ' rootflags=i_version', ' no-ima', d)}" | ||
| APPEND_append = " ${@bb.utils.contains('IMAGE_FEATURES', 'ima', ' rootflags=i_version', ' no-ima', d)}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a bug.
| # The Edison BSP does not support APPEND, some other solution is needed | ||
| # for that machine. | ||
| APPEND_append = "${@bb.utils.contains('IMAGE_FEATURES', 'smack', '', ' security=none', d)}" | ||
| APPEND_append = " ${@bb.utils.contains('IMAGE_FEATURES', 'smack', '', ' security=none', d)}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a bug. Do we have smack anyway? And what is this talk about Edison BSP?
| # Activate support for updating EFI system partition when using | ||
| # both meta-swupd and the EFI kernel+initramfs combo. | ||
| IMAGE_INSTALL_append = "${@ ' efi-combo-trigger' if oe.types.boolean(d.getVar('REFKIT_USE_DSK_IMAGES') or '0') else '' }" | ||
| IMAGE_INSTALL_append = " ${@ ' efi-combo-trigger' if oe.types.boolean(d.getVar('REFKIT_USE_DSK_IMAGES') or '0') else '' }" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a bug.
| # default for all packages), then we can use ROOTFS_POSTINSTALL_COMMAND | ||
| # again. | ||
| ROOTFS_POSTUNINSTALL_COMMAND_append = "stateless_mangle_rootfs;" | ||
| ROOTFS_POSTUNINSTALL_COMMAND_append = " stateless_mangle_rootfs;" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Likely not a bug, since the list appears to be separated by ;.
| require recipes-core/ovmf/ovmf-shell-image.bb | ||
|
|
||
| WKS_SEARCH_PATH_append = ":${COREBASE}/meta/recipes-core/ovmf" | ||
| WKS_SEARCH_PATH_append = " :${COREBASE}/meta/recipes-core/ovmf" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a bug -- PATH items are separated by :.
"git grep '_append.=\ "[^ \\]' meta-refkit" reports no findings.
Signed-off-by: Tuomas Katila tuomas.katila@intel.com