#!/bin/bash # # Copyright (c) 2015 Igor Pecovnik, igor.pecovnik@gma**.com # # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. # # This file is a part of tool chain https://github.com/igorpecovnik/lib # install_desktop (){ #-------------------------------------------------------------------------------------------------------------------------------- # Install desktop with HW acceleration #-------------------------------------------------------------------------------------------------------------------------------- display_alert "Installing desktop" "XFCE" "info" umount $DEST/cache/sdcard/tmp >/dev/null 2>&1 mount --bind $SRC/lib/bin/ $DEST/cache/sdcard/tmp # Declare office packages if any OFFICE_PACKETS="libreoffice-writer libreoffice-java-common" # Debian Wheezy #-------------------------------------------------------------------------------------------------------------------------------- if [[ $RELEASE == "wheezy" ]]; then BASIC_PACKETS="xserver-xorg xserver-xorg-core xfonts-base xinit nodm x11-xserver-utils xfce4 mozo pluma wicd thunar-volman \ galculator iceweasel libgnome2-perl gcj-jre-headless gtk2-engines gtk2-engines-murrine gtk2-engines-pixbuf libgtk2.0-bin \ xfce4-screenshooter icedove radiotray mirage xterm lxtask" # copy wallpapers and default desktop settings d=$DEST/cache/sdcard/usr/share/xfce4/backdrops/ test -d "$d" || mkdir -p "$d" && cp $SRC/lib/bin/armbian*.jpg "$d" #cp $SRC/lib/config/wheezy-desktop.tgz /tmp/kernel # start configuration chroot $DEST/cache/sdcard /bin/bash -c "tar xfz /tmp/wheezy-desktop.tgz -C /root/" fi # Debian Jessie #-------------------------------------------------------------------------------------------------------------------------------- if [[ $RELEASE == "jessie" ]]; then BASIC_PACKETS="xserver-xorg xserver-xorg-core xfonts-base xinit nodm x11-xserver-utils xfce4 mozo pluma wicd thunar-volman \ galculator iceweasel libgnome2-perl gcj-jre-headless gtk2-engines gtk2-engines-murrine gtk2-engines-pixbuf libgtk2.0-bin \ $OFFICE_PACKETS xfce4-screenshooter icedove radiotray mirage xterm lxtask" # copy wallpapers d=$DEST/cache/sdcard/usr/share/backgrounds/xfce/ test -d "$d" || mkdir -p "$d" && cp $SRC/lib/bin/armbian*.jpg "$d" #cp $SRC/lib/config/jessie-desktop.tgz /tmp/kernel # start configuration chroot $DEST/cache/sdcard /bin/bash -c "tar xfz /tmp/jessie-desktop.tgz -C /root/" fi # Ubuntu trusty #-------------------------------------------------------------------------------------------------------------------------------- if [[ $RELEASE == "trusty" ]]; then BASIC_PACKETS="xserver-xorg xserver-xorg-core xfonts-base xinit nodm x11-xserver-utils xfce4 wicd thunar-volman galculator \ libgnome2-perl gcj-jre-headless gtk2-engines gtk2-engines-murrine gtk2-engines-pixbuf libgtk2.0-bin \ $OFFICE_PACKETS xfce4-screenshooter thunderbird firefox radiotray mirage gnome-icon-theme-full \ tango-icon-theme xterm lxtask gvfs-backends" # copy wallpapers and default desktop settings d=$DEST/cache/sdcard/usr/share/backgrounds/xfce/ test -d "$d" || mkdir -p "$d" && cp $SRC/lib/bin/armbian*.jpg "$d" #cp $SRC/lib/config/trusty-desktop.tgz /tmp/kernel # start configuration chroot $DEST/cache/sdcard /bin/bash -c "tar xfz /tmp/trusty-desktop.tgz -C /root/" fi install_packet "$BASIC_PACKETS" "Installing desktop" # Install custom icons and theme #cp $SRC/lib/bin/vibrancy-colors_2.4-trusty-Noobslab.com_all.deb /tmp/kernel #cp $SRC/lib/bin/NumixHolo.zip /tmp/kernel chroot $DEST/cache/sdcard /bin/bash -c "dpkg -i /tmp/vibrancy-colors_2.4-trusty-Noobslab.com_all.deb >/dev/null 2>&1" chroot $DEST/cache/sdcard /bin/bash -c "unzip -qq /tmp/NumixHolo.zip -d /usr/share/themes" # cleanup chroot $DEST/cache/sdcard /bin/bash -c "apt-get -y autoremove >/dev/null 2>&1" chroot $DEST/cache/sdcard /bin/bash -c "apt-get clean >/dev/null 2>&1" umount $DEST/cache/sdcard/tmp >/dev/null 2>&1 # fix for udoo if [[ $BOARD != "udoo" ]]; then echo "[Settings]" > $DEST/cache/sdcard/etc/wicd/manager-settings.conf echo "wireless_interface = wlan0" >> $DEST/cache/sdcard/etc/wicd/manager-settings.conf fi # Enable desktop moode autostart without password sed "s/NODM_ENABLED=\(.*\)/NODM_ENABLED=true/g" -i $DEST/cache/sdcard/etc/default/nodm # Compile Turbo Frame buffer for sunxi if [[ $LINUXCONFIG == *sun* && $BRANCH != "next" ]]; then install_packet "xorg-dev xutils-dev x11proto-dri2-dev xutils-dev libdrm-dev libvdpau-dev" "Installing support libraries" # quemu bug walkaround git clone https://github.com/ssvb/xf86-video-fbturbo.git $DEST/cache/sdcard/tmp/xf86-video-fbturbo chroot $DEST/cache/sdcard /bin/bash -c "cd /tmp/xf86-video-fbturbo && autoreconf -vi" chroot $DEST/cache/sdcard /bin/bash -c "cd /tmp/xf86-video-fbturbo && ./configure --prefix=/usr" chroot $DEST/cache/sdcard /bin/bash -c "cd /tmp/xf86-video-fbturbo && make && make install && cp xorg.conf /etc/X11/xorg.conf" # compile video acceleration # A git clone https://github.com/linux-sunxi/libvdpau-sunxi.git $DEST/cache/sdcard/tmp/libvdpau-sunxi # temporaly fix chroot $DEST/cache/sdcard /bin/bash -c "git checkout 906c36ed45ceb53fecd5fc72e821c11849eeb1a3" chroot $DEST/cache/sdcard /bin/bash -c "cd /tmp/libvdpau-sunxi && make" d=$DEST/cache/sdcard/usr/lib/vdpau test -d "$d" || mkdir -p "$d" && cp $DEST/cache/sdcard/tmp/libvdpau-sunxi/libvdpau_sunxi.so.1 "$d" ln -s $d/libvdpau_sunxi.so $d/libvdpau_sunxi.so.1 # B # git clone https://github.com/Snaipe/libcsptr.git $DEST/cache/sdcard/usr/local/src/libcsptr # chroot $DEST/cache/sdcard /bin/bash -c "cd /usr/local/src/libcsptr && mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. && make && make install" # chroot $DEST/cache/sdcard /bin/bash -c "cd /usr/local/src/libcsptr && make" # chroot $DEST/cache/sdcard /bin/bash -c "cd /usr/local/src/libcsptr && make install" # display_alert "GIT clone" "libvdpau-sunxi" "info" # echo -e "[\e[0;34m git cloning \x1B[0m] libvdpau-sunxi ..." # git clone -b staging https://github.com/rellla/libvdpau-sunxi.git $DEST/cache/sdcard/usr/local/src/libvdpau-sunxi # chroot $DEST/cache/sdcard /bin/bash -c "cd /usr/local/src/libvdpau-sunxi && make clean && make $CTHREADS ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- && make install" # That we can just play echo "export VDPAU_DRIVER=sunxi" >> $DEST/cache/sdcard/etc/profile # enable memory reservations sed "s/sunxi_ve_mem_reserve=0 sunxi_g2d_mem_reserve=0 sunxi_no_mali_mem_reserve sunxi_fb_mem_reserve=16 //g" -i $DEST/cache/sdcard/boot/boot.cmd mkimage -C none -A arm -T script -d $DEST/cache/sdcard/boot/boot.cmd $DEST/cache/sdcard/boot/boot.scr >> /dev/null # clean deb cache chroot $DEST/cache/sdcard /bin/bash -c "apt-get -y clean >/dev/null 2>&1" fi if [[ $LINUXCONFIG == *sunxi* ]]; then # disable DPMS for sunxi because screen doesn't resume cat >> $DEST/cache/sdcard/etc/X11/xorg.conf <