[Midnightbsd-cvs] src [9729] trunk/sys/boot/userboot/userboot: bzip
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Fri Dec 22 15:40:35 EST 2017
Revision: 9729
http://svnweb.midnightbsd.org/src/?rev=9729
Author: laffer1
Date: 2017-12-22 15:40:35 -0500 (Fri, 22 Dec 2017)
Log Message:
-----------
bzip
Modified Paths:
--------------
trunk/sys/boot/userboot/userboot/Makefile
trunk/sys/boot/userboot/userboot/autoload.c
trunk/sys/boot/userboot/userboot/bootinfo.c
trunk/sys/boot/userboot/userboot/bootinfo32.c
trunk/sys/boot/userboot/userboot/bootinfo64.c
trunk/sys/boot/userboot/userboot/conf.c
trunk/sys/boot/userboot/userboot/copy.c
trunk/sys/boot/userboot/userboot/devicename.c
trunk/sys/boot/userboot/userboot/elf32_freebsd.c
trunk/sys/boot/userboot/userboot/elf64_freebsd.c
trunk/sys/boot/userboot/userboot/host.c
trunk/sys/boot/userboot/userboot/libuserboot.h
trunk/sys/boot/userboot/userboot/main.c
trunk/sys/boot/userboot/userboot/userboot_cons.c
trunk/sys/boot/userboot/userboot/userboot_disk.c
Modified: trunk/sys/boot/userboot/userboot/Makefile
===================================================================
--- trunk/sys/boot/userboot/userboot/Makefile 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/Makefile 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,9 +1,10 @@
-# $FreeBSD$
+# $MidnightBSD$
+# $FreeBSD: stable/9/sys/boot/userboot/userboot/Makefile 256266 2013-10-10 12:46:26Z bdrewery $
NO_MAN=
-WITHOUT_SSP=
.include <bsd.own.mk>
+MK_SSP= no
SHLIB_NAME= userboot.so
NO_CTF= yes
Modified: trunk/sys/boot/userboot/userboot/autoload.c
===================================================================
--- trunk/sys/boot/userboot/userboot/autoload.c 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/autoload.c 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 2011 Google, Inc.
* All rights reserved.
Modified: trunk/sys/boot/userboot/userboot/bootinfo.c
===================================================================
--- trunk/sys/boot/userboot/userboot/bootinfo.c 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/bootinfo.c 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 1998 Michael Smith <msmith at freebsd.org>
* All rights reserved.
Modified: trunk/sys/boot/userboot/userboot/bootinfo32.c
===================================================================
--- trunk/sys/boot/userboot/userboot/bootinfo32.c 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/bootinfo32.c 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 1998 Michael Smith <msmith at freebsd.org>
* All rights reserved.
Modified: trunk/sys/boot/userboot/userboot/bootinfo64.c
===================================================================
--- trunk/sys/boot/userboot/userboot/bootinfo64.c 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/bootinfo64.c 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 1998 Michael Smith <msmith at freebsd.org>
* All rights reserved.
Modified: trunk/sys/boot/userboot/userboot/conf.c
===================================================================
--- trunk/sys/boot/userboot/userboot/conf.c 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/conf.c 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 1997
* Matthias Drochner. All rights reserved.
@@ -32,7 +33,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/9/sys/boot/userboot/userboot/conf.c 284312 2015-06-12 11:41:47Z avg $");
#include <stand.h>
@@ -58,6 +59,7 @@
&host_fsops,
&ufs_fsops,
&gzipfs_fsops,
+ &bzipfs_fsops,
NULL
};
Modified: trunk/sys/boot/userboot/userboot/copy.c
===================================================================
--- trunk/sys/boot/userboot/userboot/copy.c 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/copy.c 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 2011 Google, Inc.
* All rights reserved.
Modified: trunk/sys/boot/userboot/userboot/devicename.c
===================================================================
--- trunk/sys/boot/userboot/userboot/devicename.c 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/devicename.c 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 1998 Michael Smith <msmith at freebsd.org>
* All rights reserved.
Modified: trunk/sys/boot/userboot/userboot/elf32_freebsd.c
===================================================================
--- trunk/sys/boot/userboot/userboot/elf32_freebsd.c 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/elf32_freebsd.c 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 1998 Michael Smith <msmith at freebsd.org>
* All rights reserved.
Modified: trunk/sys/boot/userboot/userboot/elf64_freebsd.c
===================================================================
--- trunk/sys/boot/userboot/userboot/elf64_freebsd.c 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/elf64_freebsd.c 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 1998 Michael Smith <msmith at freebsd.org>
* All rights reserved.
Modified: trunk/sys/boot/userboot/userboot/host.c
===================================================================
--- trunk/sys/boot/userboot/userboot/host.c 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/host.c 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 2011 Google, Inc.
* All rights reserved.
Modified: trunk/sys/boot/userboot/userboot/libuserboot.h
===================================================================
--- trunk/sys/boot/userboot/userboot/libuserboot.h 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/libuserboot.h 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 2011 Google, Inc.
* All rights reserved.
Modified: trunk/sys/boot/userboot/userboot/main.c
===================================================================
--- trunk/sys/boot/userboot/userboot/main.c 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/main.c 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 1998 Michael Smith <msmith at freebsd.org>
* Copyright (c) 1998,2000 Doug Rabson <dfr at freebsd.org>
Modified: trunk/sys/boot/userboot/userboot/userboot_cons.c
===================================================================
--- trunk/sys/boot/userboot/userboot/userboot_cons.c 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/userboot_cons.c 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 2011 Google, Inc.
* All rights reserved.
Modified: trunk/sys/boot/userboot/userboot/userboot_disk.c
===================================================================
--- trunk/sys/boot/userboot/userboot/userboot_disk.c 2017-12-22 20:37:38 UTC (rev 9728)
+++ trunk/sys/boot/userboot/userboot/userboot_disk.c 2017-12-22 20:40:35 UTC (rev 9729)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*-
* Copyright (c) 2011 Google, Inc.
* All rights reserved.
More information about the Midnightbsd-cvs
mailing list