diff --git a/documentation/logbook.md b/documentation/logbook.md index 1f8651aef8..ff2682909f 100644 --- a/documentation/logbook.md +++ b/documentation/logbook.md @@ -13,6 +13,7 @@ - fixed USB boot, added PWM on Vanilla - readded USB sound - 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** @@ -375,4 +376,4 @@ Build script: - MAC address fixed at first boot - Kernel 3.4.75 - root password=1234 -- Bugs: wifi and BT not working \ No newline at end of file +- Bugs: wifi and BT not working diff --git a/makeboarddeb.sh b/makeboarddeb.sh index 6021498310..99db65ca71 100644 --- a/makeboarddeb.sh +++ b/makeboarddeb.sh @@ -64,6 +64,7 @@ create_board_package (){ 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 "[[ -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 # temper binary for USB temp meter @@ -134,4 +135,4 @@ create_board_package (){ # clean up rm -rf $CHOOSEN_ROOTFS rm -f ../.reboot_required -} \ No newline at end of file +} diff --git a/upgrade.sh b/upgrade.sh index 2f2671f66a..0fca37de9d 100644 --- a/upgrade.sh +++ b/upgrade.sh @@ -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 \ ]]; then 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 display_warning @@ -322,4 +322,4 @@ dialog --title "$title" --backtitle "$backtitle" --yes-label "Reboot" --no-labe if [ $? -eq 0 ]; then reboot; fi echo "Visit: forum.armbian.com in case of troubles or just for fun ;)" -echo "" \ No newline at end of file +echo ""