]> git.sur5r.net Git - u-boot/blobdiff - cmd/Kconfig
fs: Convert CONFIG_CMD_CRAMFS to Kconfig
[u-boot] / cmd / Kconfig
index 8a16ed77a89902fcb6620a8e363cbbcfe6b2771e..4145fcf056ca456ae0ac686519c4fac1311b8efc 100644 (file)
@@ -387,6 +387,15 @@ endmenu
 
 menu "Device access commands"
 
+config CMD_CLK
+       bool "clk - Show clock frequencies"
+       help
+         (deprecated)
+         Shows clock frequences by calling a sock_clk_dump() hook function.
+         This is depreated in favour of using the CLK uclass and accessing
+         clock values from associated drivers. However currently no command
+         exists for this.
+
 config CMD_DM
        bool "dm - Access to driver model information"
        depends on DM
@@ -882,6 +891,7 @@ endmenu
 menu "Filesystem commands"
 config CMD_CBFS
        bool "Enable the 'cbfs' command"
+       depends on FS_CBFS
        help
          Define this to enable support for reading from a Coreboot
          filesystem. This is a ROM-based filesystem used for accessing files
@@ -889,6 +899,16 @@ config CMD_CBFS
          U-Boot to actually boot the Operating System. Available commands are
          cbfsinit, cbfsinfo, cbfsls and cbfsload.
 
+config CMD_CRAMFS
+       bool "Enable the 'cramfs' command"
+       help
+         This provides commands for dealing with CRAMFS (Compressed ROM
+         filesystem). CRAMFS is useful when space is tight since files are
+         compressed. Two commands are provided:
+
+            cramfsls   - lists files in a cramfs image
+            cramfsload - loads a file from a cramfs image
+
 config CMD_EXT2
        bool "ext2 command support"
        help