]> Joshua Wise's Git repositories - netwatch.git/commitdiff
more licensing
authorJacob Potter <jdpotter@andrew.cmu.edu>
Tue, 16 Dec 2008 19:51:55 +0000 (14:51 -0500)
committerJacob Potter <jdpotter@andrew.cmu.edu>
Tue, 16 Dec 2008 19:51:55 +0000 (14:51 -0500)
14 files changed:
pci/pci-bother.c
pci/pci-linux.c
pci/pci-raw.c
pci/pci.c
tools/frob-rls.c
tools/pci.c
tools/poke-rls-asm.S
tools/poke-rls.c
tools/port.c
tools/smram-linux-tool.c
video/fb.c
video/generic.c
video/text.c
video/tnt2.c

index f05c41716d6cd25ea5d4ef7adadc836474978660..bc6429ac9d302d4da15e9b518538e320763cbc6e 100644 (file)
@@ -1,3 +1,13 @@
+/* pci-bother.c
+ * PCI bothering code
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
 #include <pci.h>
 #include <pci-bother.h>
 
 #include <pci.h>
 #include <pci-bother.h>
 
index c957bd088a2f3dd886f7f2bccac406070d819b5c..892c6eb4227d01d9710f6ef6daed8954e3353b2f 100644 (file)
@@ -1,3 +1,13 @@
+/* pci-linux.c
+ * Linux user-mode based PCI implementation
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
index f6448b8ccbc9bd65114a2c1a114f8bb95400d46a..37f5f79507763846c4bc7ffede10eb8d064c4797 100644 (file)
@@ -1,3 +1,13 @@
+/* pci-raw.c
+ * Raw PCI implementation
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
 #include <io.h>
 #include <stdint.h>
 #include <pci.h>
 #include <io.h>
 #include <stdint.h>
 #include <pci.h>
index 5fd03b414dbf4ea2e69fc560718c6df597552a4a..997ebdad7472123cf7944c324a9f4abd3209b49f 100644 (file)
--- a/pci/pci.c
+++ b/pci/pci.c
@@ -1,3 +1,13 @@
+/* pci.c
+ * General-purpose PCI probe routines
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
 #include <pci.h>
 #include <output.h>
 
 #include <pci.h>
 #include <output.h>
 
index 3ff4e5336681ec9b9cc635df663732b1875e7848..fac0dc524097b40e99ed7172d6486456dbd92f59 100644 (file)
@@ -1,3 +1,13 @@
+/* frob-rls.c
+ * GBL_RLS flag manipulator.
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
 #include <sys/io.h>
 #include <reg-82801b.h>
 #include <string.h>
 #include <sys/io.h>
 #include <reg-82801b.h>
 #include <string.h>
index abfb8a59d601b725b474957d127716bf37a49bbe..cf488a1a81ef3b89ef0097296ca0c1624fef9284 100644 (file)
@@ -1,3 +1,13 @@
+/* pci.c
+ * Arbitrary PCI space reader/writer utility
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
 #include <pci.h>
 #include <string.h>
 
 #include <pci.h>
 #include <string.h>
 
index 2273169c16374fddb2cef3cfb8f6b09dc2466d0a..a67503e254bbdcc87d8bb9e8ab7331e74cab3cfd 100644 (file)
@@ -1,3 +1,11 @@
+# poke-rls-asm.S
+# Helper functions for poke-rls.c
+# NetWatch system management mode administration console
+#
+# Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+# This program is free software; you can redistribute and/or modify it under
+# the terms found in the file LICENSE in the root of this source tree.
+
 .global poke
 poke:
        mov 8(%esp), %ecx
 .global poke
 poke:
        mov 8(%esp), %ecx
index 586b4f8776c34ced8e3a47046bb0c6d2b1ef0e73..557e7a9b0ec02bf25b639cc4f7857e7baa294056 100644 (file)
@@ -1,3 +1,13 @@
+/* poke-rls.c
+ * Linux-side communication packet utility
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
 #include <sys/io.h>
 #include <reg-82801b.h>
 #include <string.h>
 #include <sys/io.h>
 #include <reg-82801b.h>
 #include <string.h>
index c939913edc2b59d0b9c6b8de92ef3a7006642ca5..d1395b45c8d555e1779d235920092cdf3f99e741 100644 (file)
@@ -1,3 +1,13 @@
+/* port.c
+ * General port I/O utility
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
 #include <sys/io.h>
 #include <string.h>
 
 #include <sys/io.h>
 #include <string.h>
 
index 0511f6be493fcef6733b6ae104d33d96c518f5bb..02112a48a101cc32893e019e75f4760510078e32 100644 (file)
@@ -1,3 +1,14 @@
+/* smram-linux-tool.c
+ * General SMRAM manipulation utility
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
+
 #include <unistd.h>
 #include <getopt.h>
 #include <stdlib.h>
 #include <unistd.h>
 #include <getopt.h>
 #include <stdlib.h>
index 416b3b26423ef6424c47489a567ccfdf1eed61a9..3dba65cd3e05498072a1798af454b7d3ba126d45 100644 (file)
@@ -1,3 +1,13 @@
+/* fb.c
+ * Framebuffer device pointer
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
 #include <fb.h>
 
 struct fbdevice *fb = 0;
 #include <fb.h>
 
 struct fbdevice *fb = 0;
index 95f564f470b3d9893dcefd27f1c2cf0c75c18eb0..c35cd5dd14cd9fd31efaa8b34d7eaf0f867faca4 100644 (file)
@@ -1,3 +1,13 @@
+/* generic.c
+ * Helper functions for dealing with generic RGB888 framebuffers
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
 #include <stdint.h>
 #include <fb.h>
 #include <crc32.h>
 #include <stdint.h>
 #include <fb.h>
 #include <crc32.h>
index 4f35f97b34822f857a0e478d06d0bf9fdef11a3a..4f26b8ed8ec80098fc5eceb1f83c31a6aedcace5 100644 (file)
@@ -1,3 +1,13 @@
+/* text.c
+ * Text console checksum and rendering functions
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
 #include <io.h>
 #include <text.h>
 #include <paging.h>
 #include <io.h>
 #include <text.h>
 #include <paging.h>
index 382739370db83a4bfc607aad4b11f1c88096d104..6da661eedd7f0e888770f93e8541d57d09278f06 100644 (file)
@@ -1,3 +1,13 @@
+/* tnt2.c
+ * NVidia TNT2 driver.
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
 #include <minilib.h>
 #include <io.h>
 #include <pci.h>
 #include <minilib.h>
 #include <io.h>
 #include <pci.h>
This page took 0.037894 seconds and 4 git commands to generate.