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.
 
 
 
 
 
 
u-boot/drivers/demo/Kconfig

30 lines
959 B

menu "Demo for driver model"
config DM_DEMO
bool "Enable demo uclass support"
depends on DM
help
This uclass allows you to play around with driver model. It provides
an interface to a couple of demo devices. You can access it using
the 'demo' command or by calling the uclass functions from your
own code.
config DM_DEMO_SIMPLE
bool "Enable simple demo device for driver model"
depends on DM_DEMO
help
This device allows you to play around with driver model. It prints
a message when the 'demo hello' command is executed which targets
this device. It can be used to help understand how driver model
works.
config DM_DEMO_SHAPE
bool "Enable shape demo device for driver model"
depends on DM_DEMO
help
This device allows you to play around with driver model. It prints
a shape when the 'demo hello' command is executed which targets
this device. It can be used to help understand how driver model
works.
endmenu