| 1 |
#! /bin/sh -e
|
| 2 |
## 02_paths.dpatch by Joerg Jaspert <joerg@debian.org>
|
| 3 |
## (Original made by some of the former Maintainers)
|
| 4 |
##
|
| 5 |
## All lines beginning with `## DP:' are a description of the patch.
|
| 6 |
## DP: Adjusts Path in manpage and adds silo definitions.
|
| 7 |
|
| 8 |
if [ $# -ne 1 ]; then
|
| 9 |
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
|
| 10 |
exit 1
|
| 11 |
fi
|
| 12 |
case "$1" in
|
| 13 |
-patch) patch -f --no-backup-if-mismatch -p0 < $0;;
|
| 14 |
-unpatch) patch -f --no-backup-if-mismatch -R -p0 < $0;;
|
| 15 |
*)
|
| 16 |
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
|
| 17 |
exit 1;;
|
| 18 |
esac
|
| 19 |
|
| 20 |
exit 0
|
| 21 |
|
| 22 |
@DPATCH@
|
| 23 |
diff -urNad cdrecord/cdrecord.1 cdrecord/cdrecord.1
|
| 24 |
--- cdrecord/cdrecord.1 2004-02-29 18:13:20.000000000 +0100
|
| 25 |
+++ cdrecord/cdrecord.1 2004-03-04 21:12:56.000000000 +0100
|
| 26 |
@@ -157,7 +157,7 @@
|
| 27 |
.I Scsibus
|
| 28 |
0 is the default SCSI bus on the machine. Watch the boot messages for more
|
| 29 |
information or look into
|
| 30 |
-.B /var/adm/messages
|
| 31 |
+.B /var/log/messages
|
| 32 |
for more information about the SCSI configuration of your machine.
|
| 33 |
If you have problems to figure out what values for
|
| 34 |
.IR scsibus , target , lun
|
| 35 |
diff -urNad mkisofs/defaults.h cdrtools-2.0+a26pre27/mkisofs/defaults.h
|
| 36 |
--- mkisofs/defaults.h 2004-03-02 00:47:25.000000000 +0100
|
| 37 |
+++ mkisofs/defaults.h 2004-03-04 21:14:43.000000000 +0100
|
| 38 |
@@ -22,6 +22,9 @@
|
| 39 |
#define VOLUME_ID_DEFAULT "CDROM"
|
| 40 |
#define BOOT_CATALOG_DEFAULT "boot.catalog"
|
| 41 |
#define BOOT_IMAGE_DEFAULT NULL
|
| 42 |
+#define SILO_BOOT_IMAGE_DEFAULT "boot/second.b"
|
| 43 |
+#define SILO_BOOTBLOCK_DEFAULT "boot/cd.b"
|
| 44 |
+#define SILO_CONF_FILE_DEFAULT "/etc/silo.conf"
|
| 45 |
#ifdef APPLE_HYB
|
| 46 |
#define APPLE_TYPE_DEFAULT "TEXT"
|
| 47 |
#define APPLE_CREATOR_DEFAULT "unix"
|