fs: Kconfig: Add a separate option for FS_CRAMFS
[oweals/u-boot.git] / cmd / Kconfig
index 7a124415ed25a4a67aea7f1fd7d5f4088d7c5eb0..54513988e89a5d86441139f50964cbf76a4bd8bb 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
@@ -890,6 +899,17 @@ 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"
+       depends on FS_CRAMFS
+       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