Mercurial > nand-ecoscentric
changeset 1233:85cbb6510cfd
Fix compile error for platforms with no FLASH
| author | gthomas |
|---|---|
| date | Mon, 22 Sep 2003 17:35:38 +0000 |
| parents | dcff141b7c9c |
| children | e8cfe3629703 |
| files | packages/redboot/current/ChangeLog packages/redboot/current/cdl/redboot.cdl |
| diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/redboot/current/ChangeLog +++ b/packages/redboot/current/ChangeLog @@ -1,3 +1,7 @@ +2003-09-22 Gary Thomas <gary@mlbassoc.com> + + * cdl/redboot.cdl: Fix compile error for systems with no FLASH. + 2003-09-21 Gary Thomas <gary@mlbassoc.com> * cdl/redboot.cdl: Make DNS truly optional (remove from template).
--- a/packages/redboot/current/cdl/redboot.cdl +++ b/packages/redboot/current/cdl/redboot.cdl @@ -708,7 +708,7 @@ cdl_package CYGPKG_REDBOOT { cdl_component CYGSEM_REDBOOT_FLASH_CONFIG { display "Keep RedBoot configuration data in FLASH" flavor bool - default_value 1 + default_value { CYGPKG_IO_FLASH != 0 } compile fconfig.c description " When this option is enabled, RedBoot will keep configuration
