From: Erez Zadok Date: Wed, 7 Sep 2005 23:39:30 +0000 (+0000) Subject: * minor new port: i386-pc-linux-deb3.1. X-Git-Tag: before-clocktime-fixes~7 X-Git-Url: https://git.fsl.cs.stonybrook.edu/?a=commitdiff_plain;h=18ff9bee8b36c09e621f3f0f00dd53e9b5f856e8;p=am-utils-6.1.git * minor new port: i386-pc-linux-deb3.1. * conf/mount/mount_linux.c: If autoconf didn't find any disk-based file system on this system (probably because /proc isn't mounted), then provide some default definition for this file to compile. --- diff --git a/.cvsignore b/.cvsignore index 5686e65..49cd3e2 100644 --- a/.cvsignore +++ b/.cvsignore @@ -157,3 +157,4 @@ A.sparc64-unknown-linux-gentoo1.4.16 A.i386-pc-linux-fc4 A.i386-pc-linux-suse9.3 A.i386-pc-linuxoldld-deb3.1 +A.i386-pc-linux-deb3.1 diff --git a/ChangeLog b/ChangeLog index c2c6bef..8eee0cc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2005-09-07 Erez Zadok + + * minor new port: i386-pc-linux-deb3.1. + +2005-09-02 Erez Zadok + + * conf/mount/mount_linux.c: If autoconf didn't find any disk-based + file system on this system (probably because /proc isn't mounted), + then provide some default definition for this file to compile. + 2005-08-28 Daniel P. Ottavio * amd/sun_map.c (sun_entry2amd) : Wipe out any trailing white @@ -10,7 +20,7 @@ * amd/mapc.c : oops, reverting bad changes * amd/sun_map_parse.y : oops, reverting bad changes - + 2005-08-27 Erez Zadok * libamu/xutil.c: amd_program_number is a u_long now. diff --git a/NEWS b/NEWS index 4962181..af23bab 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,8 @@ *** Notes specific to am-utils version 6.2a1 +- minor new ports: + i386-pc-linux-deb3.1 + XXX: Dan, document sun_map_syntax flag in more detail in am-utils.texi and (more briefly) in amd.conf.5. And in this NEWS file, also briefly. diff --git a/conf/mount/mount_linux.c b/conf/mount/mount_linux.c index f7c3639..5d9cdef 100644 --- a/conf/mount/mount_linux.c +++ b/conf/mount/mount_linux.c @@ -51,6 +51,14 @@ #include +#ifndef MOUNT_TYPE_UFS +/* + * Autoconf didn't find any disk-based f/s on this system, + * So provide some default definition for this file to compile. + */ +# define MOUNT_TYPE_UFS "no_disk_fs" +#endif /* not MOUNT_TYPE_UFS */ + struct opt_map { const char *opt; /* option name */ int inv; /* true if flag value should be inverted */