I missed to commit the allowfullpagebitstream attributes.

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@456 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
joerg_wunsch 2005-05-10 21:04:55 +00:00
parent 549f513be8
commit bfa4540470
2 changed files with 9 additions and 2 deletions

View File

@ -1750,6 +1750,7 @@ part
idr = 0x22;
spmcr = 0x68;
allowfullpagebitstream = yes;
memory "eeprom"
paged = no; /* leave this "no" */
@ -1901,6 +1902,7 @@ part
idr = 0x22;
spmcr = 0x68;
rampz = 0x3b;
allowfullpagebitstream = yes;
memory "eeprom"
paged = no; /* leave this "no" */
@ -2196,6 +2198,7 @@ part
idr = 0x31;
spmcr = 0x57;
allowfullpagebitstream = yes;
memory "eeprom"
paged = no; /* leave this "no" */
@ -2308,6 +2311,7 @@ part
idr = 0x04;
spmcr = 0x57;
allowfullpagebitstream = yes;
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
"x x x x x x x x x x x x x x x x";
@ -2752,6 +2756,7 @@ part
idr = 0x31;
spmcr = 0x57;
allowfullpagebitstream = yes;
memory "eeprom"
paged = no; /* leave this "no" */

View File

@ -1,4 +1,6 @@
#! /bin/sh
AC_VER=259
AM_VER=19
# autoconf-2.57 is required
@ -14,7 +16,7 @@
AUTOCONF_VER=`(${AUTOCONF} --version 2>/dev/null | head -n 1 | \
cut -d ' ' -f 4) 2>/dev/null`
if [ "$AUTOCONF_VER" != "2.57" ]
if [ "$AUTOCONF_VER" != "2.59" ]
then
echo "You need to use autoconf version 2.57."
echo "You are using `${AUTOCONF} --version | head -n 1`."
@ -25,7 +27,7 @@ fi
AUTOMAKE_VER=`(${AUTOMAKE} --version | head -n 1 | \
cut -d ' ' -f 4 | cut -d '.' -f -2) 2>/dev/null`
if [ "$AUTOMAKE_VER" != "1.7" ]
if [ "$AUTOMAKE_VER" != "1.9" ]
then
echo "You need to use automake version 1.7 (preferrably 1.7.3)."
echo "You are using `${AUTOMAKE} --version | head -n 1`."