On Wed, 2006-01-04 at 00:25 -0800, Augusto Salazar wrote:
> Greetings,
> 
> I am working in a GRG board and I am starting to move
> to a custom board. I would like to start testing from
> a really basic redboot.
> 
> How do I remove functionality from the redboot, for
> example network,usb and so on, the idea is just to get
> the console UART and RAM and FLASH access.

Build RedBoot using ecosconfig and add in only the funtions
you want.  I always start like this:

  % ecosconfig new <target> redboot
  % ecosconfig tree
  % make

This will build a RAM version, which on new hardware implies
that you have some way to get it into RAM, such as a JTAG
debug unit, etc.  

Then to add new functionality, just add the appropriate
package selections.

  % ecosconfig add flash
  % ecosconfig tree
  % make

After this command, all FLASH related functions will be
enabled.

  % ecosconfig add eth_drivers
  % ecosconfig tree

This sequence adds networking.

etc.

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------



-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

Reply via email to