From: Bdale Garbee Date: Wed, 17 Oct 2012 03:58:43 +0000 (-0600) Subject: don't explicitly request iocharset=iso8859-1 in elilo.sh X-Git-Tag: debian/3.14-2 X-Git-Url: https://git.gag.com/?p=debian%2Felilo;a=commitdiff_plain;h=22d395c928749a75cc7b98425f5173634938d30c don't explicitly request iocharset=iso8859-1 in elilo.sh --- diff --git a/debian/changelog b/debian/changelog index 9518dcb..22933f9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +elilo (3.14-2) unstable; urgency=low + + * remove unnecessary explicit iocharset request in elilo.sh that prevents + ia64 installations from succeeding, closes: #685186 + + -- Bdale Garbee Tue, 16 Oct 2012 21:52:16 -0600 + elilo (3.14-1) unstable; urgency=low * new upstream version diff --git a/debian/elilo.sh b/debian/elilo.sh index 9857ff2..faff78b 100644 --- a/debian/elilo.sh +++ b/debian/elilo.sh @@ -345,7 +345,7 @@ mnt() fi [ "$VERBOSE" = 1 ] && echo "$PRG: Mounting $boot..." - mount -t "$fstype" -o codepage=437,iocharset=iso8859-1,rw,noexec,umask=077$loop "$boot" "$TMP/bootstrap.$$" + mount -t "$fstype" -o codepage=437,rw,noexec,umask=077$loop "$boot" "$TMP/bootstrap.$$" if [ $? != 0 ] ; then echo 1>&2 "$PRG: An error occured mounting $boot" return 1