mirror of
https://git.yoctoproject.org/poky
synced 2026-09-13 00:49:33 +02:00
Quoting fixes
We have various variables which are either not quoted at all or are half quoted. This patch fixes the bad exmaples so everything is consistent. (From OE-Core rev: 30253358f5e76fb7b25be27198b4c125e0dbdf2c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -387,7 +387,7 @@ IMAGE_LINK_NAME = "${IMAGE_BASENAME}-${MACHINE}"
|
||||
|
||||
# This option allows for a percentage overage of the actual image size rather than a
|
||||
# fixed extra space, this is space needed for initial startup and basic operations.
|
||||
IMAGE_OVERHEAD_FACTOR ?= 1.3
|
||||
IMAGE_OVERHEAD_FACTOR ?= "1.3"
|
||||
# This option allow for adding addition space in K above and beyond what the
|
||||
# IMAGE_OVERHEAD_FACTOR might add. This space is for additional packages, user data, ...
|
||||
# To set a fixed size then overrideing IMAGE_ROOTFS_SIZE with the max size one wants
|
||||
|
||||
@@ -9,7 +9,7 @@ BBFILE_PATTERN_normal := "^${LAYERDIR}/"
|
||||
BBFILE_PRIORITY_normal = "5"
|
||||
|
||||
# Set a variable to get to the top of the metadata location
|
||||
COREBASE := ${@os.path.normpath("${LAYERDIR}/../")}
|
||||
COREBASE := '${@os.path.normpath("${LAYERDIR}/../")}'
|
||||
|
||||
# Add scripts to PATH
|
||||
PATH := "${PATH}:${COREBASE}/scripts"
|
||||
|
||||
Reference in New Issue
Block a user