From owner-freebsd-bugs@FreeBSD.ORG Mon Feb 27 10:20:12 2006 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F80B16A420 for ; Mon, 27 Feb 2006 10:20:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B44443D45 for ; Mon, 27 Feb 2006 10:20:12 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k1RAKBLM043343 for ; Mon, 27 Feb 2006 10:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k1RAKBwT043342; Mon, 27 Feb 2006 10:20:11 GMT (envelope-from gnats) Date: Mon, 27 Feb 2006 10:20:11 GMT Message-Id: <200602271020.k1RAKBwT043342@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Dmitry Kazarov Cc: Subject: Re: bin/93857: Utility for loading the kernel charset translation tables on system boot X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dmitry Kazarov List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2006 10:20:12 -0000 The following reply was made to PR bin/93857; it has been noted by GNATS. From: Dmitry Kazarov To: Gleb Smirnoff Cc: freebsd-gnats-submit@freebsd.org, mlaier@freebsd.org Subject: Re: bin/93857: Utility for loading the kernel charset translation tables on system boot Date: Mon, 27 Feb 2006 13:17:19 +0300 Hi, Gleb! I have not digged deeply into kiconv functionality - I do not know way it loads data into kernel. I use /usr/lib/libkiconv.so which makes all work for me. System utils mount_{cd9660,udf,msdosfs,ntfs} works just this way. IMHO if kernel interface is going to be changed the libkiconv.so is the best place for changes. In other hand I can not find anything about firmwire(9) - no mans, no pages on www.freebsd.org Sincerely yours Dmitry В сообщении от Понедельник 27 февраля 2006 10:39 Gleb Smirnoff написал(a): > On Sun, Feb 26, 2006 at 02:20:57PM +0000, Dmitry Kazarov wrote: > D> >Synopsis: Utility for loading the kernel charset translation > tables on system boot > > I've heard opinion that current API for loading tables into kernel is > hack. Don't remember exactly, who said this. Afaik it can be found in > some other PR. > > Now in FreeBSD we have a special API to load some data blob into kernel - > firmwire(9). Is it possible to rewrite charset translation tables > loading code to use this API? Is it a good idea?