From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 30 23:10:04 2004 Return-Path: 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 F1D4816A4CF for ; Mon, 30 Aug 2004 23:10:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E493C43D48 for ; Mon, 30 Aug 2004 23:10:03 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i7UNA35F034454 for ; Mon, 30 Aug 2004 23:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7UNA3VM034453; Mon, 30 Aug 2004 23:10:03 GMT (envelope-from gnats) Date: Mon, 30 Aug 2004 23:10:03 GMT Message-Id: <200408302310.i7UNA3VM034453@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Cyrille Lefevre" Subject: Re: kern/71142: vesa [1024x768] mode support X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Cyrille Lefevre List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2004 23:10:04 -0000 The following reply was made to PR kern/71142; it has been noted by GNATS. From: "Cyrille Lefevre" To: "gnats-submit @FreeBSD.org" Cc: Subject: Re: kern/71142: vesa [1024x768] mode support Date: Tue, 31 Aug 2004 00:57:16 +0200 Hi, please, apply the following script to the above patch, sorry :( ex. : qp2txt patch.eml | patch cat << EOF > qp2txt; chmod +x qp2txt #!/usr/bin/awk -f BEGIN { hex = "0123456789ABCDEF" } function qp2txt(old, new, n, c1, c2) { while (n = index(old, "=")) { c1 = index(hex, substr(old, n+1, 1)) - 1 if (c1 < 0) { new = new substr(old, 0, n-1) getline old } else { c2 = index(hex, substr(old, n+2, 1)) - 1 new = new substr(old, 0, n-1) sprintf("%c", c1*16+c2) old = substr(old, n+3) } } return new old } { print qp2txt($0) } EOF or apply http://www.freebsd.org/cgi/query-pr.cgi?pr=bin/26005 and use : unvis -q patch.eml | patch Cyrille Lefevre. -- home: mailto:cyrille.lefevre@laposte.net