15 Oct, 2013

1 commit


24 Jul, 2013

1 commit


08 Mar, 2013

1 commit


07 Dec, 2012

1 commit


07 Mar, 2012

1 commit


13 Sep, 2011

1 commit

  • Result of running the following command to address Wolfgang's
    comment about camel case:

    for file in `find . | grep '\.[chS]$'`; do perl -i -pe
    's/(green|yellow|red|blue)_LED_(on|off)/$1_led_$2/g' $file; done

    Discussion:
    http://patchwork.ozlabs.org/patch/84988/

    Signed-off-by: Jason Kridner
    Signed-off-by: Joel A Fernandes
    Signed-off-by: Sandeep Paulraj

    Jason Kridner
     

04 Sep, 2011

4 commits


20 May, 2011

1 commit


28 Apr, 2011

1 commit

  • This patch allows any board implementing the coloured LED API
    to control the LEDs from the console.

    led [green | yellow | red | all ] [ on | off ]

    or

    led [ 1 | 2 | 3 | all ] [ on | off ]

    Adds configuration item CONFIG_CMD_LED enabling the command.

    Partially based on patch from Ulf Samuelsson:
    http://www.mail-archive.com/u-boot@lists.denx.de/msg09593.html.

    Updated based on feedback:
    http://www.mail-archive.com/u-boot@lists.denx.de/msg41847.html
    https://groups.google.com/d/topic/beagleboard/8Wf1HiK_QBo/discussion
    * Fixed a handful of style issues.
    * Significantly reduced the number of #ifdefs and redundant code
    * Converted redundant code into loops test against a structure
    * Made use of cmd_usage()
    * Introduced a str_onoff() function, but haven't yet put it in common
    * Eliminated trailing newline

    Signed-off-by: Jason Kridner
    Signed-off-by: Sandeep Paulraj

    Jason Kridner