blob: db05da25f2999bdf46e14e2a6b76b2c792b1f09c [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#!/bin/bash
2#
3# This utility extracts an SDK image tarball using pseudo, and stores
4# the pseudo database in var/pseudo within the rootfs. If you want to
5# boot QEMU using an nfsroot, you *must* use this script to create the
6# rootfs to ensure it is done correctly with pseudo.
7#
8# Copyright (c) 2010 Intel Corp.
9#
Brad Bishopc342db32019-05-15 21:57:59 -040010# SPDX-License-Identifier: GPL-2.0-only
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011#
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012
13function usage() {
14 echo "Usage: $0 <image-tarball> <extract-dir>"
15}
16
17if [ $# -ne 2 ]; then
18 usage
19 exit 1
20fi
21
22SYSROOT_SETUP_SCRIPT=`which oe-find-native-sysroot 2> /dev/null`
23if [ -z "$SYSROOT_SETUP_SCRIPT" ]; then
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080024 echo "Error: Unable to find the oe-find-native-sysroot script"
25 echo "Did you forget to source your build system environment setup script?"
26 exit 1
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027fi
Andrew Geissler517393d2023-01-13 08:55:19 -060028. $SYSROOT_SETUP_SCRIPT qemu-helper-native
Patrick Williamsc124f4f2015-09-15 14:41:29 -050029PSEUDO_OPTS="-P $OECORE_NATIVE_SYSROOT/usr"
30
31ROOTFS_TARBALL=$1
32SDK_ROOTFS_DIR=$2
33
34if [ ! -e "$ROOTFS_TARBALL" ]; then
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080035 echo "Error: sdk tarball '$ROOTFS_TARBALL' does not exist"
36 usage
37 exit 1
Patrick Williamsc124f4f2015-09-15 14:41:29 -050038fi
39
40# Convert SDK_ROOTFS_DIR to a full pathname
41if [[ ${SDK_ROOTFS_DIR:0:1} != "/" ]]; then
42 SDK_ROOTFS_DIR=$(readlink -f $(pwd)/$SDK_ROOTFS_DIR)
43fi
44
45TAR_OPTS=""
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080046if [[ "$ROOTFS_TARBALL" =~ tar\.xz$ ]]; then
47 TAR_OPTS="--numeric-owner -xJf"
48fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -050049if [[ "$ROOTFS_TARBALL" =~ tar\.bz2$ ]]; then
50 TAR_OPTS="--numeric-owner -xjf"
51fi
52if [[ "$ROOTFS_TARBALL" =~ tar\.gz$ ]]; then
53 TAR_OPTS="--numeric-owner -xzf"
54fi
55if [[ "$ROOTFS_TARBALL" =~ \.tar$ ]]; then
56 TAR_OPTS="--numeric-owner -xf"
57fi
58if [ -z "$TAR_OPTS" ]; then
59 echo "Error: Unable to determine sdk tarball format"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080060 echo "Accepted types: .tar / .tar.gz / .tar.bz2 / .tar.xz"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050061 exit 1
62fi
63
64if [ ! -d "$SDK_ROOTFS_DIR" ]; then
65 echo "Creating directory $SDK_ROOTFS_DIR"
66 mkdir -p "$SDK_ROOTFS_DIR"
67fi
68
69pseudo_state_dir="$SDK_ROOTFS_DIR/../$(basename "$SDK_ROOTFS_DIR").pseudo_state"
70pseudo_state_dir="$(readlink -f $pseudo_state_dir)"
71
Andrew Geissler82c905d2020-04-13 13:39:40 -050072debug_image="`echo $ROOTFS_TARBALL | grep '\-dbg\.rootfs\.tar'`"
Brad Bishopd5ae7d92018-06-14 09:52:03 -070073
74if [ -e "$pseudo_state_dir" -a -z "$debug_image" ]; then
Patrick Williamsc124f4f2015-09-15 14:41:29 -050075 echo "Error: $pseudo_state_dir already exists!"
76 echo "Please delete the rootfs tree and pseudo directory manually"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080077 echo "if this is really what you want."
Patrick Williamsc124f4f2015-09-15 14:41:29 -050078 exit 1
79fi
80
81mkdir -p "$pseudo_state_dir"
82touch "$pseudo_state_dir/pseudo.pid"
83PSEUDO_LOCALSTATEDIR="$pseudo_state_dir"
84export PSEUDO_LOCALSTATEDIR
85
86echo "Extracting rootfs tarball using pseudo..."
87echo "$PSEUDO $PSEUDO_OPTS tar -C \"$SDK_ROOTFS_DIR\" $TAR_OPTS \"$ROOTFS_TARBALL\""
88$PSEUDO $PSEUDO_OPTS tar -C "$SDK_ROOTFS_DIR" $TAR_OPTS "$ROOTFS_TARBALL"
89
90DIRCHECK=`ls -l "$SDK_ROOTFS_DIR" | wc -l`
91if [ "$DIRCHECK" -lt 5 ]; then
92 echo "Warning: I don't see many files in $SDK_ROOTFS_DIR"
93 echo "Please double-check the extraction worked as intended"
94 exit 0
95fi
96
97echo "SDK image successfully extracted to $SDK_ROOTFS_DIR"
98
99exit 0