diff --git a/sys/kern/kern_acl.c b/sys/kern/kern_acl.c index e58f392f3a6b..2ed6affbefb0 100644 --- a/sys/kern/kern_acl.c +++ b/sys/kern/kern_acl.c @@ -2,6 +2,8 @@ * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/kern/kern_cap.c b/sys/kern/kern_cap.c index 6f9507e24e22..af0413a6c5ce 100644 --- a/sys/kern/kern_cap.c +++ b/sys/kern/kern_cap.c @@ -5,6 +5,9 @@ * Copyright (c) 1999 Ilmar S. Habibulin * All rights reserved. * + * This software was developed by Robert Watson and Ilmar Habibulin + * for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/kern/subr_acl_posix1e.c b/sys/kern/subr_acl_posix1e.c index e58f392f3a6b..2ed6affbefb0 100644 --- a/sys/kern/subr_acl_posix1e.c +++ b/sys/kern/subr_acl_posix1e.c @@ -2,6 +2,8 @@ * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/kern/vfs_acl.c b/sys/kern/vfs_acl.c index e58f392f3a6b..2ed6affbefb0 100644 --- a/sys/kern/vfs_acl.c +++ b/sys/kern/vfs_acl.c @@ -2,6 +2,8 @@ * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/sys/acl.h b/sys/sys/acl.h index 923a355ce428..9fa451d10bd4 100644 --- a/sys/sys/acl.h +++ b/sys/sys/acl.h @@ -2,6 +2,8 @@ * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/sys/extattr.h b/sys/sys/extattr.h index d53ab0302f81..bca21bd4d792 100644 --- a/sys/sys/extattr.h +++ b/sys/sys/extattr.h @@ -1,7 +1,9 @@ /*- - * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson + * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -26,17 +28,8 @@ * $FreeBSD$ */ /* - * Userland/kernel interface for Extended File System Attributes - * - * This code from the FreeBSD POSIX.1e implementation. While the syscalls - * are fully implemented, invoking the VFS vnops and VFS calls as necessary, - * no file systems shipped with this version of FreeBSD implement these - * calls. Extensions to UFS/FFS to support extended attributes are - * available from the POSIX.1e implementation page, or possibly in a more - * recent version of FreeBSD. - * - * The POSIX.1e implementation page may be reached at: - * http://www.watson.org/fbsd-hardening/posix1e/ + * Developed by the TrustedBSD Project. + * Support for extended file system attributes. */ #ifndef _SYS_EXTATTR_H_ diff --git a/sys/ufs/ufs/acl.h b/sys/ufs/ufs/acl.h index f9f1e37d7b90..e12f6755fe63 100644 --- a/sys/ufs/ufs/acl.h +++ b/sys/ufs/ufs/acl.h @@ -1,7 +1,9 @@ /*- - * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson + * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -26,7 +28,8 @@ * $FreeBSD$ */ /* - * TrustedBSD Project - ACL support for the UFS file system. + * Developed by the TrustedBSD Project. + * Support for POSIX.1e access control lists. */ #ifndef _UFS_UFS_ACL_H_ diff --git a/sys/ufs/ufs/extattr.h b/sys/ufs/ufs/extattr.h index 0eca43f81c89..4f56de902601 100644 --- a/sys/ufs/ufs/extattr.h +++ b/sys/ufs/ufs/extattr.h @@ -1,7 +1,9 @@ /*- - * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson + * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -26,7 +28,8 @@ * $FreeBSD$ */ /* - * TrustedBSD Project - extended attribute support for UFS-like file systems + * Developed by the TrustedBSD Project. + * Support for extended file system attributes. */ #ifndef _UFS_UFS_EXTATTR_H_ diff --git a/sys/ufs/ufs/ufs_acl.c b/sys/ufs/ufs/ufs_acl.c index c5df402c8fc8..18fc57490466 100644 --- a/sys/ufs/ufs/ufs_acl.c +++ b/sys/ufs/ufs/ufs_acl.c @@ -1,7 +1,9 @@ /*- - * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson + * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/ufs/ufs/ufs_extattr.c b/sys/ufs/ufs/ufs_extattr.c index a4ba6adac22d..71ed166fd163 100644 --- a/sys/ufs/ufs/ufs_extattr.c +++ b/sys/ufs/ufs/ufs_extattr.c @@ -1,7 +1,9 @@ /*- - * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson + * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -26,7 +28,8 @@ * $FreeBSD$ */ /* - * TrustedBSD Project - extended attribute support for UFS-like file systems + * Developed by the TrustedBSD Project. + * Support for file system extended attribute: UFS-specific support functions. */ #include