
In message 200310021408.41668.dave@minervatech.net you wrote:
I'm porting u-boot to a custom PXA255 board. At present there is no network interface so I'm only interested in loading data over a serial port. Can I disable network support pre-compilation to cut down the size of u-boot?
ie. Is there an equivalent of " #define CONFIG_LCD 0 " to disable network support.?
It doesn't work this way. "#define CONFIG_LCD 0" is extremely misleading. Don't ever do this. Either #define the option (which enables it, no matter which value the variable has, if any at all, or do NOT #define it.
Don't #define network options (including the network related commands, and no network support will be included.
Best regards,
Wolfgang Denk