linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Masahiro Adegawa <adegawa@zerosoft.co.jp>
To: linux-kernel@vger.rutgers.edu
Subject: [PATCH] SGI's kdb version v0.4
Date: Fri, 09 Jul 1999 19:41:24 +0900	[thread overview]
Message-ID: <3785D1D4130.9F7FADEGAWA@mail.zerosoft.co.jp> (raw)

Hello,

1. simple numeric address for `bp'
2. `rd c' and 'rd d'

diff -u linux-2.2.9-ik/arch/i386/kdb/kdb_bp.c linux/arch/i386/kdb/kdb_bp.c
--- linux-2.2.9-ik/arch/i386/kdb/kdb_bp.c       Mon Jun 21 15:28:32 1999
+++ linux/arch/i386/kdb/kdb_bp.c        Thu Jul  8 18:18:42 1999
@@ -348,7 +348,7 @@
 #endif

        nextarg = 1;
-       diag = kdbgetaddrarg(argc, argv, &nextarg, &addr, &offset, &symname, regs);
+       diag = kdbgetaddrarg(argc, argv, &nextarg, &addr, &offset, NULL, regs);
        if (diag)
                return diag;

diff -u linux-2.2.9-ik/arch/i386/kdb/kdbsupport.c linux/arch/i386/kdb/kdbsupport.c
--- linux-2.2.9-ik/arch/i386/kdb/kdbsupport.c   Mon Jun 21 15:28:32 1999
+++ linux/arch/i386/kdb/kdbsupport.c    Fri Jul  9 11:26:02 1999
@@ -730,8 +730,8 @@
                           dr[0], dr[1], dr[2], dr[3]);
                kdb_printf("dr6 = 0x%8.8x  dr7 = 0x%8.8x\n",
                           dr[6], dr[7]);
+               return 0;
        }
-               break;
        case 'c':
        {
                unsigned long cr[5];
@@ -741,8 +741,8 @@
                }
                kdb_printf("cr0 = 0x%8.8x  cr1 = 0x%8.8x  cr2 = 0x%8.8x  cr3 = 0x%8.8x\ncr4 = 0x%8.8x\n",
                           cr[0], cr[1], cr[2], cr[3], cr[4]);
+               return 0;
        }
-               break;
        case 'm':
                break;
        case 'r':

/*********************************************************/
(3.only Japanese 86/106 keyboards)

--- linux-2.2.9-kdb/arch/i386/kdb/kdb_io.c.org  Sat Jun  5 23:46:12 1999
+++ linux-2.2.9-kdb/arch/i386/kdb/kdb_io.c      Sun Jun  6 10:46:16 1999
@@ -183,6 +183,12 @@
                if (scancode == 0xe0) {
                        continue;
                }
+
+               if (scancode == 0x73) {         /* see driver/char/pc_keyb.c */
+                       scancode = 0x59;        /* for Japanese 86/106 keyboards */
+               } else if (scancode == 0x7d) {
+                       scancode = 0x7c;
+               }

                if (!shift_lock && !shift_key) {
                        keychar = plain_map[scancode];

 -Masahiro Adegawa

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/

                 reply	other threads:[~1999-07-09 10:44 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3785D1D4130.9F7FADEGAWA@mail.zerosoft.co.jp \
    --to=adegawa@zerosoft.co.jp \
    --cc=linux-kernel@vger.rutgers.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).