diff options
| author | Peter Seebach <peter.seebach@windriver.com> | 2012-08-27 13:32:30 -0500 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-29 16:02:10 -0700 |
| commit | 92e40ec8599d567f3907837c616b83e089c2b544 (patch) | |
| tree | 4e0173fa06524583fd17ca26aa042ce6a1bc0c9b /scripts | |
| parent | c0aa58f4611d0a9e3cc41c09770f536b3ed6eb66 (diff) | |
| download | poky-92e40ec8599d567f3907837c616b83e089c2b544.tar.gz | |
runqemu-export-rootfs and friends: don't put pseudo db in target fs
In a few places, we have scripts which use <rootfs>/var/pseudo for
the pseudo state directory controlling a given filesystem. This
seems possibly risky because it means that stuff running under
qemu or whatnot could wipe out the data being used to handle that
rootfs. Move this to:
<rootfs>/../$(basename_rootfs).pseudo_state
to avoid problems.
This also solves at least one case (not directly hit by yocto's
tree) wherein you could end up trying to remove a rootfs while
pseudo was using a database inside that rootfs, and thus the
remove would fail.
(From OE-Core rev: aa5d6bd006d3b4eede21d8987451876ed3385ab8)
Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/runqemu-export-rootfs | 2 | ||||
| -rwxr-xr-x | scripts/runqemu-extract-sdk | 15 |
2 files changed, 10 insertions, 7 deletions
diff --git a/scripts/runqemu-export-rootfs b/scripts/runqemu-export-rootfs index f8213ba4ef..3c77dd74cd 100755 --- a/scripts/runqemu-export-rootfs +++ b/scripts/runqemu-export-rootfs | |||
| @@ -68,7 +68,7 @@ NFSPID=~/.runqemu-sdk/nfs$NFS_INSTANCE.pid | |||
| 68 | MOUNTPID=~/.runqemu-sdk/mount$NFS_INSTANCE.pid | 68 | MOUNTPID=~/.runqemu-sdk/mount$NFS_INSTANCE.pid |
| 69 | 69 | ||
| 70 | PSEUDO_OPTS="-P $OECORE_NATIVE_SYSROOT/usr" | 70 | PSEUDO_OPTS="-P $OECORE_NATIVE_SYSROOT/usr" |
| 71 | PSEUDO_LOCALSTATEDIR="$NFS_EXPORT_DIR/var/pseudo" | 71 | PSEUDO_LOCALSTATEDIR="$NFS_EXPORT_DIR/../$(basename $NFS_EXPORT_DIR).pseudo_state" |
| 72 | export PSEUDO_LOCALSTATEDIR | 72 | export PSEUDO_LOCALSTATEDIR |
| 73 | 73 | ||
| 74 | if [ ! -d "$PSEUDO_LOCALSTATEDIR" ]; then | 74 | if [ ! -d "$PSEUDO_LOCALSTATEDIR" ]; then |
diff --git a/scripts/runqemu-extract-sdk b/scripts/runqemu-extract-sdk index 4b5247597f..509af66216 100755 --- a/scripts/runqemu-extract-sdk +++ b/scripts/runqemu-extract-sdk | |||
| @@ -73,15 +73,18 @@ if [ ! -d "$SDK_ROOTFS_DIR" ]; then | |||
| 73 | mkdir -p "$SDK_ROOTFS_DIR" | 73 | mkdir -p "$SDK_ROOTFS_DIR" |
| 74 | fi | 74 | fi |
| 75 | 75 | ||
| 76 | if [ -e "$SDK_ROOTFS_DIR/var/pseudo" ]; then | 76 | pseudo_state_dir="$SDK_ROOTFS_DIR/../$(basename "$SDK_ROOTFS_DIR").pseudo_state" |
| 77 | echo "Error: $SDK_ROOTFS_DIR/var/pseudo already exists!" | 77 | |
| 78 | echo "Please delete the entire rootfs tree manually if this is really what you want" | 78 | if [ -e "$pseudo_state_dir" ]; then |
| 79 | echo "Error: $pseudo_state_dir already exists!" | ||
| 80 | echo "Please delete the rootfs tree and pseudo directory manually" | ||
| 81 | echo "if this is really what you want." | ||
| 79 | exit 1 | 82 | exit 1 |
| 80 | fi | 83 | fi |
| 81 | 84 | ||
| 82 | mkdir -p "$SDK_ROOTFS_DIR/var/pseudo" | 85 | mkdir -p "$pseudo_state_dir" |
| 83 | touch "$SDK_ROOTFS_DIR/var/pseudo/pseudo.pid" | 86 | touch "$pseudo_state_dir/pseudo.pid" |
| 84 | PSEUDO_LOCALSTATEDIR="$SDK_ROOTFS_DIR/var/pseudo" | 87 | PSEUDO_LOCALSTATEDIR="$pseudo_state_dir" |
| 85 | export PSEUDO_LOCALSTATEDIR | 88 | export PSEUDO_LOCALSTATEDIR |
| 86 | 89 | ||
| 87 | echo "Extracting rootfs tarball using pseudo..." | 90 | echo "Extracting rootfs tarball using pseudo..." |
