summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2013-01-29 15:04:26 -0800
committerSaul Wold <sgw@linux.intel.com>2013-01-29 16:17:25 -0800
commit87017b554ef83f4e3be0fcde153a823ce183c169 (patch)
tree347010f5b7e307085255d9f21bee5455f403d86e
parent6930251f6c6316ee1fd9c00ff9d760dcf3e37285 (diff)
downloadpoky-87017b554ef83f4e3be0fcde153a823ce183c169.tar.gz
rootfs_rpm: Escape the backtick to ensure the ls runs on the target
This change ensures that the ls /etc/rpm-postinsts runs in the target at first boot time, rather than at the creation time of the script on the host. This was causing the following error in the rootfs log: + install -d /srv/ssd/sgw/machines/fri2/tmp/work/fri2-poky-linux/core-image-minimal/1.0-r0/rootfs//etc/rcS.d + i= + ls /etc/rpm-postinsts/ ls: cannot access /etc/rpm-postinsts/: No such file or directory (From OE-Core rev: e893cf0b3843701e80f5c9f47be04d1a88e5ed68) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/rootfs_rpm.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/rootfs_rpm.bbclass b/meta/classes/rootfs_rpm.bbclass
index accd7d9c3c..119bf92cd7 100644
--- a/meta/classes/rootfs_rpm.bbclass
+++ b/meta/classes/rootfs_rpm.bbclass
@@ -108,7 +108,7 @@ fakeroot rootfs_rpm_do_rootfs () {
108 i=\$i 108 i=\$i
109 cat > ${IMAGE_ROOTFS}${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}run-postinsts << EOF 109 cat > ${IMAGE_ROOTFS}${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}run-postinsts << EOF
110#!/bin/sh 110#!/bin/sh
111for i in `ls /etc/rpm-postinsts/`; do 111for i in \`ls /etc/rpm-postinsts/\`; do
112 i=/etc/rpm-postinsts/$i 112 i=/etc/rpm-postinsts/$i
113 echo "Running postinst $i..." 113 echo "Running postinst $i..."
114 if [ -f $i ] && $i; then 114 if [ -f $i ] && $i; then