merge with mainline

This commit is contained in:
BVK Chaitanya 2010-08-23 21:50:38 +05:30
commit 9444311834
4 changed files with 13 additions and 8 deletions

View file

@ -1,3 +1,14 @@
2010-08-23 Colin Watson <cjwatson@ubuntu.com>
* kern/mips/startup.S (grub_prefix): Update comment to refer to
grub-mkimage rather than grub-mkelfimage.
* kern/powerpc/ieee1275/startup.S (grub_prefix): Likewise.
2010-08-22 Vladimir Serbinenko <phcoder@gmail.com>
* term/at_keyboard.c (grub_at_keyboard_getkey_noblock): Don't discard
a key after CapsLock or NumLock. It's just a qemu bug.
2010-08-21 Vladimir Serbinenko <phcoder@gmail.com>
* include/grub/usb.h (grub_usb_device): Add 'data' field back. It's

View file

@ -148,7 +148,7 @@ compressed:
VARIABLE(grub_prefix)
/* to be filled by grub-mkelfimage */
/* to be filled by grub-mkimage */
/*
* Leave some breathing room for the prefix.

View file

@ -33,7 +33,7 @@ _start:
. = _start + GRUB_KERNEL_MACHINE_PREFIX
VARIABLE(grub_prefix)
/* to be filled by grub-mkelfimage */
/* to be filled by grub-mkimage */
/*
* Leave some breathing room for the prefix.

View file

@ -181,9 +181,6 @@ grub_at_keyboard_getkey_noblock (void)
switch (code)
{
case CAPS_LOCK:
/* Caps lock sends scan code twice. Get the second one and discard it. */
while (grub_keyboard_getkey () == -1);
at_keyboard_status ^= KEYBOARD_STATUS_CAPS_LOCK;
led_status ^= KEYBOARD_LED_CAPS;
keyboard_controller_led (led_status);
@ -194,9 +191,6 @@ grub_at_keyboard_getkey_noblock (void)
key = -1;
break;
case NUM_LOCK:
/* Num lock sends scan code twice. Get the second one and discard it. */
while (grub_keyboard_getkey () == -1);
at_keyboard_status ^= KEYBOARD_STATUS_NUM_LOCK;
led_status ^= KEYBOARD_LED_NUM;
keyboard_controller_led (led_status);