On Sunday, September 11, 2011 18:22:26 Jason Kridner wrote:
> This was done with the following command-line:
> 
> for file in `find . | grep '\.[chS]$'`;
>  do perl -i -pe 's/(green|yellow|red|blue)_LED_(on|off)/$1_led_$2/g' $file;
> done

one line:
find . -name '*.[chS]' -exec \
        sed -ri 's/(green|yellow|red|blue)_LED_(on|off)/\1_led_\2/g'

> --- a/arch/arm/cpu/arm1176/start.S
> +++ b/arch/arm/cpu/arm1176/start.S
> 
>       bl coloured_LED_init
> -     bl red_LED_on
> +     bl red_led_on

seems like you didnt fix coloured_LED_init

also, i dont see you changing any of the .c files where these funcs are 
actually defined
-mike

Attachment: signature.asc
Description: This is a digitally signed message part.

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to