Heinrich Schuchardt | 8282ab9 | 2021-04-19 21:54:45 +0200 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0+: |
| 2 | |
| 3 | fatinfo command |
| 4 | =============== |
| 5 | |
| 6 | Synopsis |
| 7 | -------- |
| 8 | |
| 9 | :: |
| 10 | |
| 11 | fatinfo <interface> <dev[:part]> |
| 12 | |
| 13 | Description |
| 14 | ----------- |
| 15 | |
| 16 | The fatinfo command displays information about a FAT partition. |
| 17 | |
| 18 | interface |
| 19 | interface for accessing the block device (mmc, sata, scsi, usb, ....) |
| 20 | |
| 21 | dev |
| 22 | device number |
| 23 | |
| 24 | part |
| 25 | partition number, defaults to 1 |
| 26 | |
| 27 | Example |
| 28 | ------- |
| 29 | |
| 30 | Here is the output for a partition on a 32 GB SD-Card: |
| 31 | |
| 32 | :: |
| 33 | |
| 34 | => fatinfo mmc 0:1 |
| 35 | Interface: MMC |
| 36 | Device 0: Vendor: Man 00001b Snr 97560602 Rev: 13.8 Prod: EB1QT0 |
| 37 | Type: Removable Hard Disk |
| 38 | Capacity: 30528.0 MB = 29.8 GB (62521344 x 512) |
| 39 | Filesystem: FAT32 "MYDISK " |
| 40 | => |
| 41 | |
| 42 | Configuration |
| 43 | ------------- |
| 44 | |
| 45 | The fatinfo command is only available if CONFIG_CMD_FAT=y. |
| 46 | |
| 47 | Return value |
| 48 | ------------ |
| 49 | |
| 50 | The return value $? is set to 0 (true) if the partition is a FAT partition. |
| 51 | Otherwise it is set to 1 (false). |