diff options
author | Ramon Fried <rfried.dev@gmail.com> | 2019-09-13 18:25:03 +0300 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2019-12-09 09:47:42 -0600 |
commit | 7d9701db40895ff5271220ae852d3631b4500219 (patch) | |
tree | a550bc3d7037320f6492fe28d503ebb5ce26882a /cmd/Makefile | |
parent | 945dd965ddd8b27bda6817d3972d8c00a88b8a01 (diff) | |
download | u-boot-7d9701db40895ff5271220ae852d3631b4500219.zip u-boot-7d9701db40895ff5271220ae852d3631b4500219.tar.gz u-boot-7d9701db40895ff5271220ae852d3631b4500219.tar.bz2 |
cmd: mdio/mii: add Kconfig help and allow break dependency
* Add Kconfig help describing the purpose of each command.
* Add CONFIG_CMD_MDIO so it could be selected individually, as
it doesn't depend on the mii command.
* Add Kconfig imply to mii to automatically select the mdio
command.
Signed-off-by: Ramon Fried <rfried.dev@gmail.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'cmd/Makefile')
-rw-r--r-- | cmd/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd/Makefile b/cmd/Makefile index e87c2f1..3ac7104 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -89,9 +89,7 @@ obj-$(CONFIG_CMD_MEMORY) += mem.o obj-$(CONFIG_CMD_IO) += io.o obj-$(CONFIG_CMD_MFSL) += mfsl.o obj-$(CONFIG_CMD_MII) += mii.o -ifdef CONFIG_PHYLIB -obj-$(CONFIG_CMD_MII) += mdio.o -endif +obj-$(CONFIG_CMD_MDIO) += mdio.o obj-$(CONFIG_CMD_MISC) += misc.o obj-$(CONFIG_CMD_MMC) += mmc.o obj-$(CONFIG_MP) += mp.o |