From 31e64b0823ea0d48dd13ae7bac80476c7a7f85b5 Mon Sep 17 00:00:00 2001 From: Jacob Potter Date: Mon, 6 Oct 2008 05:42:13 -0400 Subject: [PATCH] add magic reboot butan --- net/net.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/net/net.c b/net/net.c index 46ea9cd..eac5d0e 100644 --- a/net/net.c +++ b/net/net.c @@ -44,10 +44,14 @@ void handle_command(packet_t * p) outputf("NIC: Command: 0x%x, %d bytes", p->command, dl); - if (p->command == 0x42) - { + switch (p->command) { + case 0x42: for (i = 0; i < dl; i++) kbd_inject_key(p->data[i]); + break; + case 0xFE: + outb(0xCF9, 0x4); /* Reboot */ + break; } } -- 2.39.2