diff options
author | yokota <yokota@FreeBSD.org> | 1997-05-21 14:18:00 +0000 |
---|---|---|
committer | yokota <yokota@FreeBSD.org> | 1997-05-21 14:18:00 +0000 |
commit | 41c227a2dad532489f1d90cf1a5c33069e8c2e8f (patch) | |
tree | 65e802bb77ee987eb01eaf2e7a60aba2426fac59 | |
parent | e4cd4c6f621e00fe5b33afef45c6cfc78a392dbb (diff) | |
download | FreeBSD-src-41c227a2dad532489f1d90cf1a5c33069e8c2e8f.zip FreeBSD-src-41c227a2dad532489f1d90cf1a5c33069e8c2e8f.tar.gz |
Introducing "Jumping Daemon" screen saver. This is really cute and
eye-catching :-)
Submitted by: ssigala@globalnet.it
Also fixed some `extern' declarations in saver.h.
-rw-r--r-- | lkm/syscons/Makefile | 4 | ||||
-rw-r--r-- | lkm/syscons/saver.h | 6 | ||||
-rw-r--r-- | sys/modules/syscons/Makefile | 4 | ||||
-rw-r--r-- | sys/modules/syscons/saver.h | 6 |
4 files changed, 10 insertions, 10 deletions
diff --git a/lkm/syscons/Makefile b/lkm/syscons/Makefile index edd608e..195fd03 100644 --- a/lkm/syscons/Makefile +++ b/lkm/syscons/Makefile @@ -1,5 +1,5 @@ -# $Id$ +# $Id: Makefile,v 1.3 1997/02/22 12:48:58 peter Exp $ -SUBDIR= blank fade green snake star +SUBDIR= blank daemon fade green snake star .include <bsd.subdir.mk> diff --git a/lkm/syscons/saver.h b/lkm/syscons/saver.h index 533e9e6..67ac358 100644 --- a/lkm/syscons/saver.h +++ b/lkm/syscons/saver.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $Id: saver.h,v 1.7 1997/02/22 12:49:00 peter Exp $ */ #include <sys/param.h> @@ -46,6 +46,6 @@ extern char crtc_vga; extern char scr_map[]; extern int scrn_blanked; extern int fonts_loaded; -extern char *font_8, *font_14, *font_16; -extern char *palette; +extern char font_8[], font_14[], font_16[]; +extern char palette[]; extern char *video_mode_ptr; diff --git a/sys/modules/syscons/Makefile b/sys/modules/syscons/Makefile index edd608e..195fd03 100644 --- a/sys/modules/syscons/Makefile +++ b/sys/modules/syscons/Makefile @@ -1,5 +1,5 @@ -# $Id$ +# $Id: Makefile,v 1.3 1997/02/22 12:48:58 peter Exp $ -SUBDIR= blank fade green snake star +SUBDIR= blank daemon fade green snake star .include <bsd.subdir.mk> diff --git a/sys/modules/syscons/saver.h b/sys/modules/syscons/saver.h index 533e9e6..67ac358 100644 --- a/sys/modules/syscons/saver.h +++ b/sys/modules/syscons/saver.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $Id: saver.h,v 1.7 1997/02/22 12:49:00 peter Exp $ */ #include <sys/param.h> @@ -46,6 +46,6 @@ extern char crtc_vga; extern char scr_map[]; extern int scrn_blanked; extern int fonts_loaded; -extern char *font_8, *font_14, *font_16; -extern char *palette; +extern char font_8[], font_14[], font_16[]; +extern char palette[]; extern char *video_mode_ptr; |