From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14782 invoked by alias); 6 Oct 2003 21:21:06 -0000 Mailing-List: contact sid-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: sid-owner@sources.redhat.com Received: (qmail 14774 invoked from network); 6 Oct 2003 21:21:01 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (207.219.125.105) by sources.redhat.com with SMTP; 6 Oct 2003 21:21:01 -0000 Received: from redhat.com (topaz.toronto.redhat.com [172.16.14.227]) by touchme.toronto.redhat.com (Postfix) with ESMTP id F34FA800153 for ; Mon, 6 Oct 2003 17:21:00 -0400 (EDT) Message-ID: <3F81DCBC.5020708@redhat.com> Date: Mon, 06 Oct 2003 21:21:00 -0000 From: Dave Brolley Organization: Red Hat Canada, Ltd User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.2) Gecko/20021216 X-Accept-Language: en-us, en MIME-Version: 1.0 To: sid@sources.redhat.com Subject: [patch] Ignore FRV when configuring SID Content-Type: multipart/mixed; boundary="------------020102010201070903010304" X-SW-Source: 2003-q4/txt/msg00001.txt.bz2 This is a multi-part message in MIME format. --------------020102010201070903010304 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 81 I'm committing the attached patch which ignores frv when configuring sid. Dave --------------020102010201070903010304 Content-Type: text/plain; name="fr550-sid.ChangeLog" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="fr550-sid.ChangeLog" Content-length: 87 2003-10-06 Dave Brolley * config.sub: Add frv to be ignored. --------------020102010201070903010304 Content-Type: text/plain; name="fr550-sid.patch.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="fr550-sid.patch.txt" Content-length: 1430 Index: sid/config/config.sub =================================================================== RCS file: /cvs/src/src/sid/config/config.sub,v retrieving revision 1.2 diff -c -p -r1.2 config.sub *** sid/config/config.sub 17 Dec 2001 09:31:22 -0000 1.2 --- sid/config/config.sub 6 Oct 2003 20:12:43 -0000 *************** *** 1,6 **** #! /bin/sh # Configuration validation subroutine script, version 1.1. ! # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000 # Free Software Foundation, Inc. version='2000-08-29' --- 1,6 ---- #! /bin/sh # Configuration validation subroutine script, version 1.1. ! # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2003 # Free Software Foundation, Inc. version='2000-08-29' *************** case $basic_machine in *** 252,257 **** --- 252,260 ---- mips64vr4111 | mips64vr4111el) # CYGNUS LOCAL dj/vr4111 basic_machine=$basic_machine-unknown ;; + frv) + basic_machine=$basic_machine-unknown + ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown *************** case $basic_machine in *** 300,305 **** --- 303,310 ---- | mips64vr4111-* | mips64vr4111el-*) ;; # END CYGNUS LOCAL + frv-*) + ;; mips64vr4300-* | mips64vr4300el-*) # EGCS LOCAL jsmith/vr4300 ;; mips64vr4100-* | mips64vr4100el-*) # EGCS LOCAL jsmith/vr4100 --------------020102010201070903010304--