From owner-freebsd-qa Fri Dec 7 2:43:20 2001 Delivered-To: freebsd-qa@freebsd.org Received: from straylight.ringlet.net (sentinel.office1.bg [217.75.134.126]) by hub.freebsd.org (Postfix) with SMTP id 2270B37B41B for ; Fri, 7 Dec 2001 02:43:15 -0800 (PST) Received: (qmail 47941 invoked by uid 1000); 7 Dec 2001 10:42:26 -0000 Date: Fri, 7 Dec 2001 12:42:26 +0200 From: Peter Pentchev To: qa@FreeBSD.org Subject: Add Bulgarian keymap and screen font to sysinstall Message-ID: <20011207124226.B41230@straylight.oblivion.bg> Mail-Followup-To: qa@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-qa@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, Here's a patch that adds the two Bulgarian keymaps and the cp1251 font to the installation options. I am not too sure if the font menu item should not be moved to the start of the menu though, to sort the items alphabetically.. This patch, along with a RELENG_4 version, is also available at http://people.FreeBSD.org/~roam/bg/ It would be nice to have those committed and MFC'd before 4.5 :) G'luck, Peter -- If this sentence were in Chinese, it would say something else. Index: src/usr.sbin/sysinstall/Makefile =================================================================== RCS file: /home/ncvs/src/usr.sbin/sysinstall/Makefile,v retrieving revision 1.118 diff -u -r1.118 Makefile --- src/usr.sbin/sysinstall/Makefile 1 Dec 2001 13:13:27 -0000 1.118 +++ src/usr.sbin/sysinstall/Makefile 7 Dec 2001 09:10:28 -0000 @@ -76,7 +76,8 @@ .if ${MACHINE} == "pc98" KEYMAPS= jp.pc98 jp.pc98.iso .else -KEYMAPS= be.iso br275.iso cs.latin2.qwertz danish.iso finnish.iso fr.iso \ +KEYMAPS= be.iso bg.bds.ctrlcaps bg.phonetic.ctrlcaps br275.iso \ + cs.latin2.qwertz danish.iso finnish.iso fr.iso \ german.iso hr.iso hu.iso2.101keys it.iso icelandic.iso jp.106 \ norwegian.iso pl_PL.ISO8859-2 pt.iso ru.koi8-r si.iso \ spanish.iso swedish.iso swissfrench.iso swissgerman.iso ua.koi8-u \ Index: src/usr.sbin/sysinstall/menus.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/sysinstall/menus.c,v retrieving revision 1.329 diff -u -r1.329 menus.c --- src/usr.sbin/sysinstall/menus.c 26 Nov 2001 23:14:21 -0000 1.329 +++ src/usr.sbin/sysinstall/menus.c 7 Dec 2001 09:09:47 -0000 @@ -1496,6 +1496,8 @@ { " Brazil CP850", "Brazil CP850 keymap", dmenuVarCheck, dmenuSetKmapVariable, NULL, "keymap=br275.cp850" }, { " Brazil ISO (accent)", "Brazil ISO keymap (accent keys)", dmenuVarCheck, dmenuSetKmapVariable, NULL, "keymap=br275.iso.acc" }, { " Brazil ISO", "Brazil ISO keymap", dmenuVarCheck, dmenuSetKmapVariable, NULL, "keymap=br275.iso" }, + { " Bulgarian BDS", "Bulgarian BDS keymap", dmenuVarCheck, dmenuSetKmapVariable, NULL, "keymap=bg.bds.ctrlcaps" }, + { " Bulgarian Phonetic", "Bulgarian Phonetic keymap", dmenuVarCheck, dmenuSetKmapVariable, NULL, "keymap=bg.phonetic.ctrlcaps" }, { " Croatian ISO", "Croatian ISO keymap", dmenuVarCheck, dmenuSetKmapVariable, NULL, "keymap=hr.iso" }, { " Czech ISO (accent)", "Czech ISO keymap (accent keys)", dmenuVarCheck, dmenuSetKmapVariable, NULL, "keymap=cs.latin2.qwertz" }, { "Danish CP865", "Danish Code Page 865 keymap", dmenuVarCheck, dmenuSetKmapVariable, NULL, "keymap=danish.cp865" }, @@ -1683,6 +1685,8 @@ "font8x8=iso15-8x8,font8x14=iso15-8x14,font8x16=iso15-8x16" }, { "e SWISS", "English, better resolution", dmenuVarCheck, dmenuSetVariables, NULL, "font8x8=swiss-8x8,font8x14=NO,font8x16=swiss-8x16" }, + { "10 CP1251", "Bulgarian, CP1251 codepage", dmenuVarCheck, dmenuSetVariables, NULL, + "font8x8=cp1251-8x8,font8x14=cp1251-8x14,font8x16=cp1251-8x16" }, { NULL } }, }; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-qa" in the body of the message From owner-freebsd-qa Fri Dec 7 9:44:57 2001 Delivered-To: freebsd-qa@freebsd.org Received: from mail5.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by hub.freebsd.org (Postfix) with ESMTP id ED56237B416 for ; Fri, 7 Dec 2001 09:44:54 -0800 (PST) Received: (qmail 13902 invoked from network); 7 Dec 2001 17:44:53 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([64.81.54.73]) (envelope-sender ) by mail5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 7 Dec 2001 17:44:53 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20011207124226.B41230@straylight.oblivion.bg> Date: Fri, 07 Dec 2001 09:44:47 -0800 (PST) From: John Baldwin To: Peter Pentchev Subject: RE: Add Bulgarian keymap and screen font to sysinstall Cc: qa@FreeBSD.org Sender: owner-freebsd-qa@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 07-Dec-01 Peter Pentchev wrote: > Hi, > > Here's a patch that adds the two Bulgarian keymaps and the cp1251 font > to the installation options. I am not too sure if the font menu item > should not be moved to the start of the menu though, to sort the items > alphabetically.. > > This patch, along with a RELENG_4 version, is also available at > http://people.FreeBSD.org/~roam/bg/ > > It would be nice to have those committed and MFC'd before 4.5 :) Looks ok to me. Unless jkh or murray object, go ahead and commit it to -current and MFC it after a week. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-qa" in the body of the message