Mercurial > ecos-v3_0-branch
changeset 2849:70648fa729ea
+2009-03-19 Ilija Kocho <ilijak@siva.com.mk>
+
+ * ecos.db: target mac7100evb added word "Freescale" to the description.
+
* hal/arm/mac7100/var/current/src/hal_diag.c: fixed gcc 4.3.2 warning
| author | jld |
|---|---|
| date | Thu, 19 Mar 2009 12:49:18 +0000 |
| parents | 0211264926c7 |
| children | 4311ab2e713d |
| files | packages/ChangeLog packages/ecos.db packages/hal/arm/mac7100/var/current/ChangeLog packages/hal/arm/mac7100/var/current/src/hal_diag.c |
| diffstat | 4 files changed, 13 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/ChangeLog +++ b/packages/ChangeLog @@ -1,3 +1,7 @@ +2009-03-19 Ilija Kocho <ilijak@siva.com.mk> + + * ecos.db: target mac7100evb added word "Freescale" to the description. + 2009-02-12 John Dallaway <john@dallaway.org.uk> * ecos.db: Make CYGPKG_DEVS_FLASH_SPI_M25PXX a hardware package.
--- a/packages/ecos.db +++ b/packages/ecos.db @@ -10,7 +10,7 @@ ## ####ECOSGPLCOPYRIGHTBEGIN#### ## ------------------------------------------- ## This file is part of eCos, the Embedded Configurable Operating System. -## Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2008 Free Software Foundation, Inc. +## Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2008, 2009 Free Software Foundation, Inc. ## ## eCos is free software; you can redistribute it and/or modify it under ## the terms of the GNU General Public License as published by the Free @@ -4953,7 +4953,7 @@ target mace1 { } target mac7100evb { - alias { "MAC7100EVB - a MAC7100 evaluation board" mac7100_mac7100evb } + alias { "MAC7100EVB - Freescale MAC7100 evaluation board" mac7100_mac7100evb } packages { CYGPKG_HAL_ARM CYGPKG_HAL_ARM_MAC7100 CYGPKG_HAL_ARM_MAC7100_MAC7100EVB
--- a/packages/hal/arm/mac7100/var/current/ChangeLog +++ b/packages/hal/arm/mac7100/var/current/ChangeLog @@ -1,3 +1,7 @@ +2009-03-19 Ilija Kocho <ilijak@siva.com.mk> + + * src/hal_diag.c: fixed gcc 4.3.2 warning + 2007-01-10 Ilija Koco <ilijak@siva.com.mk> * hal_arm_mac7100.cdl: added property @@ -32,7 +36,7 @@ 2006-05-24 Ilija Koco <ilijak@siva.com // ####GPLCOPYRIGHTBEGIN#### // ------------------------------------------- // This file is part of eCos, the Embedded Configurable Operating System. -// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2009 Free Software Foundation, Inc. // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by
--- a/packages/hal/arm/mac7100/var/current/src/hal_diag.c +++ b/packages/hal/arm/mac7100/var/current/src/hal_diag.c @@ -8,7 +8,7 @@ // ####ECOSGPLCOPYRIGHTBEGIN#### // ------------------------------------------- // This file is part of eCos, the Embedded Configurable Operating System. -// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2009 Free Software Foundation, Inc. // // eCos is free software; you can redistribute it and/or modify it under // the terms of the GNU General Public License as published by the Free @@ -273,7 +273,7 @@ cyg_hal_plf_serial_isr(void *__ch_data, HAL_READ_UINT16(FREESCALE_ESCI_SR(esci_base), esci_sr); if (esci_sr & FREESCALE_ESCI_SR_RDRF){ HAL_READ_UINT8(FREESCALE_ESCI_DRL(esci_base), ch_in); - if( cyg_hal_is_break( &ch_in , 1 ) ) + if( cyg_hal_is_break( (char *) &ch_in , 1 ) ) *__ctrlc = 1; res = CYG_ISR_HANDLED;
