From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22238 invoked by alias); 18 Nov 2008 13:45:12 -0000 Received: (qmail 22181 invoked by uid 22791); 18 Nov 2008 13:45:09 -0000 X-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,SPF_PASS X-Spam-Check-By: sourceware.org Received: from hagrid.ecoscentric.com (HELO mail.ecoscentric.com) (212.13.207.197) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 18 Nov 2008 13:44:18 +0000 Received: from localhost (hagrid.ecoscentric.com [127.0.0.1]) by mail.ecoscentric.com (Postfix) with ESMTP id 414333B40070 for ; Tue, 18 Nov 2008 13:44:15 +0000 (GMT) X-Virus-Scanned: amavisd-new at ecoscentric.com Received: from mail.ecoscentric.com ([127.0.0.1]) by localhost (hagrid.ecoscentric.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id U1cjdLQfbf7x; Tue, 18 Nov 2008 13:44:14 +0000 (GMT) Message-ID: <4922C6AD.9030408@eCosCentric.com> Date: Tue, 18 Nov 2008 13:45:00 -0000 From: Jonathan Larmour User-Agent: Thunderbird 1.5.0.12 (X11/20070530) MIME-Version: 1.0 To: eCos Patches List Subject: Add dataflash to ecos.db X-Enigmail-Version: 0.94.4.0 OpenPGP: id=A5FB74E6 Content-Type: multipart/mixed; boundary="------------000208040109040206080401" X-Virus-Checked: Checked by ClamAV on sourceware.org 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: 2008-11/txt/msg00060.txt.bz2 This is a multi-part message in MIME format. --------------000208040109040206080401 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-length: 694 I accidentally forgot the dataflash driver so see the attached patch. I also may as well switch the synthetic target to the v2 driver. At some point we'll need to consider retiring the v1 driver. It can be now if people don't mind. Obviously there's plenty of scope for people to be switching their own favourite targets to the am29xxxxx/strata v2 flash drivers, and I encourage them to submit patches to do so! Jifl -- eCosCentric Limited http://www.eCosCentric.com/ The eCos experts Barnwell House, Barnwell Drive, Cambridge, UK. Tel: +44 1223 245571 Registered in England and Wales: Reg No 4422071. ------["Si fractum non sit, noli id reficere"]------ Opinions==mine --------------000208040109040206080401 Content-Type: text/x-patch; name="ecosdb.dataflash.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ecosdb.dataflash.diff" Content-length: 2155 Index: ChangeLog =================================================================== RCS file: /cvs/ecos/ecos/packages/ChangeLog,v retrieving revision 1.197 diff -u -5 -p -r1.197 ChangeLog --- ChangeLog 18 Nov 2008 01:28:11 -0000 1.197 +++ ChangeLog 18 Nov 2008 13:42:23 -0000 @@ -1,5 +1,11 @@ +2008-11-18 Jonathan Larmour + + * ecos.db: Add Atmel dataflash package record, accidentally + omitted from 2008-11-16 changes. + Switch synthetic target to use v2 synth flash driver. + 2008-11-16 Jonathan Larmour * ecos.db: Use v2 drivers for adder/adderII and IXDP425. 2008-11-16 Jonathan Larmour Index: ecos.db =================================================================== RCS file: /cvs/ecos/ecos/packages/ecos.db,v retrieving revision 1.183 diff -u -5 -p -r1.183 ecos.db --- ecos.db 18 Nov 2008 01:28:11 -0000 1.183 +++ ecos.db 18 Nov 2008 13:42:24 -0000 @@ -246,10 +246,18 @@ package CYGPKG_DEVS_FLASH_ATMEL_AT49XXXX description " This package contains hardware support for Atmel AT49xxxx flash memory devices." } +package CYGPKG_DEVS_FLASH_ATMEL_DATAFLASH { + alias { "Atmel DataFlash support" flash_dataflash dataflash } + directory devs/flash/atmel/dataflash + script devs_flash_atmel_dataflash.cdl + hardware + description "This package contains hardware support for Atmel DataFlash." +} + package CYGPKG_DEVS_FLASH_ARM_PID { alias { "Support for flash memory on ARM/PID board" flash_arm_pid } directory devs/flash/arm/pid script flash_arm_pid.cdl hardware @@ -5529,11 +5537,11 @@ target pc_usb_d12 { # Synthetic targets. target linux { alias { "Linux synthetic target" i386linux } packages { CYGPKG_HAL_SYNTH CYGPKG_HAL_SYNTH_I386 - CYGPKG_DEVS_FLASH_SYNTH + CYGPKG_DEVS_FLASH_SYNTH_V2 CYGPKG_DEVS_ETH_ECOSYNTH CYGPKG_DEVS_WATCHDOG_SYNTH CYGPKG_DEVS_WALLCLOCK_SYNTH CYGPKG_DEVS_FRAMEBUF_SYNTH } --------------000208040109040206080401--