This commit is contained in:
Igor Pecovnik 2016-01-21 21:44:23 +01:00
commit 9936b329fd
3 changed files with 6 additions and 4 deletions

View file

@ -13,6 +13,7 @@
- fixed USB boot, added PWM on Vanilla - fixed USB boot, added PWM on Vanilla
- readded USB sound - readded USB sound
- added [A13 Olimex SOM](https://www.olimex.com/Products/SOM/A13/A13-SOM-512/) - added [A13 Olimex SOM](https://www.olimex.com/Products/SOM/A13/A13-SOM-512/)
- added [LIRC GPIO receive and send driver](https://github.com/igorpecovnik/lib/issues/135) for legacy Allwinner
**v4.81 / 28.12.2015** **v4.81 / 28.12.2015**

View file

@ -64,6 +64,7 @@ create_board_package (){
echo "[[ -f /root/nand-sata-install ]] && rm /root/nand-sata-install" >> $destination/DEBIAN/postinst echo "[[ -f /root/nand-sata-install ]] && rm /root/nand-sata-install" >> $destination/DEBIAN/postinst
echo "ln -sf /var/run/motd /etc/motd" >> $destination/DEBIAN/postinst echo "ln -sf /var/run/motd /etc/motd" >> $destination/DEBIAN/postinst
echo "[[ -f /etc/bash.bashrc.custom ]] && rm /etc/bash.bashrc.custom" >> $destination/DEBIAN/postinst echo "[[ -f /etc/bash.bashrc.custom ]] && rm /etc/bash.bashrc.custom" >> $destination/DEBIAN/postinst
echo "apt-get install -qq -y fake-hwclock" >> $destination/DEBIAN/postinst
echo "exit 0" >> $destination/DEBIAN/postinst echo "exit 0" >> $destination/DEBIAN/postinst
# temper binary for USB temp meter # temper binary for USB temp meter

View file

@ -298,7 +298,7 @@ if [[ $(dpkg-query -W -f='${Status}' dialog 2>/dev/null | grep -c "ok installed"
$(dpkg-query -W -f='${Status}' aptitude 2>/dev/null | grep -c "ok installed") -eq 0 \ $(dpkg-query -W -f='${Status}' aptitude 2>/dev/null | grep -c "ok installed") -eq 0 \
]]; then ]]; then
echo "Downloading dependencies ... please wait" echo "Downloading dependencies ... please wait"
apt-get install -qq -y dialog u-boot-tools debconf-utils lsb-release aptitude >/dev/null 2>&1 apt-get install -qq -y dialog u-boot-tools debconf-utils lsb-release aptitude fake-hwclock >/dev/null 2>&1
fi fi
display_warning display_warning