From 7deccd42f8a99553a03a9ef4b015a5f9efec48ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Pe=C4=8Dovnik?= Date: Thu, 16 Oct 2014 22:44:56 +0200 Subject: [PATCH] Update common.sh --- common.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/common.sh b/common.sh index 97c1a5f00e..55ca2fb62d 100644 --- a/common.sh +++ b/common.sh @@ -444,12 +444,18 @@ PAKETKI="alsa-utils bash-completion bc bluetooth bridge-utils build-essential ca chroot $DEST/output/sdcard /bin/bash -c "apt-get -qq -y install $PAKETKI && apt-get -y clean" +if [ "$RELEASE" = "jessie" ]; then +# install busybox-syslogd +chroot $DEST/output/sdcard /bin/bash -c "apt-get -qq -y install busybox-syslogd && apt-get -y clean" +else # ramlog cp $SRC/lib/bin/ramlog_2.0.0_all.deb $DEST/output/sdcard/tmp chroot $DEST/output/sdcard /bin/bash -c "dpkg -i /tmp/ramlog_2.0.0_all.deb" sed -e 's/TMPFS_RAMFS_SIZE=/TMPFS_RAMFS_SIZE=512m/g' -i $DEST/output/sdcard/etc/default/ramlog sed -e 's/# Required-Start: $remote_fs $time/# Required-Start: $remote_fs $time ramlog/g' -i $DEST/output/sdcard/etc/init.d/rsyslog sed -e 's/# Required-Stop: umountnfs $time/# Required-Stop: umountnfs $time ramlog/g' -i $DEST/output/sdcard/etc/init.d/rsyslog +fi + # replace hostapd from testing binary. cd $DEST/output/sdcard/usr/sbin/ tar xvfz $SRC/lib/bin/hostapd23.tgz