17 lines
742 B
Bash
17 lines
742 B
Bash
#!/bin/bash
|
|
#TODO Comprobar si esta los source.
|
|
|
|
#svn checkout http://www.opengnsys.es/svn/branches/version1.0/client /tmp/opengnsys_installer/opengnsys/client/;
|
|
#svn checkout http://www.opengnsys.es/svn/branches/version2/ /tmp/opengnsys_installer/opengnsys2
|
|
find /tmp/opengnsys_installer/ -name .svn -type d -exec rm -fr {} \; 2>/dev/null;
|
|
|
|
#plymouth
|
|
apt-get install plymouth plymouth-theme-script
|
|
|
|
|
|
#plymoutyh
|
|
update-alternatives --install /lib/plymouth/themes/default.plymouth default.plymouth /lib/plymouth/themes/opengnsys/opengnsys.plymouth 100
|
|
update-alternatives --set default.plymouth /lib/plymouth/themes/opengnsys/opengnsys.plymouth
|
|
|
|
mkdir -p /etc/initramfs-tools/conf.d
|
|
echo "FRAMEBUFFER=y" > /etc/initramfs-tools/conf.d/splash |