]> Joshua Wise's Git repositories - netwatch.git/blobdiff - tools/poke-rls.c
more licensing
[netwatch.git] / tools / poke-rls.c
index 6946fb75fbe42d480670abb10c1f1c41e82190ca..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>
@@ -28,7 +38,8 @@ int main(int argc, char **argv)
        packet_t * packet = (packet_t *)memalign(4096, sizeof(packet_t));
 
        packet->signature = 0x1BADD00D;
-       packet->type = 0xF00FC7C8;
+       packet->type = 42;
+       strcpy(packet->data, "hello, world!");
 
        if (iopl(3) < 0)
        {
@@ -38,4 +49,10 @@ int main(int argc, char **argv)
        
        res = poke(_get_PMBASE() + 0x04, (void *)packet);
        printf("returned %p\n", res);
+
+       if (res == 42) {
+               int i;
+               for (i = 0; i < 96; i++)
+                       printf("%s\n", packet->data + i * 41);
+       }
 }
This page took 0.022065 seconds and 4 git commands to generate.