bootcd (2.41) unstable; urgency=low

  * Added Patch from Mark Clarkson <markjclarkson@hotmail.com> to solve
    the ERROR "mount: mount point /dev is a symbolic link to nowhere" when
    using bootcdwrite with option DEVFS=yes 
  * Changed dependencies for package bootcd-mkinitrd as recommended by Cristian
    Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com>. Closes: #251855

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Thu, 27 May 2004 19:41:06 +0200

bootcd (2.40) unstable; urgency=low

  * Carsten Dinkelmann  <din@foobar-cpa.de> added wildcard DISK to 
    bootcd2disk(.conf) to parametrize partitions
  * Carsten Dinkelmann  <din@foobar-cpa.de> added function after_copy to
    support some action like remounting after the copying
  * Added -s Option.  
  * Now only ssh Versions which support Option -t are supported by 
    bootcd. Closes: #240655
  * Changed bootcdmkinitrd to use old renamed package "discover1" (v1) and 
    new package "discover" (v2). Closes: #249437
  * bootcdmkinitrd now supports lilo and grub.

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Mon, 17 May 2004 09:21:44 +0200

bootcd (2.39) unstable; urgency=low

  * Commented out debug code. Closes: #239081

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Mon, 22 Mar 2004 09:02:17 +0100

bootcd (2.38) unstable; urgency=low

  * Added -w option for lilo to get less warnings
  * Added -P option to df to be more portable. This prevents 
    wraps in long df output. Closes: #233617
  * Because sfdisk is not always able to automatically detect
    a disk usable for bootcd2disk, own tests are added
  * Use an easier method instead of "type" to check if mkzftree
    is installed. Closes: #233616

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Fri, 12 Mar 2004 09:51:02 +0100

bootcd (2.37) unstable; urgency=low

  * Fixed uninstallable conflict of bootcd-mkinitrd. Closes: #232398 

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Thu, 12 Feb 2004 15:46:45 +0100

bootcd (2.36) unstable; urgency=low

  * Upgraded to Debian Standards-Version: 3.6.0
  * Fixed duplicate entry in bootcd.conffile. Closes: #220326
  * bootcd now does no longer require to find locatedb. Closes: #219060
  * fixed bootcd2disk to better detect a DISK automatically

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Mon, 17 Nov 2003 10:10:05 +0100

bootcd (2.35) unstable; urgency=low

  * This release was made on alioth.debian.org by Thomas Kennwallner and
    Bernd Schumacher.
  * Announced bootcd mailing list bootcd-user@lists.alioth.debian.org in FAQ.
  * Fixed bootcdmkinitrd. Include cdrom.o in initrd (closes alioth #300087).
  * All other changes done on alioth.debian.org can be looked up in ChangeLog.

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Tue, 26 Aug 2003 22:53:51 +0200

bootcd (2.34) unstable; urgency=low

  * added bootcdwrite support for ia64
  * added bootcd2disk support for ia64
  * added logging of modified, checked CONFVARS in ERRLOG
  * moved hppa functions from bootcdwrite to bootcd-hppa.lib
  * changed function err to be able to run, if variable ERRLOG is undefined
  * added support for VFAT Filesystem to bootcd2disk and bootcd2disk.conf
  * added support for /etc/elilo.conf to bootcd2disk and bootcd2disk.conf
  * changed function chnglist to handle double //. This patches a bug
    that prevented to define DISABLE_CRON with more than one starting / which
    is the case if SRCDISK=/ and DISABLE_CRON="$SRCDISK/<file>".
  * added option -d to bootcdwrite, which lets developers of bootcd use
    local .lib files if they are present. This function will not be shown
    in the usage message.
  * changed bootcd order of calling check_functions and displaying
    warning messages.

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Mon, 11 Aug 2003 11:27:27 +0200

bootcd (2.33) unstable; urgency=low

  * Added patch from Thomas Krennwallner <djmaecki@ull.at>
    to disable /etc/cron.daily/{find,standard,security} while running
    from read-only bootcd, see DISABLE_CRON in bootcdwrite.conf
  * Added patches from Thomas Krennwallner <djmaecki@ull.at>
    to add a hint in the FAQ
    to enable wtmp record keeping while running from bootcd
    to disable checking the cdrom root device, even when using TO_FSTAB and
    to copy all symlinks to /var.
  * Fixed a problem found by Yildiz Murat <murat.yildiz@atosorigin.com>
    regaring an unset variable in bootcd2disk.

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Wed, 23 Jul 2003 11:13:08 +0200

bootcd (2.32) unstable; urgency=low

  * POSIX compliant: bootcdwrite, bootcd2disk, bootcd-check.lib, 
    bootcdflopcp and S12bootcdram.sh have been changed to be able to 
    run them not only with bash, but also with dash. Closes: #176815
    The following changes have been made:
    1) set -u; for i in $*; do ... -> 
       set -u; if [ $# -gt 0 ]; then for i in $*; do ... fi
    2) trap ... EXIT SIGINT ->
       trap ... 0 2
    3) if [ "..." == "..." ]; then ->
       if [ "..." = "..." ]; then
    4) let/expr changes, for example: 
       let SWAPS=2*$MEMS/1024 ->
       SWAPS=$(expr 2 \* $MEMS / 1024)
  * bootcd no longer depends on cdrecord instead, if ISO_ONLY=no it will
    be checked if cdrecord is installed. Closes: #198480
  * bootcd2disk deletes symlink from /etc/mtab to /proc/mounts. Closes: #199841
  * Resolved syntax error in syslinux.cfg.

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Thu,  3 Jul 2003 19:38:28 +0200

bootcd (2.31) unstable; urgency=low

  * Resolved bug: Bad path in /usr/share/bootcd/bootcd-check.lib. 
    Closes: #195522
  * Resolved bug: patch to get rid of "cpio: truncated inode number" messages
    Closes: #194007

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Mon,  2 Jun 2003 10:53:50 +0200

bootcd (2.30) unstable; urgency=low

  * Resolved bug "compressed images fail to boot, files in wrong directory",
    as described by Ludi de Souza <lnds@hotmail.com>. Closes: #190693
  * Resolved bug "cannot boot images created using ISOLINUX 2.00, .img 
    extenstion" as also excellent described by Ludi de Souza. Closes: #190694
    Now isolinux/vmlinuz.img is renamed to isolinux/vmlinuz and
    isolinux/initrd.img is renamed to isolinux/initrd.

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Sat, 26 Apr 2003 20:03:33 +0200

bootcd (2.29) unstable; urgency=low

  * CD will be ejected after burning. 
  * do not title unknown output of programs as ERROR any more, but just as 
    OUTPUT.
  * bootcdmkinitrd now uses discover (with a modified script from 
    michael.schreiter@hp.com).
  * because of dependencies bootcdmkinitrd was splitted in an extra package.
  * using /usr/share/bootcd instead of /usr/lib/bootcd. Closes: #183823

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Mon, 10 Feb 2003 08:51:09 +0100

bootcd (2.28) unstable; urgency=low

  * Added support for ZISOFS
  * Added support for EXT3 in bootcd2disk
  * New Q/A in FAQ: How can I copy bootcd to disk for higher performance and 
    mount the disk read-only for security reasons?
  * New Q/A in FAQ: Why can't I define a different ramdisk_size for each of 
    the two ramdisk filesystems that are created by bootcd?
  * New Q/A in FAQ: How can I use compression to get more data on one CD?
  * extracted S12bootcdram.sh from bootcdwrite for easier maintenance
  * Each created bootcd now has some information about itself in
    /etc/bootcd/thisbootcd.conf. This can be used by bootcd2disk.
  * Added new option in bootcdwrite.conf: BLANKING=auto. This means bootcdwrite 
    will always try to blank the CD, but ignore errors. Closes: #173132

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Mon, 30 Dec 2002 13:38:45 +0100

bootcd (2.24) unstable; urgency=low

  * better description for bootcd-hppa. Closes: #168195
  * depends on dvdplusrw | dvd+rw-tools. Closes: #168410
  * bootcd warns if file-rc is installed on the system which should be 
    copied to CD. Closes: #168514

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Mon, 11 Nov 2002 09:37:55 +0100

bootcd (2.23) unstable; urgency=low

  * bootcd2disk can now automatically install on partitions named
    <disk>p<number> like /dev/ida/c0d0p1 or /dev/cciss/c0d0p1
  * bootcd depends on dosfstools. Closes: #164157
  * dvdplus support
  * bootcd is separated in bootcd, bootcd-hppa and bootcd-dvdplus for
    better dependency checking

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Wed, 23 Oct 2002 11:29:51 +0200

bootcd (2.21) unstable; urgency=low

  * Added Warning to run lilo after bootcdmkinitrd.
  * Added TO_FSTAB patch from Thomas Krennwallner <krennwallner@aon.at> to
    mount additional Filesystems when booting from bootcd. Closes: #162169

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Sun,  6 Oct 2002 09:52:20 +0200

bootcd (2.20) unstable; urgency=low

  * many small bug fixes
  * better calculation of number of inodes for ramdisk
  * separated manpages
  * supporting devfs Closes: #113727
  * supporting debian standard kernels with initrd
  * try to automatically close bug fixed in 2.11 already Closes: #151075
  * added option -c to bootcdwrite and bootcd2disk

 -- Bernd Schumacher <bernd.schumacher@hp.com>  Thu,  4 Jul 2002 14:28:17 +0200

bootcd (2.11) unstable; urgency=low

  * added HPPA support
  * new function create_host_keys. Closes #151075
  * added SYSLINUX_SAVE option to use or not use -s with syslinux

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Wed, 26 Jun 2002 17:22:04 +0200

bootcd (2.10) unstable; urgency=low

  * Use at least 8192 inodes per ramdisk
  * and use cpio with -m option to stop bootcd complaining about "newer files".
    (Hints from Thomas Bayen <tbayen@bayen.de>)
  * Added new questions/answers to the FAQ.

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Tue, 18 Jun 2002 18:44:11 +0200

bootcd (2.09) unstable; urgency=low

  * Corrected: Spelling error in description. Closes: #124465
  * Applied patch from R. Alex Owen <rao3@leicester.ac.uk> to
    create image instead of writing to CD immediatly. Closes: #138296

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Tue, 23 Apr 2002 14:58:39 +0200

bootcd (2.08) unstable; urgency=low

  * Corrected: Created CD contains predefined bootcd2disk.conf again

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Thu, 25 Oct 2001 13:10:43 +0200

bootcd (2.07) unstable; urgency=low

  * NOT_TO_RAM now works with FASTBOOT. Closes: #113690
  * /proc will not be searched anymore.
  * better calculation of needed space.
  * more and smaller functions in source for easier maintenance.
  * added TODO in bootcdmanpage for wishlist item: devfs. 

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Fri,  5 Oct 2001 07:32:54 +0200

bootcd (2.06) unstable; urgency=low

  * compressed images of the ramdisk are used to shorten boot time (as
    suggested by Francois Gelis <gelis@bnl.gov>)
  * bootcd2disk uses lilo delay 20 instead of 0 by default

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Sun,  3 Jun 2001 10:46:33 +0200

bootcd (2.05) unstable; urgency=low

  * Added "Build-Depends: debmake"
  * Architecture changed from any to all. Closes: #84465

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Fri, 23 Feb 2001 10:27:00 +0100

bootcd (2.04) unstable; urgency=low

  * FAQ will be installed in /usr/share/doc/bootcd
  * Each PC installed with bootcd2disk gets a nunique ssh_host_key,
    if defined in bootcd2disk.conf

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Sun, 28 Jan 2001 17:21:10 +0100

bootcd (2.03) unstable; urgency=low

  * closes: #80548.
  * Added kernel checks
  * Checking of variables works since version 2.01.
  * apt-get clean will only be done if CLEAN_VAR=yes.
  * User will be asked before calling "apt-get clean".
  * stdout of ssh-keygen will be ignored
  * I try to answer "What has to be compiled in the kernel" 
    in the FAQ. 
  * Solved Bug in NOT_TO_RAM Feature and better Documentation.

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Wed,  3 Jan 2001 14:18:07 +0100

bootcd (2.02) unstable; urgency=low

  * Minor Changes: Comments, Manpage, Checks

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Thu, 28 Dec 2000 13:36:40 +0100

bootcd (2.01) unstable; urgency=low

  * bootcd2disk can now automatically find a harddisk, make partitions on it,
    copy cd to it and make it bootable
  * Solved Bug: Variables in conffiles can now have spaces
  * Version Number has no Debian Revision any more, because bootcd is
    a debian only package
  * Package is now build using cvs-buildpackage

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Fri, 22 Dec 2000 10:39:17 +0100

bootcd (1-6) unstable; urgency=low

  * bootcdwrite: added -t msdos when mounting cdboot.img because
    autodetection failed sometimes
  * deleted unneeded dependency to package makepatch
  * bootcdwrite: added option only_floppy
  * bootcdwrite: calling syslinux when creating floppy to get better
    boot performance
  * listing the possibility of installing new systems with
    bootcd2disk in description
  * since mkisofs 1.13 we have to use the option -graft-points. Closes: #74608

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Sun, 15 Oct 2000 18:47:23 +0200

bootcd (1-5) unstable; urgency=low

  * now bootcdflopcp recognizes empty files too.
  * extended description now really extended. closes: #67840.

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Fri, 28 Jul 2000 13:34:35 +0200

bootcd (1-4) unstable; urgency=low

  * bootcdflopcp has been changed. There will be no only diffs between ram
    and cd on floppy anymore, but whole files. This is necessary to be able
    to use newer bootcd versions, with old floppy configurations where patch
    or applypatch would not work.

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Fri, 28 Jul 2000 13:34:28 +0200

bootcd (1-3) unstable; urgency=low

  * If booting from CD-drive does not work, booting from floppy is
    possible.
  * Checking for a lot of possible problems is now done before 
    starting to burn the cd.
  * Smaller Bugfixes.

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Fri, 12 May 2000 13:57:17 +0200

bootcd (1-2) unstable; urgency=low

  * bootcd has survived first tests

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Thu,  4 May 2000 18:15:43 +0200

bootcd (1-1) unstable; urgency=low

  * Initial release.
  *
  * 

 -- Bernd Schumacher <bernd_schumacher@hp.com>  Tue, 11 Apr 2000 11:53:10 +0200

Local variables:
mode: debian-changelog
End:
