blob: 055286096fee2ff1835bb83a9c9687ae01aec605 (
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 /data/var/cache/pacman/pkg/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
|