diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2018-05-30 17:03:49 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-03 16:53:28 +0100 |
commit | c54147b286d72d7c4f8ca55a5a62f5d27bd5364a (patch) | |
tree | 36997a2f2e941cf8952aac0cb8ae6c69bca14974 /scripts | |
parent | f6d85426e48d458d0835d4fd3314ce53ab92bd38 (diff) | |
download | openembedded-core-contrib-c54147b286d72d7c4f8ca55a5a62f5d27bd5364a.tar.gz |
runqemu-extract-sdk: allow install debugfs on rootfs
Usually, the debugfs' (-dbg.tar.*) work follow is:
1) Install regular rootfs to dir_foo
2) Install debugfs (-dbg.tar.*) to the same dir_foo
So we need to allow installing the debugfs on top of the rootfs.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/runqemu-extract-sdk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/runqemu-extract-sdk b/scripts/runqemu-extract-sdk index 2a0dd50e0e4..f4286efb1f7 100755 --- a/scripts/runqemu-extract-sdk +++ b/scripts/runqemu-extract-sdk @@ -76,7 +76,9 @@ fi pseudo_state_dir="$SDK_ROOTFS_DIR/../$(basename "$SDK_ROOTFS_DIR").pseudo_state" pseudo_state_dir="$(readlink -f $pseudo_state_dir)" -if [ -e "$pseudo_state_dir" ]; then +debug_image="`echo $ROOTFS_TARBALL | grep '\-dbg\.tar\.'`" + +if [ -e "$pseudo_state_dir" -a -z "$debug_image" ]; then echo "Error: $pseudo_state_dir already exists!" echo "Please delete the rootfs tree and pseudo directory manually" echo "if this is really what you want." |