avionic design with actual uboot and tooling
submodule of avionic design uboot bootloader and with included tools to get you started , read readme.md and readme-tk1-loader.md
This commit is contained in:
30
u-boot/drivers/demo/Kconfig
Normal file
30
u-boot/drivers/demo/Kconfig
Normal file
@@ -0,0 +1,30 @@
|
||||
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
|
||||
Reference in New Issue
Block a user