diff options
Diffstat (limited to 'scripts/runqemu-export-rootfs')
-rw-r--r-- | scripts/runqemu-export-rootfs | 186 |
1 files changed, 186 insertions, 0 deletions
diff --git a/scripts/runqemu-export-rootfs b/scripts/runqemu-export-rootfs new file mode 100644 index 0000000000..0076768d20 --- /dev/null +++ b/scripts/runqemu-export-rootfs | |||
@@ -0,0 +1,186 @@ | |||
1 | #!/bin/bash | ||
2 | # | ||
3 | # Copyright (c) 2005-2009 Wind River Systems, Inc. | ||
4 | # | ||
5 | # This program is free software; you can redistribute it and/or modify | ||
6 | # it under the terms of the GNU General Public License version 2 as | ||
7 | # published by the Free Software Foundation. | ||
8 | # | ||
9 | # This program is distributed in the hope that it will be useful, | ||
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
12 | # See the GNU General Public License for more details. | ||
13 | # | ||
14 | # You should have received a copy of the GNU General Public License | ||
15 | # along with this program; if not, write to the Free Software | ||
16 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
17 | |||
18 | usage() { | ||
19 | echo "Usage: $0 {start|stop|restart} <nfs-export-dir>" | ||
20 | } | ||
21 | |||
22 | if [ $# != 2 ]; then | ||
23 | usage | ||
24 | exit 1 | ||
25 | fi | ||
26 | |||
27 | if [[ "$1" != "start" && "$1" != "stop" && "$1" != "restart" ]]; then | ||
28 | echo "Unknown command '$1'" | ||
29 | usage | ||
30 | exit 1 | ||
31 | fi | ||
32 | |||
33 | if [ ! -d "$2" ]; then | ||
34 | echo "Error: '$2' does not exist" | ||
35 | usage | ||
36 | exit 1 | ||
37 | fi | ||
38 | # Ensure the nfs-export-dir is an absolute path | ||
39 | NFS_EXPORT_DIR=$(cd "$2" && pwd) | ||
40 | |||
41 | SYSROOT_SETUP_SCRIPT=`which oe-find-native-sysroot` | ||
42 | if [ -z "$SYSROOT_SETUP_SCRIPT" ]; then | ||
43 | echo "Error: Unable to find the oe-find-native-sysroot script" | ||
44 | echo "Did you forget to source your Poky environment script?" | ||
45 | exit 1 | ||
46 | fi | ||
47 | . $SYSROOT_SETUP_SCRIPT | ||
48 | |||
49 | if [ ! -e "$OECORE_NATIVE_SYSROOT/usr/sbin/rpc.mountd" ]; then | ||
50 | echo "Error: Unable to find rpc.mountd binary in $OECORE_NATIVE_SYSROOT/usr/sbin/" | ||
51 | |||
52 | if [ "x$POKY_DISTRO_VERSION" = "x" ]; then | ||
53 | echo "Have you run 'bitbake meta-ide-support'?" | ||
54 | else | ||
55 | echo "This shouldn't happen - something is missing from your toolchain installation" | ||
56 | fi | ||
57 | exit 1 | ||
58 | fi | ||
59 | |||
60 | if [ ! -d ~/.poky-sdk ]; then | ||
61 | mkdir -p ~/.poky-sdk | ||
62 | fi | ||
63 | |||
64 | NFS_INSTANCE=${NFS_INSTANCE:=0} | ||
65 | EXPORTS=~/.poky-sdk/exports$NFS_INSTANCE | ||
66 | RMTAB=~/.poky-sdk/rmtab$NFS_INSTANCE | ||
67 | NFSPID=~/.poky-sdk/nfs$NFS_INSTANCE.pid | ||
68 | MOUNTPID=~/.poky-sdk/mount$NFS_INSTANCE.pid | ||
69 | |||
70 | PSEUDO_OPTS="-P $OECORE_NATIVE_SYSROOT/usr" | ||
71 | PSEUDO_LOCALSTATEDIR="$NFS_EXPORT_DIR/var/pseudo" | ||
72 | export PSEUDO_LOCALSTATEDIR | ||
73 | |||
74 | if [ ! -d "$PSEUDO_LOCALSTATEDIR" ]; then | ||
75 | echo "Error: $PSEUDO_LOCALSTATEDIR does not exist." | ||
76 | echo "Did you create the export directory using runqemu-extract-sdk?" | ||
77 | exit 1 | ||
78 | fi | ||
79 | |||
80 | # rpc.mountd RPC port | ||
81 | NFS_MOUNTPROG=$[ 21111 + $NFS_INSTANCE ] | ||
82 | # rpc.nfsd RPC port | ||
83 | NFS_NFSPROG=$[ 11111 + $NFS_INSTANCE ] | ||
84 | # NFS port number | ||
85 | NFS_PORT=$[ 3049 + $NFS_INSTANCE ] | ||
86 | |||
87 | ## For debugging you would additionally add | ||
88 | ## --debug all | ||
89 | MOUNTD_OPTS="--allow-non-root --mount-pid $MOUNTPID -f $EXPORTS --rmtab $RMTAB --prog $NFS_MOUNTPROG -r" | ||
90 | NFSD_OPTS="--allow-non-root --nfs-pid $NFSPID -f $EXPORTS --prog $NFS_NFSPROG -P $NFS_PORT -r" | ||
91 | |||
92 | # Setup the exports file | ||
93 | if [ "$1" = "start" ]; then | ||
94 | echo "Creating exports file..." | ||
95 | echo "$NFS_EXPORT_DIR (rw,async,no_root_squash,no_all_squash,insecure)" > $EXPORTS | ||
96 | fi | ||
97 | |||
98 | # See how we were called. | ||
99 | case "$1" in | ||
100 | start) | ||
101 | echo "Starting User Mode rpc.mountd" | ||
102 | echo " $PSEUDO $PSEUDO_OPTS $OECORE_NATIVE_SYSROOT/usr/sbin/rpc.mountd $MOUNTD_OPTS" | ||
103 | $PSEUDO $PSEUDO_OPTS $OECORE_NATIVE_SYSROOT/usr/sbin/rpc.mountd $MOUNTD_OPTS | ||
104 | if [ ! $? = 0 ]; then | ||
105 | echo "=====================" | ||
106 | echo "Error starting MOUNTD" | ||
107 | echo "=====================" | ||
108 | ps -ef | grep -v grep | grep rpcbind 2>&1 > /dev/null | ||
109 | if [ $? = 0 ] ; then | ||
110 | echo " If you see an error above that says:" | ||
111 | echo " RPC: Authentication error; why = Client credential too weak" | ||
112 | echo " You need to change the startup of rpcbind" | ||
113 | echo " on your host by doing the following as root:" | ||
114 | echo "===============================================" | ||
115 | echo " According to /etc/sysconfig/rpcbind, then " | ||
116 | echo " echo RPCBIND_ARGS=-i >> /etc/sysconfig/rpcbind" | ||
117 | echo " or" | ||
118 | echo " echo RPCBIND_OPTIONS=-i >> /etc/sysconfig/rpcbind" | ||
119 | echo " /etc/init.d/rpcbind restart" | ||
120 | echo "===============================================" | ||
121 | fi | ||
122 | exit 1 | ||
123 | fi | ||
124 | echo "Starting User Mode nfsd" | ||
125 | echo " $PSEUDO $PSEUDO_OPTS $OECORE_NATIVE_SYSROOT/usr/sbin/rpc.nfsd $NFSD_OPTS" | ||
126 | $PSEUDO $PSEUDO_OPTS $OECORE_NATIVE_SYSROOT/usr/sbin/rpc.nfsd $NFSD_OPTS | ||
127 | if [ ! $? = 0 ]; then | ||
128 | echo "Error starting nfsd" | ||
129 | exit 1 | ||
130 | fi | ||
131 | # Check to make sure everything started ok. | ||
132 | if [ ! -f $MOUNTPID ]; then | ||
133 | echo "rpc.mountd did not start correctly" | ||
134 | exit 1 | ||
135 | fi | ||
136 | if [ ! -f $NFSPID ]; then | ||
137 | echo "rpc.nfsd did not start correctly" | ||
138 | exit 1 | ||
139 | fi | ||
140 | ps -fp `cat $MOUNTPID` > /dev/null 2> /dev/null | ||
141 | if [ ! $? = 0 ]; then | ||
142 | echo "rpc.mountd did not start correctly" | ||
143 | exit 1 | ||
144 | fi | ||
145 | ps -fp `cat $NFSPID` > /dev/null 2> /dev/null | ||
146 | if [ ! $? = 0 ]; then | ||
147 | echo "rpc.nfsd did not start correctly" | ||
148 | exit 1 | ||
149 | fi | ||
150 | echo " " | ||
151 | echo "On your target please remember to add the following options for NFS" | ||
152 | echo "nfsroot=IP_ADDRESS:$NFS_EXPORT_DIR,nfsvers=2,mountprog=$NFS_MOUNTPROG,nfsprog=$NFS_NFSPROG,udp" | ||
153 | ;; | ||
154 | stop) | ||
155 | if [ -f "$MOUNTPID" ]; then | ||
156 | echo "Stopping rpc.mountd" | ||
157 | kill `cat $MOUNTPID` | ||
158 | rm -f $MOUNTPID | ||
159 | else | ||
160 | echo "No PID file, not stopping rpc.mountd" | ||
161 | fi | ||
162 | if [ -f "$NFSPID" ]; then | ||
163 | echo "Stopping rpc.nfsd" | ||
164 | kill `cat $NFSPID` | ||
165 | rm -f $NFSPID | ||
166 | else | ||
167 | echo "No PID file, not stopping rpc.nfsd" | ||
168 | fi | ||
169 | if [ -f "$EXPORTS" ]; then | ||
170 | echo "Removing exports file" | ||
171 | rm -f $EXPORTS | ||
172 | fi | ||
173 | ;; | ||
174 | restart) | ||
175 | $0 stop $NFS_EXPORT_DIR | ||
176 | $0 start $NFS_EXPORT_DIR | ||
177 | if [ ! $? = 0 ]; then | ||
178 | exit 1 | ||
179 | fi | ||
180 | ;; | ||
181 | *) | ||
182 | echo "$0 {start|stop|restart} <nfs-export-dir>" | ||
183 | ;; | ||
184 | esac | ||
185 | |||
186 | exit 0 | ||