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**
@ -375,4 +376,4 @@ Build script:
- MAC address fixed at first boot - MAC address fixed at first boot
- Kernel 3.4.75 - Kernel 3.4.75
- root password=1234 - root password=1234
- Bugs: wifi and BT not working - Bugs: wifi and BT not working

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
@ -134,4 +135,4 @@ create_board_package (){
# clean up # clean up
rm -rf $CHOOSEN_ROOTFS rm -rf $CHOOSEN_ROOTFS
rm -f ../.reboot_required rm -f ../.reboot_required
} }

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
@ -322,4 +322,4 @@ dialog --title "$title" --backtitle "$backtitle" --yes-label "Reboot" --no-labe
if [ $? -eq 0 ]; then reboot; fi if [ $? -eq 0 ]; then reboot; fi
echo "Visit: forum.armbian.com in case of troubles or just for fun ;)" echo "Visit: forum.armbian.com in case of troubles or just for fun ;)"
echo "" echo ""