From: Claudius Heine Date: Thu, 10 Mar 2022 13:13:28 +0000 (+0100) Subject: files: overlayfs-etc: wrap long lines of preinit file X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=2e116bbc1afbc571b99f2605839e3c90839471be;p=openembedded-core.git files: overlayfs-etc: wrap long lines of preinit file Make it easier to see what is happening by wrapping the overly long lines in the preinit file for the overlayfs-etc. Signed-off-by: Claudius Heine Signed-off-by: Richard Purdie --- diff --git a/meta/files/overlayfs-etc-preinit.sh.in b/meta/files/overlayfs-etc-preinit.sh.in index 2ebb6c9224..e5f5001a05 100644 --- a/meta/files/overlayfs-etc-preinit.sh.in +++ b/meta/files/overlayfs-etc-preinit.sh.in @@ -16,11 +16,18 @@ mount -t sysfs sysfs /sys [ -z "$CONSOLE" ] && CONSOLE="/dev/console" mkdir -p {OVERLAYFS_ETC_MOUNT_POINT} -if mount -n -t {OVERLAYFS_ETC_FSTYPE} -o {OVERLAYFS_ETC_MOUNT_OPTIONS} {OVERLAYFS_ETC_DEVICE} {OVERLAYFS_ETC_MOUNT_POINT} +if mount -n -t {OVERLAYFS_ETC_FSTYPE} \ + -o {OVERLAYFS_ETC_MOUNT_OPTIONS} \ + {OVERLAYFS_ETC_DEVICE} {OVERLAYFS_ETC_MOUNT_POINT} then mkdir -p {OVERLAYFS_ETC_MOUNT_POINT}/overlay-etc/upper mkdir -p {OVERLAYFS_ETC_MOUNT_POINT}/overlay-etc/work - mount -n -t overlay -o upperdir={OVERLAYFS_ETC_MOUNT_POINT}/overlay-etc/upper,lowerdir=/etc,workdir={OVERLAYFS_ETC_MOUNT_POINT}/overlay-etc/work {OVERLAYFS_ETC_MOUNT_POINT}/overlay-etc/upper /etc || echo "PREINIT: Mounting etc-overlay failed!" + mount -n -t overlay \ + -o upperdir={OVERLAYFS_ETC_MOUNT_POINT}/overlay-etc/upper \ + -o lowerdir=/etc \ + -o workdir={OVERLAYFS_ETC_MOUNT_POINT}/overlay-etc/work \ + {OVERLAYFS_ETC_MOUNT_POINT}/overlay-etc/upper /etc || \ + echo "PREINIT: Mounting etc-overlay failed!" else echo "PREINIT: Mounting failed!" fi