2013-09-20 04:27:56 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# postinst script for a2pi
|
|
|
|
#
|
|
|
|
# see: dh_installdeb(1)
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# summary of how this script can be called:
|
|
|
|
# * <postinst> `configure' <most-recently-configured-version>
|
|
|
|
# * <old-postinst> `abort-upgrade' <new version>
|
|
|
|
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
|
|
|
|
# <new-version>
|
|
|
|
# * <postinst> `abort-remove'
|
|
|
|
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
|
|
|
|
# <failed-install-package> <version> `removing'
|
|
|
|
# <conflicting-package> <version>
|
|
|
|
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
|
|
# the debian-policy package
|
|
|
|
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
configure)
|
2013-09-22 05:52:21 +00:00
|
|
|
#
|
|
|
|
# Update /boot partition files.
|
|
|
|
#
|
2013-09-22 20:06:33 +00:00
|
|
|
if [ "$(grep ttyAMA0 /boot/cmdline.txt)" != "" ] ; then
|
2013-10-07 03:53:38 +00:00
|
|
|
cp /boot/cmdline.txt /boot/cmdline.bak
|
2013-10-06 21:09:28 +00:00
|
|
|
sed -i 's/console=ttyAMA0,[0-9]* kgdboc=ttyAMA0,[0-9]* //g' /boot/cmdline.txt
|
2013-09-22 05:52:21 +00:00
|
|
|
fi
|
|
|
|
#
|
|
|
|
# Disable getty on built-in serial port.
|
|
|
|
#
|
|
|
|
ttyline=`grep ttyAMA0 /etc/inittab`
|
2013-09-22 20:06:33 +00:00
|
|
|
case "$ttyline" in
|
|
|
|
T0*)
|
2013-09-22 05:52:21 +00:00
|
|
|
mv /etc/inittab /etc/inittab.bak
|
2013-11-14 04:58:57 +00:00
|
|
|
sed 's/^T0/#T0/' /etc/inittab.bak > /etc/inittab
|
2013-09-22 05:52:21 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
#
|
|
|
|
# Disable joystick as a mouse in X
|
|
|
|
#
|
|
|
|
if [ -d /usr/share/X11/xorg.conf.d ] ; then
|
|
|
|
cp /usr/share/a2pi/11-joy.conf /usr/share/X11/xorg.conf.d
|
|
|
|
fi
|
2013-09-22 20:06:33 +00:00
|
|
|
#
|
2013-09-22 23:14:50 +00:00
|
|
|
# Add default Pi user,pi, to groups fuse and input
|
|
|
|
#
|
|
|
|
addgroup pi fuse
|
|
|
|
# addgroup pi input # already there by default
|
|
|
|
#
|
2013-09-22 20:06:33 +00:00
|
|
|
# Add schmenk.is-a-geek.com to apt sources
|
|
|
|
#
|
|
|
|
if [ "$(grep schmenk /etc/apt/sources.list)" = "" ] ; then
|
2013-09-22 23:14:50 +00:00
|
|
|
echo "deb http://schmenk.is-a-geek.com/raspbian wheezy contrib" >> /etc/apt/sources.list
|
2013-09-22 20:06:33 +00:00
|
|
|
fi
|
|
|
|
#
|
|
|
|
# Remove old install
|
|
|
|
#
|
|
|
|
if [ -f /usr/local/bin/a2pid ] ; then
|
|
|
|
rm /usr/local/bin/a2pid
|
|
|
|
fi
|
|
|
|
if [ -f /usr/local/bin/a2serclk ] ; then
|
|
|
|
rm /usr/local/bin/a2serclk
|
|
|
|
fi
|
|
|
|
if [ -f /usr/local/bin/a2mon ] ; then
|
|
|
|
rm /usr/local/bin/a2mon
|
|
|
|
fi
|
|
|
|
if [ -f /usr/local/bin/dskread ] ; then
|
|
|
|
rm /usr/local/bin/dskread
|
|
|
|
fi
|
|
|
|
if [ -f /usr/local/bin/dskwrite ] ; then
|
|
|
|
rm /usr/local/bin/dskwrite
|
|
|
|
fi
|
|
|
|
if [ -f /usr/local/bin/a2term ] ; then
|
|
|
|
rm /usr/local/bin/a2term
|
|
|
|
fi
|
|
|
|
if [ -f /usr/local/bin/fusea2pi ] ; then
|
|
|
|
rm /usr/local/bin/fusea2pi
|
|
|
|
fi
|
|
|
|
if [ -f /usr/local/bin/a2joy ] ; then
|
|
|
|
rm /usr/local/bin/a2joy
|
|
|
|
fi
|
|
|
|
if [ -f /usr/local/bin/a2joymou ] ; then
|
|
|
|
rm /usr/local/bin/a2joymou
|
|
|
|
fi
|
|
|
|
if [ -f /usr/local/bin/a2joypad ] ; then
|
|
|
|
rm /usr/local/bin/a2joypad
|
|
|
|
fi
|
|
|
|
if [ -f /usr/local/bin/a2mount ] ; then
|
|
|
|
rm /usr/local/bin/a2mount
|
|
|
|
fi
|
|
|
|
if [ -f /usr/local/bin/bload ] ; then
|
|
|
|
rm /usr/local/bin/bload
|
|
|
|
fi
|
|
|
|
if [ -f /usr/local/bin/brun ] ; then
|
|
|
|
rm /usr/local/bin/brun
|
|
|
|
fi
|
|
|
|
if [ -f /usr/local/sbin/a2pid ] ; then
|
|
|
|
rm /usr/local/sbin/a2pid
|
|
|
|
fi
|
|
|
|
if [ "$(grep a2pid /etc/rc.local)" != "" ] ; then
|
|
|
|
mv /etc/rc.local /etc/rc.local.old
|
|
|
|
sed -e '/^# Start Apple II Pi/d' -e '/a2pid/d' -e '/^wait 1/d' -e '/a2joy/'d /etc/rc.local.old > /etc/rc.local
|
|
|
|
rm /etc/rc.local.old
|
|
|
|
fi
|
2013-09-20 04:27:56 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
|
|
# generated by other debhelper scripts.
|
|
|
|
|
|
|
|
#DEBHELPER#
|
|
|
|
|
|
|
|
exit 0
|