mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-30 10:41:50 +00:00
Merge branch 'master' of https://github.com/igorpecovnik/lib
This commit is contained in:
commit
9936b329fd
3 changed files with 6 additions and 4 deletions
|
@ -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
|
||||
- Bugs: wifi and BT not working
|
||||
|
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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 ""
|
||||
echo ""
|
||||
|
|
Loading…
Add table
Reference in a new issue