You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
415 B
19 lines
415 B
4 years ago
|
#!/bin/sh
|
||
|
|
||
|
set +xe
|
||
|
|
||
|
mount -t proc none /proc
|
||
|
mount -t sysfs none /sys
|
||
|
mount -t devtmpfs none /dev || echo possibly already mounted
|
||
|
mkdir -p /dev/pts
|
||
|
mount -t devpts devpts /dev/pts
|
||
|
mount -t virtiofs local /usr/local
|
||
|
mount -t debugfs none /sys/kernel/debug
|
||
|
echo "nameserver 8.8.8.8" > /etc/resolv.conf
|
||
|
#for i in 1 2 3; do sntp -sS pool.ntp.org && break || sleep 2; done
|
||
|
|
||
|
bash /usr/local/run_traces.sh
|
||
|
|
||
|
sync
|
||
|
sleep 1
|