Changeset 582
Legend:
- Unmodified
- Added
- Removed
-
trunk/CHANGELOG
r580 r582 1 1.6.2 2 * Fixed a bug when using the partition command with value 0 (use the rest 3 of the disk). Instead of calculating the end value use value -1. Parted 4 will then use the rest of the disk. 5 Reported by: Jaap Dijkshoorn (SURFsara) 6 Author: Dennis Stam 7 1 8 1.6.1 2 9 * Due to strange configure behaviour of xmlrpc-c adjusted the xmlrpc-c.rul -
trunk/VERSION
r580 r582 1 1.6. 11 1.6.2 -
trunk/configure
r580 r582 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.69 for SALI 1.6. 1.3 # Generated by GNU Autoconf 2.69 for SALI 1.6.2. 4 4 # 5 5 # Report bugs to <sali@surfsara.nl>. … … 580 580 PACKAGE_NAME='SALI' 581 581 PACKAGE_TARNAME='sali' 582 PACKAGE_VERSION='1.6. 1'583 PACKAGE_STRING='SALI 1.6. 1'582 PACKAGE_VERSION='1.6.2' 583 PACKAGE_STRING='SALI 1.6.2' 584 584 PACKAGE_BUGREPORT='sali@surfsara.nl' 585 585 PACKAGE_URL='' … … 1204 1204 # This message is too long to be a string in the A/UX 3.1 sh. 1205 1205 cat <<_ACEOF 1206 \`configure' configures SALI 1.6. 1to adapt to many kinds of systems.1206 \`configure' configures SALI 1.6.2 to adapt to many kinds of systems. 1207 1207 1208 1208 Usage: $0 [OPTION]... [VAR=VALUE]... … … 1265 1265 if test -n "$ac_init_help"; then 1266 1266 case $ac_init_help in 1267 short | recursive ) echo "Configuration of SALI 1.6. 1:";;1267 short | recursive ) echo "Configuration of SALI 1.6.2:";; 1268 1268 esac 1269 1269 cat <<\_ACEOF … … 1347 1347 if $ac_init_version; then 1348 1348 cat <<\_ACEOF 1349 SALI configure 1.6. 11349 SALI configure 1.6.2 1350 1350 generated by GNU Autoconf 2.69 1351 1351 … … 1477 1477 running configure, to aid debugging if configure makes a mistake. 1478 1478 1479 It was created by SALI $as_me 1.6. 1, which was1479 It was created by SALI $as_me 1.6.2, which was 1480 1480 generated by GNU Autoconf 2.69. Invocation command line was 1481 1481 … … 3793 3793 # values after options handling. 3794 3794 ac_log=" 3795 This file was extended by SALI $as_me 1.6. 1, which was3795 This file was extended by SALI $as_me 1.6.2, which was 3796 3796 generated by GNU Autoconf 2.69. Invocation command line was 3797 3797 … … 3846 3846 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" 3847 3847 ac_cs_version="\\ 3848 SALI config.status 1.6. 13848 SALI config.status 1.6.2 3849 3849 configured by $0, generated by GNU Autoconf 2.69, 3850 3850 with options \\"\$ac_cs_config\\" -
trunk/initrd/functions/stubs/disks
r540 r582 386 386 387 387 case "$SIZE" in 388 0 )388 0|-1) 389 389 START_MB=$END_OF_LAST 390 390 END_MB=$(( DISKSIZE - 0 )) 391 391 logmsg " parted -s -- $DISK mkpart $PARTITION_TYPE $START_MB $END_MB" 392 parted -s -- $DISK mkpart $PARTITION_TYPE $START_MB $END_MB392 parted -s -- $DISK mkpart $PARTITION_TYPE $START_MB -1 393 393 END_OF_LAST=$END_MB 394 394 sleep 1
Note: See TracChangeset
for help on using the changeset viewer.