]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2008-11-19 Robert Millan <rmh@aybabtu.com>
authorrobertmh <robertmh@localhost>
Thu, 20 Nov 2008 18:07:10 +0000 (18:07 +0000)
committerrobertmh <robertmh@localhost>
Thu, 20 Nov 2008 18:07:10 +0000 (18:07 +0000)
        * kern/i386/coreboot/init.c (grub_time_tics): Remove variable.
        (grub_get_rtc, grub_exit): Abort with grub_fatal() if called.

ChangeLog
kern/i386/coreboot/init.c

index 49f32ce2ed4a874e02d90f503a1bc3bad50051d5..8009d80228051a5ef0b4868885ed4836c88afe9d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-11-19  Robert Millan  <rmh@aybabtu.com>
+
+       * kern/i386/coreboot/init.c (grub_time_tics): Remove variable.
+       (grub_get_rtc, grub_exit): Abort with grub_fatal() if called.
+
 2008-11-19  Robert Millan  <rmh@aybabtu.com>
 
        * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Fix a typo.
index 3a50050998969147fcaf1216cfbd53be370c9744..9978d4a17c3f32da340aaa52b6689f12bb3421fa 100644 (file)
@@ -43,13 +43,10 @@ extern char _end[];
 grub_addr_t grub_os_area_addr;
 grub_size_t grub_os_area_size;
 
-/* FIXME: we need interrupts to do this right */
-static grub_uint32_t grub_time_tics = 0;
-
 grub_uint32_t
 grub_get_rtc (void)
 {
-  return grub_time_tics;
+  grub_fatal ("grub_get_rtc() is not implemented.\n");
 }
 
 /* Stop the floppy drive from spinning, so that other software is
@@ -63,8 +60,7 @@ grub_stop_floppy (void)
 void
 grub_exit (void)
 {
-  grub_printf ("grub_exit() is not implemented.\n");
-  grub_stop ();
+  grub_fatal ("grub_exit() is not implemented.\n");
 }
 
 void