summaryrefslogtreecommitdiffstats
path: root/build_tools/clarch/larch/profiles/MV-local/rootoverlay/etc/rc.local
blob: c1b0154c9417e050c4798406beb7914314ba1a64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
. /etc/profile
.  ${MV_ROOT}/bin/install_functions.sh
#install initial database
pacman -S --noconfirm mythdb-initial 2>/dev/null

init_network
/etc/rc.d/alsa-utils start 0
init_remote
random_theme

echo $CMDLINE | grep -q NoX
if [ $? = 0 ]
then
    echo "No auto X option found"
    /usr/bin/chvt 2
else
    /root/startx &
fi