From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15172 invoked by alias); 29 Jan 2002 19:47:38 -0000 Mailing-List: contact sid-cvs-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: sid-cvs-owner@sources.redhat.com Received: (qmail 15118 invoked by uid 9289); 29 Jan 2002 19:47:36 -0000 Date: Tue, 29 Jan 2002 11:47:00 -0000 Message-ID: <20020129194736.15115.qmail@sources.redhat.com> From: fitzsim@sources.redhat.com To: sid-cvs@sources.redhat.com Subject: src/sid/component/bochs ChangeLog Makefile.am ... X-SW-Source: 2002-q1/txt/msg00014.txt.bz2 List-Id: CVSROOT: /cvs/src Module name: src Changes by: fitzsim@sources.redhat.com 2002-01-29 11:47:35 Modified files: sid/component/bochs: ChangeLog Makefile.am Makefile.in bochs.h components.cxx config.h.in configure configure.in mkinstalldirs sid/component/bochs/cpu: exception.cc main-hack.cc proc_ctrl.cc protect_ctrl_pro.cc sid/component/bochs/gui: x-gui.cc x-gui.h sid/component/bochs/vga: sid-vga-wrapper.cc sid-vga-wrapper.h Added files: sid/component/bochs/keyboard: Makefile.am Makefile.in keyboard.cc keyboard.h keysymbols.h sid-keyboard-wrapper.cc sid-keyboard-wrapper.h sid/component/bochs/keyboard/tests: kbd-test.c Log message: * Makefile.am (SUBDIRLIST): Add keyboard. (SUBLIBLIST): Add keyboard/libkeyboard.la. (INCLUDES): Add keyboard directory. * bochs.h [BX_SUPPORT_SID] (BX_SET_ENABLE_A20): Change expansion to nil. [BX_SUPPORT_SID] (BX_GET_ENABLE_A20): Change expansion to 0. Make declaration of bx_dbg unconditional. Include keyboard/keyboard.h. * components.cxx: Add type hw-input-keyboard. * config.h.in (BX_SUPPORT_PAGING): Set to 1. (BX_USE_TLB): Likewise. (BX_USE_KEY_SMF): Set to 0. * configure.in: Add keyboard/Makefile to AC_OUTPUT. * cpu/exception.cc: Remove BX_DEBUGGER ifdefs from around bx_dbg references. * cpu/proc_ctrl.cc: Likewise. * cpu/protect_ctrl_pro.cc: Likewise. * gui/x-gui.h: Add generate_scancode_pin output_pin. * gui/x-gui.cc: Add ascii_to_key_event array. (x_gui): Add generate-scancode pin. (handle_events): Add checks for KeyPress and KeyRelease events. (xkeypress): New function. * keyboard/Makefile.am: New file. * keyboard/Makefile.in: Likewise. * keyboard/keyboard.cc: Likewise. * keyboard/keyboard.h: Likewise. * keyboard/keysymbols.h: Likewise. * keyboard/sid-keyboard-wrapper.cc: Likewise. * keyboard/sid-keyboard-wrapper.h: Likewise. * keyboard/tests: Likewise. * keyboard/tests/kbd-test.c: Likewise. * vga/sid-vga-wrapper.cc (vga): Change port pin names. * vga/sid-vga-wrapper.h: Change VGA_SID_WRAPPER_DEF_H to SID_VGA_WRAPPER_DEF_H. Patches: http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/ChangeLog.diff?cvsroot=src&r1=1.4&r2=1.5 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/Makefile.am.diff?cvsroot=src&r1=1.2&r2=1.3 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/Makefile.in.diff?cvsroot=src&r1=1.2&r2=1.3 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/bochs.h.diff?cvsroot=src&r1=1.2&r2=1.3 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/components.cxx.diff?cvsroot=src&r1=1.2&r2=1.3 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/config.h.in.diff?cvsroot=src&r1=1.2&r2=1.3 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/configure.diff?cvsroot=src&r1=1.3&r2=1.4 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/configure.in.diff?cvsroot=src&r1=1.2&r2=1.3 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/mkinstalldirs.diff?cvsroot=src&r1=1.2&r2=1.3 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/cpu/exception.cc.diff?cvsroot=src&r1=1.1&r2=1.2 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/cpu/main-hack.cc.diff?cvsroot=src&r1=1.1&r2=1.2 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/cpu/proc_ctrl.cc.diff?cvsroot=src&r1=1.1&r2=1.2 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/cpu/protect_ctrl_pro.cc.diff?cvsroot=src&r1=1.1&r2=1.2 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/gui/x-gui.cc.diff?cvsroot=src&r1=1.1&r2=1.2 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/gui/x-gui.h.diff?cvsroot=src&r1=1.1&r2=1.2 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/keyboard/Makefile.am.diff?cvsroot=src&r1=NONE&r2=1.1 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/keyboard/Makefile.in.diff?cvsroot=src&r1=NONE&r2=1.1 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/keyboard/keyboard.cc.diff?cvsroot=src&r1=NONE&r2=1.1 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/keyboard/keyboard.h.diff?cvsroot=src&r1=NONE&r2=1.1 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/keyboard/keysymbols.h.diff?cvsroot=src&r1=NONE&r2=1.1 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/keyboard/sid-keyboard-wrapper.cc.diff?cvsroot=src&r1=NONE&r2=1.1 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/keyboard/sid-keyboard-wrapper.h.diff?cvsroot=src&r1=NONE&r2=1.1 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/keyboard/tests/kbd-test.c.diff?cvsroot=src&r1=NONE&r2=1.1 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/vga/sid-vga-wrapper.cc.diff?cvsroot=src&r1=1.1&r2=1.2 http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/component/bochs/vga/sid-vga-wrapper.h.diff?cvsroot=src&r1=1.1&r2=1.2