blob: b831e082522ec0fd6d5de8d4f1c197d789ba7504 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
for f in /target/etc/plymouth/plymouthd.conf /target/opt/ltsp/i386/etc/plymouth/plymouthd.conf ; do
# this is a joyous race condition
while [ ! -e $f ] ; do
sleep 1
done
rm -f $f
done
|