]> git.ipfire.org Git - people/ms/u-boot.git/blame - test/dfu/README
dfu:tests: Modify dfu_gadget_test.sh to accept USB device vendor:product ID
[people/ms/u-boot.git] / test / dfu / README
CommitLineData
a4c86bbb
ŁM
1DFU TEST CASE DESCRIPTION:
2
7ad67e55
SW
3The prerequisites for running this script are assured by
4dfu_gadget_test_init.sh, which is automatically invoked by dfu_gadget_test.sh.
a4c86bbb
ŁM
5In this file user is able to generate their own set of test files by altering
6the default set of TEST_FILES_SIZES variable.
7The dfu_gadget_test_init.sh would generate test images only if they are not
8already generated.
9
7ad67e55
SW
10On the target device, environment variable "dfu_alt_info" must contain at
11least:
a4c86bbb 12
7ad67e55
SW
13 dfu_test.bin fat 0 6;dfudummy.bin fat 0 6
14
15Depending on your device, you may need to replace "fat" with
16"ext4", and "6" with the relevant partition number. For reference please
17consult the config file for TRATS/TRATS2 devices
18(../../include/configs/trats{2}.h)
19
20One can use fat, ext4 or any other supported file system supported by U-Boot.
21These can be created by exporting storage devices via UMS (ums 0 mmc 0) and
22using standard tools on host (like mkfs.ext4).
a4c86bbb
ŁM
23
24Example usage:
251. On the target:
7ad67e55 26 setenv dfu_alt_info dfu_test.bin fat 0 6\;dfudummy.bin fat 0 6
a4c86bbb
ŁM
27 dfu 0 mmc 0
282. On the host:
33a61035 29 test/dfu/dfu_gadget_test.sh X Y [test file name] [usb device vendor:product]
50a35321
ŁM
30 e.g. test/dfu/dfu_gadget_test.sh 0 1
31 or
32 e.g. test/dfu/dfu_gadget_test.sh 0 1 ./dat_960.img
33a61035
LM
33 or
34 e.g. test/dfu/dfu_gadget_test.sh 0 1 0451:d022
35 or
36 e.g. test/dfu/dfu_gadget_test.sh 0 1 ./dat_960.img 0451:d022
a4c86bbb 37
50a35321
ŁM
38... where X and Y are dfu_test.bin's and dfudummy.bin's alt setting numbers.
39They can be obtained from dfu-util -l or $dfu_alt_info.
40It is also possible to pass optional [test file name] to force the script to
41test one particular file.
33a61035
LM
42If many DFU devices are connected, it may be useful to filter on USB
43vendor/product ID (0451:d022).
44One can get them by running "lsusb" command on a host PC.