From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7962 invoked by alias); 22 Aug 2007 17:55:55 -0000 Received: (qmail 7468 invoked by uid 22791); 22 Aug 2007 17:55:53 -0000 X-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL,BAYES_00,DK_POLICY_SIGNSOME X-Spam-Check-By: sourceware.org Received: from quina.moeckel.org (HELO quina.moeckel.org) (217.160.223.98) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 22 Aug 2007 17:55:48 +0000 Received: from bluebird.headcrashers.bnfh (bluebird.headcrashers.org [IPv6:2001:8d8:81:a11:204:acff:fe97:190]) (authenticated bits=0) by quina.moeckel.org (8.13.8/8.13.8/Debian-3) with ESMTP id l7MHtfKQ018944 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 22 Aug 2007 19:55:42 +0200 Received: from executor.headcrashers.bnfh (IDENT:root@executor.headcrashers.bnfh [IPv6:2001:8d8:81:a11:209:6bff:fee0:8244]) by bluebird.headcrashers.bnfh (8.13.8/8.13.8) with ESMTP id l7MHteHx010240; Wed, 22 Aug 2007 19:55:40 +0200 Received: from executor.headcrashers.bnfh (IDENT:woodstoc@localhost [127.0.0.1]) by executor.headcrashers.bnfh (8.13.8/8.13.8) with ESMTP id l7MHtFcu016205; Wed, 22 Aug 2007 19:55:15 +0200 (CEST) Received: (from woodstoc@localhost) by executor.headcrashers.bnfh (8.13.8/8.13.8/Submit) id l7MHtFLj016361; Wed, 22 Aug 2007 19:55:15 +0200 (CEST) Date: Wed, 22 Aug 2007 17:55:00 -0000 From: Hans Rosenfeld To: Andrew Lunn Cc: ecos-patches@ecos.sourceware.org Subject: Re: [ECOS] Re: LPC2xxx patch for support of vectored interrupt controller Message-ID: <20070822175515.GA15974@grumpf.hope-2000.org> References: <20070820151336.GA1125@grumpf.hope-2000.org> <20070822082451.GF31057@lunn.ch> <20070822084026.GA2126@grumpf.hope-2000.org> <20070822091803.GH31057@lunn.ch> <20070822095228.GD2126@grumpf.hope-2000.org> <20070822100626.GJ31057@lunn.ch> <20070822105132.GF2126@grumpf.hope-2000.org> <20070822111216.GL31057@lunn.ch> <20070822134646.GA16442@grumpf.hope-2000.org> <20070822151524.GN31057@lunn.ch> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="wac7ysb48OaltWcw" Content-Disposition: inline In-Reply-To: <20070822151524.GN31057@lunn.ch> User-Agent: Mutt/1.4.2.2i X-Spam-Checker-Version: SpamAssassin 3.1.7-deb (2006-10-05) on quina.moeckel.org X-Virus-Checked: Checked by ClamAV on sourceware.org X-IsSubscribed: yes Mailing-List: contact ecos-patches-help@ecos.sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: ecos-patches-owner@ecos.sourceware.org X-SW-Source: 2007-08/txt/msg00047.txt.bz2 --wac7ysb48OaltWcw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 204 On Wed, Aug 22, 2007 at 05:15:24PM +0200, Andrew Lunn wrote: > However, you forgot the diff for the kernel cdl file. Oops. Here it is. -- %SYSTEM-F-ANARCHISM, The operating system has been overthrown --wac7ysb48OaltWcw Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="priorities-kernel-cdl.diff" Content-length: 2189 Index: kernel.cdl =================================================================== RCS file: /cvs/ecos/ecos/packages/kernel/current/cdl/kernel.cdl,v retrieving revision 1.21 diff -u -r1.21 kernel.cdl --- kernel.cdl 8 Jan 2007 16:20:13 -0000 1.21 +++ kernel.cdl 22 Aug 2007 17:54:55 -0000 @@ -317,7 +317,7 @@ the set of global flags if present." } - cdl_option CYGPKG_KERNEL_TESTS { + cdl_component CYGPKG_KERNEL_TESTS { display "Kernel tests" flavor data no_define @@ -330,6 +330,35 @@ } description " This option specifies the set of tests for the eCos kernel." + cdl_option CYGNUM_KERNEL_INTR_TEST_PRIO_A { + display "interrupt priority A used by intr0/kintr0 test" + flavor data + default_value 0 + legal_values 0 to 16 + description "The intr0 and kintr0 tests create several interrupts. + This option selects the interrupt priority to be used + for the first interrupt." + } + + cdl_option CYGNUM_KERNEL_INTR_TEST_PRIO_B { + display "interrupt priority B used by intr0/kintr0 test" + flavor data + default_value 1 + legal_values 0 to 16 + description "The intr0 and kintr0 tests create several interrupts. + This option selects the interrupt priority to be used + for the second interrupt." + } + + cdl_option CYGNUM_KERNEL_INTR_TEST_PRIO_C { + display "interrupt priority C used by intr0/kintr0 test" + flavor data + default_value 1 + legal_values 0 to 16 + description "The intr0 and kintr0 tests create several interrupts. + This option selects the interrupt priority to be used + for the third interrupt." + } } } } --wac7ysb48OaltWcw--