Up to [cvs.NetBSD.org] / src / sbin / restore
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.74 / (download) - annotate - [select for diffs], Mon Dec 12 16:53:30 2022 UTC (3 months, 1 week ago) by chs
Branch: MAIN
CVS Tags: netbsd-10-base,
netbsd-10,
HEAD
Changes since 1.73: +10 -10
lines
Diff to previous 1.73 (colored)
apply this commit from FreeBSD: commit 9dda00df7e8f9279a43d92758df6a7e10a9aed95 Author: Chuck Silvers <chs@FreeBSD.org> Date: Mon Dec 12 08:14:17 2022 -0800 restore: fix restore of NFS4 ACLs Changing the mode bits on a file with an NFS4 ACL results in the NFS4 ACL being replaced by one matching the new mode bits being set, so when restoring a file with an NFS4 ACL, set the owner/group/mode first and then set the NFS4 ACL, so that setting the mode does not throw away the ACL that we just set. Reviewed by: mckusick Differential Revision: https://reviews.freebsd.org/D37618
Revision 1.73 / (download) - annotate - [select for diffs], Sat Dec 10 18:49:44 2022 UTC (3 months, 2 weeks ago) by chs
Branch: MAIN
Changes since 1.72: +5 -3
lines
Diff to previous 1.72 (colored)
apply this change from FreeBSD: commit c028393d7072f1f88efd8d6e6c77bb9b15b3f3b6 Author: Kirk McKusick <mckusick@FreeBSD.org> Date: Fri Apr 11 21:48:14 2008 +0000 Correctly set file group when restore is run by a user other than root.
Revision 1.72 / (download) - annotate - [select for diffs], Thu May 5 07:45:43 2022 UTC (10 months, 3 weeks ago) by mrg
Branch: MAIN
Changes since 1.71: +3 -3
lines
Diff to previous 1.71 (colored)
include the filename in the panic message for missing data. instead of merely seeing: getfile: lost data now this is seen: getfile: lost data: ./usr/libdata/debug/usr/libexec/cc1.debug
Revision 1.71 / (download) - annotate - [select for diffs], Sat Jun 19 13:56:35 2021 UTC (21 months, 1 week ago) by christos
Branch: MAIN
Changes since 1.70: +284 -39
lines
Diff to previous 1.70 (colored)
Add external attribute dumping and restoring support from FreeBSD. Does not fully work yet, attributes are being saved and restored correctly, but don't appear in the restored files somehow.
Revision 1.70 / (download) - annotate - [select for diffs], Thu Mar 11 01:13:11 2021 UTC (2 years ago) by msaitoh
Branch: MAIN
CVS Tags: cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1,
cjep_staticlib_x-base,
cjep_staticlib_x
Changes since 1.69: +3 -3
lines
Diff to previous 1.69 (colored)
s/skiping/skipping/
Revision 1.69 / (download) - annotate - [select for diffs], Thu Sep 3 19:31:34 2020 UTC (2 years, 6 months ago) by bouyer
Branch: MAIN
Changes since 1.68: +5 -3
lines
Diff to previous 1.68 (colored)
If we hit an unknown header type (likely to be a corrupt record), and the user choose to not abort, skip to the next header instead of trying to use it. This allowed me to recover files from a corrupt dump, instead of getting a segfault.
Revision 1.67.8.1 / (download) - annotate - [select for diffs], Thu Mar 3 14:30:52 2016 UTC (7 years ago) by martin
Branch: netbsd-7
CVS Tags: netbsd-7-nhusb-base-20170116,
netbsd-7-nhusb-base,
netbsd-7-nhusb,
netbsd-7-2-RELEASE,
netbsd-7-1-RELEASE,
netbsd-7-1-RC2,
netbsd-7-1-RC1,
netbsd-7-1-2-RELEASE,
netbsd-7-1-1-RELEASE,
netbsd-7-1
Changes since 1.67: +15 -15
lines
Diff to previous 1.67 (colored) next main 1.68 (colored)
Pull up following revision(s) (requested by nakayama in ticket #1096): bin/mv/mv.c: revision 1.44 bin/cp/utils.c: revision 1.43-1.44 lib/librumphijack/hijack.c: revision 1.112-1.115 usr.bin/touch/touch.c: revision 1.33 sbin/restore/tape.c: revision 1.68 sbin/restore/dirs.c: revision 1.51 Don't truncate at sub-microsecond while preserving timestamps. One of motivation of this change is to make the behavior of test(1) -nt/ot with preserved copy (like cp -p) closer to the NetBSD 6. Of course whether full timestamps are kept or not depends also on underlying file system. The ifdef added in mv(1) since existing ifdefs was our local change to compile it on solaris (though I couldn't test it): http://mail-index.netbsd.org/tech-userlevel/2014/11/28/msg008831.html Fix the name of failed function in warning message. Hijack utimensat(2) so that t_vfs test passes after cp(1)/mv(1) are changed to use the system call. Linux also has this system call, but not tested this on linux. Also hijack futimens(2) so that t_sh test passes. Define a generic ATCALL() and use it to implement utimensat() Make ATCALL() behave for absolute paths too.
Revision 1.67.10.1 / (download) - annotate - [select for diffs], Thu Mar 3 14:27:54 2016 UTC (7 years ago) by martin
Branch: netbsd-7-0
CVS Tags: netbsd-7-0-2-RELEASE,
netbsd-7-0-1-RELEASE
Changes since 1.67: +15 -15
lines
Diff to previous 1.67 (colored) next main 1.68 (colored)
Pull up following revision(s) (requested by nakayama in ticket #1096): bin/mv/mv.c: revision 1.44 bin/cp/utils.c: revision 1.43-1.44 lib/librumphijack/hijack.c: revision 1.112-1.115 usr.bin/touch/touch.c: revision 1.33 sbin/restore/tape.c: revision 1.68 sbin/restore/dirs.c: revision 1.51 Don't truncate at sub-microsecond while preserving timestamps. One of motivation of this change is to make the behavior of test(1) -nt/ot with preserved copy (like cp -p) closer to the NetBSD 6. Of course whether full timestamps are kept or not depends also on underlying file system. The ifdef added in mv(1) since existing ifdefs was our local change to compile it on solaris (though I couldn't test it): http://mail-index.netbsd.org/tech-userlevel/2014/11/28/msg008831.html Fix the name of failed function in warning message. Hijack utimensat(2) so that t_vfs test passes after cp(1)/mv(1) are changed to use the system call. Linux also has this system call, but not tested this on linux. Also hijack futimens(2) so that t_sh test passes. Define a generic ATCALL() and use it to implement utimensat() Make ATCALL() behave for absolute paths too.
Revision 1.68 / (download) - annotate - [select for diffs], Mon Mar 2 03:17:24 2015 UTC (8 years ago) by enami
Branch: MAIN
CVS Tags: prg-localcount2-base3,
prg-localcount2-base2,
prg-localcount2-base1,
prg-localcount2-base,
prg-localcount2,
phil-wifi-base,
phil-wifi-20200421,
phil-wifi-20200411,
phil-wifi-20200406,
phil-wifi-20191119,
phil-wifi-20190609,
phil-wifi,
pgoyette-localcount-base,
pgoyette-localcount-20170426,
pgoyette-localcount-20170320,
pgoyette-localcount-20170107,
pgoyette-localcount-20161104,
pgoyette-localcount-20160806,
pgoyette-localcount-20160726,
pgoyette-localcount,
pgoyette-compat-merge-20190127,
pgoyette-compat-base,
pgoyette-compat-20190127,
pgoyette-compat-20190118,
pgoyette-compat-1226,
pgoyette-compat-1126,
pgoyette-compat-1020,
pgoyette-compat-0930,
pgoyette-compat-0906,
pgoyette-compat-0728,
pgoyette-compat-0625,
pgoyette-compat-0521,
pgoyette-compat-0502,
pgoyette-compat-0422,
pgoyette-compat-0415,
pgoyette-compat-0407,
pgoyette-compat-0330,
pgoyette-compat-0322,
pgoyette-compat-0315,
pgoyette-compat,
perseant-stdc-iso10646-base,
perseant-stdc-iso10646,
netbsd-9-base,
netbsd-9-3-RELEASE,
netbsd-9-2-RELEASE,
netbsd-9-1-RELEASE,
netbsd-9-0-RELEASE,
netbsd-9-0-RC2,
netbsd-9-0-RC1,
netbsd-9,
netbsd-8-base,
netbsd-8-2-RELEASE,
netbsd-8-1-RELEASE,
netbsd-8-1-RC1,
netbsd-8-0-RELEASE,
netbsd-8-0-RC2,
netbsd-8-0-RC1,
netbsd-8,
matt-nb8-mediatek-base,
matt-nb8-mediatek,
localcount-20160914,
is-mlppp-base,
is-mlppp,
bouyer-socketcan-base1,
bouyer-socketcan-base,
bouyer-socketcan
Changes since 1.67: +15 -15
lines
Diff to previous 1.67 (colored)
Don't truncate at microseconds while preserving timestamps. One of motivation of this change is to make the behavior of test(1) -nt/ot with preserved copy (like cp -p) closer to the NetBSD 6. Of course whether full timestamps are kept or not depends also on underlying file system. The ifdef added in mv(1) since existing ifdefs was our local change to compile it on solaris (though I couldn't test it): http://mail-index.netbsd.org/tech-userlevel/2014/11/28/msg008831.html
Revision 1.66.8.1 / (download) - annotate - [select for diffs], Mon Feb 25 00:28:10 2013 UTC (10 years, 1 month ago) by tls
Branch: tls-maxphys
Changes since 1.66: +3 -3
lines
Diff to previous 1.66 (colored) next main 1.67 (colored)
resync with head
Revision 1.66.2.1 / (download) - annotate - [select for diffs], Wed Jan 23 00:05:33 2013 UTC (10 years, 2 months ago) by yamt
Branch: yamt-pagecache
CVS Tags: yamt-pagecache-tag8
Changes since 1.66: +3 -3
lines
Diff to previous 1.66 (colored) next main 1.67 (colored)
sync with head
Revision 1.67 / (download) - annotate - [select for diffs], Tue Jan 22 09:39:13 2013 UTC (10 years, 2 months ago) by dholland
Branch: MAIN
CVS Tags: yamt-pagecache-base9,
yamt-pagecache-base8,
tls-maxphys-base,
tls-earlyentropy-base,
tls-earlyentropy,
riastradh-xf86-video-intel-2-7-1-pre-2-21-15,
riastradh-drm2-base3,
riastradh-drm2-base2,
riastradh-drm2-base1,
riastradh-drm2-base,
riastradh-drm2,
netbsd-7-base,
netbsd-7-0-RELEASE,
netbsd-7-0-RC3,
netbsd-7-0-RC2,
netbsd-7-0-RC1,
agc-symver-base,
agc-symver
Branch point for: netbsd-7-0,
netbsd-7
Changes since 1.66: +3 -3
lines
Diff to previous 1.66 (colored)
Stuff UFS_ in front of a few of ufs's symbols to reduce namespace pollution. Specifically: ROOTINO -> UFS_ROOTINO WINO -> UFS_WINO NXADDR -> UFS_NXADDR NDADDR -> UFS_NDADDR NIADDR -> UFS_NIADDR MAXSYMLINKLEN -> UFS_MAXSYMLINKLEN MAXSYMLINKLEN_UFS[12] -> UFS[12]_MAXSYMLINKLEN (for consistency) Sort out ext2fs's misuse of NDADDR and NIADDR; fortunately, these have the same values in ext2fs and ffs. No functional change intended.
Revision 1.66 / (download) - annotate - [select for diffs], Mon Aug 29 14:35:03 2011 UTC (11 years, 7 months ago) by joerg
Branch: MAIN
CVS Tags: yamt-pagecache-base7,
yamt-pagecache-base6,
yamt-pagecache-base5,
yamt-pagecache-base4,
yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
netbsd-6-base,
netbsd-6-1-RELEASE,
netbsd-6-1-RC4,
netbsd-6-1-RC3,
netbsd-6-1-RC2,
netbsd-6-1-RC1,
netbsd-6-1-5-RELEASE,
netbsd-6-1-4-RELEASE,
netbsd-6-1-3-RELEASE,
netbsd-6-1-2-RELEASE,
netbsd-6-1-1-RELEASE,
netbsd-6-1,
netbsd-6-0-RELEASE,
netbsd-6-0-RC2,
netbsd-6-0-RC1,
netbsd-6-0-6-RELEASE,
netbsd-6-0-5-RELEASE,
netbsd-6-0-4-RELEASE,
netbsd-6-0-3-RELEASE,
netbsd-6-0-2-RELEASE,
netbsd-6-0-1-RELEASE,
netbsd-6-0,
netbsd-6,
matt-nb6-plus-nbase,
matt-nb6-plus-base,
matt-nb6-plus
Branch point for: yamt-pagecache,
tls-maxphys
Changes since 1.65: +3 -3
lines
Diff to previous 1.65 (colored)
Use __dead
Revision 1.65 / (download) - annotate - [select for diffs], Sat Aug 6 20:46:42 2011 UTC (11 years, 7 months ago) by dholland
Branch: MAIN
Changes since 1.64: +50 -20
lines
Diff to previous 1.64 (colored)
Add wrapper functions around hash algorithm operations to avoid undefined behavior arising from illegal function casts. As a side effect, no longer need -Wno-pointer-sign either.
Revision 1.64 / (download) - annotate - [select for diffs], Sat Aug 6 17:01:06 2011 UTC (11 years, 7 months ago) by dholland
Branch: MAIN
Changes since 1.63: +13 -13
lines
Diff to previous 1.63 (colored)
Simplify silly code and make it closer to type-safe. This causes amd64 gcc to reorder two pairs of instructions for some reason but the object files are otherwise unchanged.
Revision 1.61.2.1 / (download) - annotate - [select for diffs], Wed May 13 19:19:05 2009 UTC (13 years, 10 months ago) by jym
Branch: jym-xensuspend
Changes since 1.61: +4 -4
lines
Diff to previous 1.61 (colored) next main 1.62 (colored)
Sync with HEAD. Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
Revision 1.63 / (download) - annotate - [select for diffs], Tue Apr 7 12:38:13 2009 UTC (13 years, 11 months ago) by lukem
Branch: MAIN
CVS Tags: matt-premerge-20091211,
matt-mips64-premerge-20101231,
jym-xensuspend-nbase,
jym-xensuspend-base,
cherry-xenmp-base,
cherry-xenmp,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2
Changes since 1.62: +3 -3
lines
Diff to previous 1.62 (colored)
fix sign-compare issues
Revision 1.62 / (download) - annotate - [select for diffs], Wed Feb 18 13:13:27 2009 UTC (14 years, 1 month ago) by yamt
Branch: MAIN
Changes since 1.61: +3 -3
lines
Diff to previous 1.61 (colored)
remove a useless cast.
Revision 1.60.4.1 / (download) - annotate - [select for diffs], Sat Jan 17 13:48:53 2009 UTC (14 years, 2 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.60: +8 -2
lines
Diff to previous 1.60 (colored) next main 1.61 (colored)
Sync with HEAD.
Revision 1.60.10.1 / (download) - annotate - [select for diffs], Fri Jan 2 21:08:49 2009 UTC (14 years, 2 months ago) by snj
Branch: netbsd-5
CVS Tags: netbsd-5-2-RELEASE,
netbsd-5-2-RC1,
netbsd-5-2-3-RELEASE,
netbsd-5-2-2-RELEASE,
netbsd-5-2-1-RELEASE,
netbsd-5-2,
netbsd-5-1-RELEASE,
netbsd-5-1-RC4,
netbsd-5-1-RC3,
netbsd-5-1-RC2,
netbsd-5-1-RC1,
netbsd-5-1-5-RELEASE,
netbsd-5-1-4-RELEASE,
netbsd-5-1-3-RELEASE,
netbsd-5-1-2-RELEASE,
netbsd-5-1-1-RELEASE,
netbsd-5-1,
netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
matt-nb5-pq3-base,
matt-nb5-pq3,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-premerge-20091211,
matt-nb5-mips64-k15,
matt-nb5-mips64,
matt-nb4-mips64-k7-u2a-k9b
Changes since 1.60: +8 -2
lines
Diff to previous 1.60 (colored) next main 1.61 (colored)
Pull up following revision(s) (requested by hannken in ticket #210): include/protocols/dumprestore.h: revision 1.15 sbin/restore/tape.c: revision 1.61 Make restore work for Linux dump volumes by ignoring extended attribute records on these volumes. Tested with Centos 5.2. Reviewed by: Manuel Bouyer <bouyer@netbsd.org>
Revision 1.61 / (download) - annotate - [select for diffs], Fri Dec 26 19:26:04 2008 UTC (14 years, 3 months ago) by hannken
Branch: MAIN
CVS Tags: mjf-devfs2-base
Branch point for: jym-xensuspend
Changes since 1.60: +8 -2
lines
Diff to previous 1.60 (colored)
Make restore work for Linux dump volumes by ignoring extended attribute records on these volumes. Tested with Centos 5.2. Reviewed by: Manuel Bouyer <bouyer@netbsd.org>
Revision 1.59.4.1 / (download) - annotate - [select for diffs], Sun Mar 23 00:44:24 2008 UTC (15 years ago) by matt
Branch: matt-armv6
Changes since 1.59: +4 -4
lines
Diff to previous 1.59 (colored) next main 1.60 (colored)
sync with HEAD
Revision 1.59.6.1 / (download) - annotate - [select for diffs], Mon Feb 18 21:04:17 2008 UTC (15 years, 1 month ago) by mjf
Branch: mjf-devfs
Changes since 1.59: +4 -4
lines
Diff to previous 1.59 (colored) next main 1.60 (colored)
Sync with HEAD.
Revision 1.60 / (download) - annotate - [select for diffs], Sat Feb 16 17:58:01 2008 UTC (15 years, 1 month ago) by matt
Branch: MAIN
CVS Tags: yamt-pf42-baseX,
yamt-pf42-base4,
yamt-pf42-base3,
yamt-pf42-base2,
yamt-pf42-base,
yamt-pf42,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
wrstuden-revivesa,
netbsd-5-base,
mjf-devfs-base,
matt-mips64-base2,
matt-armv6-nbase,
keiichi-mipv6-base,
keiichi-mipv6,
hpcarm-cleanup-nbase,
hpcarm-cleanup-base
Branch point for: netbsd-5,
mjf-devfs2
Changes since 1.59: +4 -4
lines
Diff to previous 1.59 (colored)
Fix some inconsisent/conflicting definitions and missing parameters
Revision 1.57.2.1 / (download) - annotate - [select for diffs], Sun Mar 4 14:22:25 2007 UTC (16 years ago) by bouyer
Branch: netbsd-4
CVS Tags: wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-RC1,
netbsd-4-0-1-RELEASE,
netbsd-4-0
Changes since 1.57: +56 -63
lines
Diff to previous 1.57 (colored) next main 1.58 (colored)
Pull up following revision(s) (requested by hannken in ticket #483): sbin/restore/tape.c: revision 1.59 via patch Add support for Solaris ufsdump volumes with more than 512*1024 inodes. Here the bitmaps are written as CLRI or BITS with c_count <= 512 ADDR* for the remaining blocks Remove the bitmap handling from getfile(), remove xtrmap() and xtrmapskip(). Add new function getbitmap() modeled after getfile() that does bitmap allocation, bitmap expansion and sets maxino. Reviewed by: Manuel Bouyer <bouyer@netbsd.org>
Revision 1.52.2.1 / (download) - annotate - [select for diffs], Sat Mar 3 23:09:17 2007 UTC (16 years ago) by bouyer
Branch: netbsd-3
Changes since 1.52: +56 -63
lines
Diff to previous 1.52 (colored) next main 1.53 (colored)
Pull up following revision(s) (requested by hannken in ticket #1674): sbin/restore/tape.c: revision 1.59 Add support for Solaris ufsdump volumes with more than 512*1024 inodes. Here the bitmaps are written as CLRI or BITS with c_count <= 512 ADDR* for the remaining blocks Remove the bitmap handling from getfile(), remove xtrmap() and xtrmapskip(). Add new function getbitmap() modeled after getfile() that does bitmap allocation, bitmap expansion and sets maxino. Reviewed by: Manuel Bouyer <bouyer@netbsd.org>
Revision 1.59 / (download) - annotate - [select for diffs], Fri Feb 9 09:36:02 2007 UTC (16 years, 1 month ago) by hannken
Branch: MAIN
CVS Tags: matt-mips64-base,
matt-mips64,
matt-armv6-prevmlocking,
matt-armv6-base,
hpcarm-cleanup,
cube-autoconf-base,
cube-autoconf
Branch point for: mjf-devfs,
matt-armv6
Changes since 1.58: +56 -63
lines
Diff to previous 1.58 (colored)
Add support for Solaris ufsdump volumes with more than 512*1024 inodes. Here the bitmaps are written as CLRI or BITS with c_count <= 512 ADDR* for the remaining blocks Remove the bitmap handling from getfile(), remove xtrmap() and xtrmapskip(). Add new function getbitmap() modeled after getfile() that does bitmap allocation, bitmap expansion and sets maxino. Reviewed by: Manuel Bouyer <bouyer@netbsd.org>
Revision 1.58 / (download) - annotate - [select for diffs], Mon Dec 18 20:07:32 2006 UTC (16 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.57: +9 -11
lines
Diff to previous 1.57 (colored)
Convert a couple of "(void)&" constructs to volatile. Flag various unused parameters in restore and dump so that these will compile with -Wextra. (Note: restore uses some stuff from dump.)
Revision 1.57 / (download) - annotate - [select for diffs], Mon Oct 30 01:21:53 2006 UTC (16 years, 5 months ago) by christos
Branch: MAIN
CVS Tags: netbsd-4-base
Branch point for: netbsd-4
Changes since 1.56: +3 -3
lines
Diff to previous 1.56 (colored)
find rmd160.h
Revision 1.56 / (download) - annotate - [select for diffs], Mon Oct 16 03:12:23 2006 UTC (16 years, 5 months ago) by christos
Branch: MAIN
Changes since 1.55: +3 -3
lines
Diff to previous 1.55 (colored)
c99 iniitializer
Revision 1.55 / (download) - annotate - [select for diffs], Sun Sep 25 04:16:22 2005 UTC (17 years, 6 months ago) by elad
Branch: MAIN
CVS Tags: abandoned-netbsd-4-base,
abandoned-netbsd-4
Changes since 1.54: +3 -3
lines
Diff to previous 1.54 (colored)
Use crypto/rmd160.h.
Revision 1.54 / (download) - annotate - [select for diffs], Fri Aug 19 02:07:19 2005 UTC (17 years, 7 months ago) by christos
Branch: MAIN
Changes since 1.53: +17 -13
lines
Diff to previous 1.53 (colored)
64 bit inode changes
Revision 1.53 / (download) - annotate - [select for diffs], Mon Jun 27 01:55:52 2005 UTC (17 years, 9 months ago) by christos
Branch: MAIN
Changes since 1.52: +9 -7
lines
Diff to previous 1.52 (colored)
sprinkle const.
Revision 1.52 / (download) - annotate - [select for diffs], Thu Feb 17 15:00:33 2005 UTC (18 years, 1 month ago) by xtraeme
Branch: MAIN
CVS Tags: netbsd-3-base,
netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1,
netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE,
netbsd-3-0
Branch point for: netbsd-3
Changes since 1.51: +45 -70
lines
Diff to previous 1.51 (colored)
Kill __P(), use ANSI function declarations.
Revision 1.51 / (download) - annotate - [select for diffs], Fri Oct 22 22:38:38 2004 UTC (18 years, 5 months ago) by bouyer
Branch: MAIN
Changes since 1.50: +40 -6
lines
Diff to previous 1.50 (colored)
Add an option (-M) to write a mtree specification (which needs to be passed through sort before being feed to mtree) with file flags, instead of restoring file flags at the same time as other attributes. Fix various issue with schg, uchg, sappnd or uappnd flags which cause restore to fail in some case. Discussed on tech-userlevel: http://mail-index.netbsd.org/tech-userlevel/2004/10/12/0000.html
Revision 1.50 / (download) - annotate - [select for diffs], Tue Jul 27 02:17:06 2004 UTC (18 years, 8 months ago) by enami
Branch: MAIN
Changes since 1.49: +68 -7
lines
Diff to previous 1.49 (colored)
Add -D flag which computes the digest of each regular files in the archive using specified algorithm (currently md5, rmd160 or sha1) and write them to standard output.
Revision 1.49 / (download) - annotate - [select for diffs], Thu Aug 7 10:04:38 2003 UTC (19 years, 7 months ago) by agc
Branch: MAIN
CVS Tags: netbsd-2-base,
netbsd-2-1-RELEASE,
netbsd-2-1-RC6,
netbsd-2-1-RC5,
netbsd-2-1-RC4,
netbsd-2-1-RC3,
netbsd-2-1-RC2,
netbsd-2-1-RC1,
netbsd-2-1,
netbsd-2-0-base,
netbsd-2-0-RELEASE,
netbsd-2-0-RC5,
netbsd-2-0-RC4,
netbsd-2-0-RC3,
netbsd-2-0-RC2,
netbsd-2-0-RC1,
netbsd-2-0-3-RELEASE,
netbsd-2-0-2-RELEASE,
netbsd-2-0-1-RELEASE,
netbsd-2-0,
netbsd-2
Changes since 1.48: +3 -7
lines
Diff to previous 1.48 (colored)
Move UCB-licensed code from 4-clause to 3-clause licence. Patches provided by Joel Baker in PR 22308, verified by myself.
Revision 1.48 / (download) - annotate - [select for diffs], Wed Apr 2 10:39:31 2003 UTC (19 years, 11 months ago) by fvdl
Branch: MAIN
Changes since 1.47: +194 -167
lines
Diff to previous 1.47 (colored)
Add support for UFS2. UFS2 is an enhanced FFS, adding support for 64 bit block pointers, extended attribute storage, and a few other things. This commit does not yet include the code to manipulate the extended storage (for e.g. ACLs), this will be done later. Originally written by Kirk McKusick and Network Associates Laboratories for FreeBSD.
Revision 1.47 / (download) - annotate - [select for diffs], Thu Mar 27 14:11:51 2003 UTC (20 years ago) by taca
Branch: MAIN
Changes since 1.46: +4 -2
lines
Diff to previous 1.46 (colored)
Since "host" is used when RRESTORE is defined, enclose variable definition with "#ifdef RRESTORE" and "#endif".
Revision 1.46 / (download) - annotate - [select for diffs], Sat May 25 23:45:14 2002 UTC (20 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: fvdl_fs64_base
Changes since 1.45: +3 -16
lines
Diff to previous 1.45 (colored)
__STDC__ is always defined on NetBSD.
Revision 1.45 / (download) - annotate - [select for diffs], Tue Feb 19 19:16:38 2002 UTC (21 years, 1 month ago) by perseant
Branch: MAIN
CVS Tags: netbsd-1-6-base,
netbsd-1-6-RELEASE,
netbsd-1-6-RC3,
netbsd-1-6-RC2,
netbsd-1-6-RC1,
netbsd-1-6-PATCH002-RELEASE,
netbsd-1-6-PATCH002-RC4,
netbsd-1-6-PATCH002-RC3,
netbsd-1-6-PATCH002-RC2,
netbsd-1-6-PATCH002-RC1,
netbsd-1-6-PATCH002,
netbsd-1-6-PATCH001-RELEASE,
netbsd-1-6-PATCH001-RC3,
netbsd-1-6-PATCH001-RC2,
netbsd-1-6-PATCH001-RC1,
netbsd-1-6-PATCH001,
netbsd-1-6
Changes since 1.44: +5 -3
lines
Diff to previous 1.44 (colored)
Don't forget to update curfile, if tape begins with TS_ADDR type block. In particular, this means that if one member (say the last member) of a tape set begins with continuation blocks, restore will not consider that tape to contain all the inodes (curfile.ino==0 at the beginning of the tape). Close PR #15545.
Revision 1.44 / (download) - annotate - [select for diffs], Sun Dec 23 14:40:42 2001 UTC (21 years, 3 months ago) by lukem
Branch: MAIN
Changes since 1.43: +10 -5
lines
Diff to previous 1.43 (colored)
fix compile issues now that on-tape times are int32_t instead of time_t
Revision 1.43 / (download) - annotate - [select for diffs], Wed Jan 24 23:14:04 2001 UTC (22 years, 2 months ago) by enami
Branch: MAIN
Changes since 1.42: +4 -4
lines
Diff to previous 1.42 (colored)
Remove incorrect advice for lint; the control may return from panic().
Revision 1.38.2.2 / (download) - annotate - [select for diffs], Wed Oct 11 18:49:10 2000 UTC (22 years, 5 months ago) by he
Branch: netbsd-1-4
CVS Tags: netbsd-1-4-PATCH003
Changes since 1.38.2.1: +29 -9
lines
Diff to previous 1.38.2.1 (colored) to branchpoint 1.38 (colored) next main 1.39 (colored)
Pull up revisions 1.40-1.41 (requested by enami): Make restore correctly handle large dumps with large inode maps. Fixes PR#11188.
Revision 1.42 / (download) - annotate - [select for diffs], Fri Jul 7 13:24:33 2000 UTC (22 years, 8 months ago) by enami
Branch: MAIN
Changes since 1.41: +3 -2
lines
Diff to previous 1.41 (colored)
Extract file flags of symbolic link.
Revision 1.41 / (download) - annotate - [select for diffs], Tue May 23 02:27:33 2000 UTC (22 years, 10 months ago) by enami
Branch: MAIN
CVS Tags: netbsd-1-5-base,
netbsd-1-5-RELEASE,
netbsd-1-5-PATCH003,
netbsd-1-5-PATCH002,
netbsd-1-5-PATCH001,
netbsd-1-5-BETA2,
netbsd-1-5-BETA,
netbsd-1-5-ALPHA2,
netbsd-1-5,
minoura-xpg4dl-base,
minoura-xpg4dl
Changes since 1.40: +13 -4
lines
Diff to previous 1.40 (colored)
Add comment and sanity check about why we need not to skip remaining blocks if we are reading inode bitmaps.
Revision 1.40 / (download) - annotate - [select for diffs], Fri May 19 09:22:55 2000 UTC (22 years, 10 months ago) by enami
Branch: MAIN
Changes since 1.39: +20 -9
lines
Diff to previous 1.39 (colored)
Correctly extract the inode maps bigger than 512 tape blocks.
Revision 1.38.2.1 / (download) - annotate - [select for diffs], Mon Jan 31 19:46:54 2000 UTC (23 years, 1 month ago) by he
Branch: netbsd-1-4
CVS Tags: netbsd-1-4-PATCH002
Changes since 1.38: +4 -5
lines
Diff to previous 1.38 (colored)
Pull up revision 1.39 (requested by sommerfeld): Print the header even on dumps from a system with an unset host name. Fixes PR#9282.
Revision 1.39 / (download) - annotate - [select for diffs], Thu Jan 27 15:25:00 2000 UTC (23 years, 2 months ago) by sommerfeld
Branch: MAIN
Changes since 1.38: +4 -5
lines
Diff to previous 1.38 (colored)
Fix PR9282: restore doesn't print dump header on dumps from host with unset hostname.
Revision 1.38 / (download) - annotate - [select for diffs], Sun Jan 3 01:50:34 1999 UTC (24 years, 2 months ago) by lukem
Branch: MAIN
CVS Tags: wrstuden-devbsize-base,
wrstuden-devbsize-19991221,
wrstuden-devbsize,
netbsd-1-4-base,
netbsd-1-4-RELEASE,
netbsd-1-4-PATCH001,
comdex-fall-1999-base,
comdex-fall-1999
Branch point for: netbsd-1-4
Changes since 1.37: +7 -3
lines
Diff to previous 1.37 (colored)
user friendly enhancments. reworked from [bin/6710] by Brian Grayson <bgrayson@ece.utexas.edu>
Revision 1.37 / (download) - annotate - [select for diffs], Wed Jun 24 19:56:11 1998 UTC (24 years, 9 months ago) by christos
Branch: MAIN
Changes since 1.36: +10 -2
lines
Diff to previous 1.36 (colored)
Add an unlink (-u) flag so that we can use this for installs.
Revision 1.36 / (download) - annotate - [select for diffs], Wed Apr 1 16:21:47 1998 UTC (25 years ago) by kleink
Branch: MAIN
Changes since 1.35: +3 -2
lines
Diff to previous 1.35 (colored)
Need <time.h> for ctime() prototype.
Revision 1.35 / (download) - annotate - [select for diffs], Mon Mar 30 02:13:35 1998 UTC (25 years ago) by mrg
Branch: MAIN
Changes since 1.34: +3 -3
lines
Diff to previous 1.34 (colored)
use static int, not just static
Revision 1.31.2.2 / (download) - annotate - [select for diffs], Sun Dec 14 01:39:40 1997 UTC (25 years, 3 months ago) by mellon
Branch: netbsd-1-3
CVS Tags: netbsd-1-3-RELEASE,
netbsd-1-3-PATCH003-CANDIDATE2,
netbsd-1-3-PATCH003-CANDIDATE1,
netbsd-1-3-PATCH003-CANDIDATE0,
netbsd-1-3-PATCH003,
netbsd-1-3-PATCH002,
netbsd-1-3-PATCH001
Changes since 1.31.2.1: +4 -3
lines
Diff to previous 1.31.2.1 (colored) to branchpoint 1.31 (colored) next main 1.32 (colored)
Pull rev 1.34 up from trunk (enami)
Revision 1.34 / (download) - annotate - [select for diffs], Sat Dec 13 22:22:53 1997 UTC (25 years, 3 months ago) by enami
Branch: MAIN
Changes since 1.33: +4 -3
lines
Diff to previous 1.33 (colored)
Fix the bug introduced in last change; pass IFCHR or IFBLK bit to mknod(2) via mode.
Revision 1.31.2.1 / (download) - annotate - [select for diffs], Tue Nov 18 07:14:10 1997 UTC (25 years, 4 months ago) by mellon
Branch: netbsd-1-3
CVS Tags: netbsd-1-3-BETA
Changes since 1.31: +11 -11
lines
Diff to previous 1.31 (colored)
Pull rev 1.32 and 1.33 up from trunk (enami)
Revision 1.33 / (download) - annotate - [select for diffs], Tue Nov 18 03:08:21 1997 UTC (25 years, 4 months ago) by enami
Branch: MAIN
Changes since 1.32: +4 -4
lines
Diff to previous 1.32 (colored)
Use file mode 0600 when creating special file or fifo. Suggested by Charles M. Hannum.
Revision 1.32 / (download) - annotate - [select for diffs], Tue Nov 18 02:56:35 1997 UTC (25 years, 4 months ago) by enami
Branch: MAIN
Changes since 1.31: +9 -9
lines
Diff to previous 1.31 (colored)
Restore file attributes after extracting regular file. Fixes PR#4515 from stephen.ma@jtec.com.au: - call getfile() before altering file attributes. - open file with mode 0600 instead of 0666 so that file won't remain group or world readable/writable even if getfile() terminated. - also, move skipfile() before altering file attributes in IF{CHR,BLK} and IFIFO case for symmetry (suggested by Charles M. Hannum).
Revision 1.31 / (download) - annotate - [select for diffs], Sun Oct 19 13:29:30 1997 UTC (25 years, 5 months ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-1-3-base
Branch point for: netbsd-1-3
Changes since 1.30: +8 -8
lines
Diff to previous 1.30 (colored)
Use futimes(2). Do {f,}utimes(2) *before* {f,}chflags(2), for obvious reasons.
Revision 1.30 / (download) - annotate - [select for diffs], Wed Oct 8 22:51:27 1997 UTC (25 years, 5 months ago) by enami
Branch: MAIN
Changes since 1.29: +13 -3
lines
Diff to previous 1.29 (colored)
Restore owner/group/mode/atime/mtime of symbolic links.
Revision 1.29 / (download) - annotate - [select for diffs], Tue Sep 16 13:44:16 1997 UTC (25 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.28: +17 -18
lines
Diff to previous 1.28 (colored)
resolve conflicts from lite-2 merge
Revision 1.1.1.3 / (download) - annotate - [select for diffs] (vendor branch), Tue Sep 16 12:42:27 1997 UTC (25 years, 6 months ago) by lukem
Branch: WFJ-920714,
CSRG
CVS Tags: lite-2
Changes since 1.1.1.2: +63 -33
lines
Diff to previous 1.1.1.2 (colored)
imported from lite-2
Revision 1.28 / (download) - annotate - [select for diffs], Mon Sep 15 08:04:40 1997 UTC (25 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.27: +24 -15
lines
Diff to previous 1.27 (colored)
* cleanup for WARNS=1 * fix use of .Nm
Revision 1.27 / (download) - annotate - [select for diffs], Sun Jul 6 08:51:32 1997 UTC (25 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.26: +2 -6
lines
Diff to previous 1.26 (colored)
as inspired by a commit message of Todd Miller <millert@cvs.openbsd.org>: * cleanup a bit for -Wall * use __progname instead of "restore"
Revision 1.26 / (download) - annotate - [select for diffs], Tue Apr 15 07:12:25 1997 UTC (25 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.25: +3 -3
lines
Diff to previous 1.25 (colored)
use _PATH_DEFTAPE from <paths.h> instead of "pathnames.h" cleanup references/examples to use /dev/rst* instead of /dev/rmt* minor .Nm usage cleanup in man page
Revision 1.25 / (download) - annotate - [select for diffs], Wed Mar 19 08:42:55 1997 UTC (26 years ago) by lukem
Branch: MAIN
Changes since 1.24: +11 -11
lines
Diff to previous 1.24 (colored)
* use mkstemp() instead of mktemp() * remove "register" qualifiers
Revision 1.24 / (download) - annotate - [select for diffs], Thu Dec 26 17:35:35 1996 UTC (26 years, 3 months ago) by cjs
Branch: MAIN
Changes since 1.23: +3 -3
lines
Diff to previous 1.23 (colored)
Fix typo: PR bin/3059
Revision 1.20.4.2 / (download) - annotate - [select for diffs], Tue Dec 10 06:14:11 1996 UTC (26 years, 3 months ago) by mycroft
Branch: netbsd-1-2
CVS Tags: netbsd-1-2-PATCH001
Changes since 1.20.4.1: +3 -3
lines
Diff to previous 1.20.4.1 (colored) to branchpoint 1.20 (colored) next main 1.21 (colored)
From trunk: Add some missing byte-swaps, so this works across endians.
Revision 1.20.4.1 / (download) - annotate - [select for diffs], Fri Dec 6 01:50:49 1996 UTC (26 years, 3 months ago) by rat
Branch: netbsd-1-2
Changes since 1.20: +23 -23
lines
Diff to previous 1.20 (colored)
Pullup request from Chris G Demetriou <Chris_G_Demetriou@ux2.sp.cs.cmu.edu> >Make dump and restore usable on the alpha
Revision 1.23 / (download) - annotate - [select for diffs], Wed Dec 4 03:54:04 1996 UTC (26 years, 3 months ago) by mycroft
Branch: MAIN
Changes since 1.22: +3 -3
lines
Diff to previous 1.22 (colored)
Make sure to byte-swap all of the relevant fields; especially c_flags.
Revision 1.22 / (download) - annotate - [select for diffs], Sat Nov 30 18:31:29 1996 UTC (26 years, 4 months ago) by cgd
Branch: MAIN
Changes since 1.21: +3 -3
lines
Diff to previous 1.21 (colored)
When initializing 'fssize,' the size of the data buffer to be used when writing data to the file system, if the "optimal" file system I/O operation block size is less than TP_BSIZE, leave fssize alone (i.e. at its default setting of MAXBSIZE). This was causing restore's stack to be trashed, because the end-of-buffer checking/flushing code around line 680 would never notice that the buffer was full (because it'd be comparing a buffer segment index, which would always be >= 1, to fssize / TP_BSIZE, which could be zero in that case), and would keep filling and filling and filling...
Revision 1.21 / (download) - annotate - [select for diffs], Sat Nov 30 18:04:48 1996 UTC (26 years, 4 months ago) by cgd
Branch: MAIN
Changes since 1.20: +22 -22
lines
Diff to previous 1.20 (colored)
patches from Tom I Helbekkmo <tih@nhh.no> to deal with type-size issues, so this works (better, at least) on 64-bit machines (e.g. alpha).
Revision 1.20 / (download) - annotate - [select for diffs], Fri Mar 15 22:39:41 1996 UTC (27 years ago) by scottr
Branch: MAIN
CVS Tags: netbsd-1-2-base,
netbsd-1-2-RELEASE,
netbsd-1-2-BETA
Branch point for: netbsd-1-2
Changes since 1.19: +6 -3
lines
Diff to previous 1.19 (colored)
Be more paranoid with our effective uid.
Revision 1.19 / (download) - annotate - [select for diffs], Mon Jun 19 00:20:32 1995 UTC (27 years, 9 months ago) by cgd
Branch: MAIN
CVS Tags: netbsd-1-1-base,
netbsd-1-1-RELEASE,
netbsd-1-1-PATCH001,
netbsd-1-1
Changes since 1.18: +9 -9
lines
Diff to previous 1.18 (colored)
stat structure POSIXification
Revision 1.18 / (download) - annotate - [select for diffs], Sun Jun 11 05:30:36 1995 UTC (27 years, 9 months ago) by mycroft
Branch: MAIN
Changes since 1.17: +7 -7
lines
Diff to previous 1.17 (colored)
Back out previous change.
Revision 1.17 / (download) - annotate - [select for diffs], Wed Jun 7 17:16:49 1995 UTC (27 years, 9 months ago) by cgd
Branch: MAIN
Changes since 1.16: +9 -9
lines
Diff to previous 1.16 (colored)
typeof(timeval.tv_sec) != time_t
Revision 1.16 / (download) - annotate - [select for diffs], Sat Mar 18 14:59:57 1995 UTC (28 years ago) by cgd
Branch: MAIN
Changes since 1.15: +7 -2
lines
Diff to previous 1.15 (colored)
convert to new RCS Id conventions; reduce my headache
Revision 1.15 / (download) - annotate - [select for diffs], Mon Feb 20 19:43:56 1995 UTC (28 years, 1 month ago) by mycroft
Branch: MAIN
Changes since 1.14: +23 -23
lines
Diff to previous 1.14 (colored)
Use atexit() rather than tweaking every exit() to call the cleanup function.
Revision 1.14 / (download) - annotate - [select for diffs], Wed Dec 28 02:21:53 1994 UTC (28 years, 3 months ago) by mycroft
Branch: MAIN
Changes since 1.13: +28 -16
lines
Diff to previous 1.13 (colored)
Mostly sync with CSRG.
Revision 1.13 / (download) - annotate - [select for diffs], Fri Sep 23 14:27:57 1994 UTC (28 years, 6 months ago) by mycroft
Branch: MAIN
Changes since 1.12: +12 -11
lines
Diff to previous 1.12 (colored)
Eliminate uses of some obsolete functions.
Revision 1.12 / (download) - annotate - [select for diffs], Sun Sep 18 05:11:03 1994 UTC (28 years, 6 months ago) by mycroft
Branch: MAIN
Changes since 1.11: +19 -1
lines
Diff to previous 1.11 (colored)
Allow extracting FIFOs.
Revision 1.1.1.2 / (download) - annotate - [select for diffs] (vendor branch), Mon Jun 13 22:53:24 1994 UTC (28 years, 9 months ago) by mycroft
Branch: WFJ-920714,
CSRG
CVS Tags: lite-1
Changes since 1.1.1.1: +1348 -1
lines
Diff to previous 1.1.1.1 (colored)
Import 4.4-Lite version.
Revision 1.11 / (download) - annotate - [select for diffs], Wed Jun 8 19:33:45 1994 UTC (28 years, 9 months ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-1-0-base,
netbsd-1-0-RELEASE,
netbsd-1-0-PATCH1,
netbsd-1-0-PATCH06,
netbsd-1-0-PATCH05,
netbsd-1-0-PATCH04,
netbsd-1-0-PATCH03,
netbsd-1-0-PATCH02,
netbsd-1-0-PATCH0,
netbsd-1-0
Changes since 1.10: +6 -10
lines
Diff to previous 1.10 (colored)
Update from 4.4-Lite, with local changes.
Revision 1.10 / (download) - annotate - [select for diffs], Tue May 17 04:14:39 1994 UTC (28 years, 10 months ago) by cgd
Branch: MAIN
Changes since 1.9: +1353 -1
lines
Diff to previous 1.9 (colored)
copyright foo
Revision 1.9 / (download) - annotate - [select for diffs], Mon Apr 25 18:33:15 1994 UTC (28 years, 11 months ago) by cgd
Branch: MAIN
Changes since 1.8: +1 -1
lines
Diff to previous 1.8 (colored)
kill some #ifndefs
Revision 1.8 / (download) - annotate - [select for diffs], Sat Apr 2 01:50:23 1994 UTC (29 years ago) by cgd
Branch: MAIN
Changes since 1.7: +1 -1
lines
Diff to previous 1.7 (colored)
just kill the cast completely
Revision 1.7 / (download) - annotate - [select for diffs], Fri Apr 1 03:36:04 1994 UTC (29 years ago) by cgd
Branch: MAIN
Changes since 1.6: +1 -1
lines
Diff to previous 1.6 (colored)
bad cast
Revision 1.6 / (download) - annotate - [select for diffs], Tue Mar 1 00:16:15 1994 UTC (29 years, 1 month ago) by cgd
Branch: MAIN
Changes since 1.5: +1 -1
lines
Diff to previous 1.5 (colored)
Check correct header when looking at tape number. from thomas@mathematik.uni-Bremen.de
Revision 1.5 / (download) - annotate - [select for diffs], Wed Dec 22 10:32:13 1993 UTC (29 years, 3 months ago) by cgd
Branch: MAIN
Changes since 1.4: +1 -1
lines
Diff to previous 1.4 (colored)
new version from CSRG, via BSDI, with fixes
Revision 1.4 / (download) - annotate - [select for diffs], Sun Aug 1 18:25:11 1993 UTC (29 years, 8 months ago) by mycroft
Branch: MAIN
Changes since 1.3: +1 -1
lines
Diff to previous 1.3 (colored)
Add RCS identifiers.
Revision 1.3 / (download) - annotate - [select for diffs], Tue Apr 20 10:05:22 1993 UTC (29 years, 11 months ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-0-9-base,
netbsd-0-9-RELEASE,
netbsd-0-9-BETA,
netbsd-0-9-ALPHA2,
netbsd-0-9-ALPHA,
netbsd-0-9
Changes since 1.2: +1 -1
lines
Diff to previous 1.2 (colored)
Fix message.
Revision 1.2 / (download) - annotate - [select for diffs], Thu Mar 25 05:41:59 1993 UTC (30 years ago) by cgd
Branch: MAIN
CVS Tags: netbsd-alpha-1,
netbsd-0-8
Changes since 1.1: +1 -1
lines
Diff to previous 1.1 (colored)
restore didn't understand dirs which spanned more than one volume. fixed by patch from Gene Stark (gene@stark.uucp).
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sun Mar 21 09:45:37 1993 UTC (30 years ago) by cgd
Branch: WFJ-920714,
CSRG
CVS Tags: patchkit-0-2-2,
WFJ-386bsd-01
Changes since 1.1: +1 -1
lines
Diff to previous 1.1 (colored)
initial import of 386bsd-0.1 sources
Revision 1.1 / (download) - annotate - [select for diffs], Sun Mar 21 09:45:37 1993 UTC (30 years ago) by cgd
Branch: MAIN
Initial revision