upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
814 B
24 lines
814 B
10 years ago
|
Common leds properties.
|
||
|
|
||
|
Optional properties for child nodes:
|
||
|
- label : The label for this LED. If omitted, the label is
|
||
|
taken from the node name (excluding the unit address).
|
||
|
|
||
|
- linux,default-trigger : This parameter, if present, is a
|
||
|
string defining the trigger assigned to the LED. Current triggers are:
|
||
|
"backlight" - LED will act as a back-light, controlled by the framebuffer
|
||
|
system
|
||
|
"default-on" - LED will turn on (but for leds-gpio see "default-state"
|
||
|
property in Documentation/devicetree/bindings/gpio/led.txt)
|
||
|
"heartbeat" - LED "double" flashes at a load average based rate
|
||
|
"ide-disk" - LED indicates disk activity
|
||
|
"timer" - LED flashes at a fixed, configurable rate
|
||
|
|
||
|
Examples:
|
||
|
|
||
|
system-status {
|
||
|
label = "Status";
|
||
|
linux,default-trigger = "heartbeat";
|
||
|
...
|
||
|
};
|