diff options
author | Simon Glass <sjg@chromium.org> | 2022-09-21 16:21:47 +0200 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-09-25 13:59:56 -0600 |
commit | 22c80d5603ac4c58debc8c776b8f138e76cf5f7c (patch) | |
tree | a6bd3d83314fee80b1b1a2e9a39df39d96a2dcc8 /arch/sandbox/dts/test.dts | |
parent | 46df0243942f98ad5a6b57cb65b31acdc88559f8 (diff) | |
download | u-boot-22c80d5603ac4c58debc8c776b8f138e76cf5f7c.tar.gz |
sandbox: Add a test for SCSI
Add a simple uclass test for SCSI. It reads the partition table from a
disk image and checks that it looks correct.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/dts/test.dts')
-rw-r--r-- | arch/sandbox/dts/test.dts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts index c7fffa2da2..4ee471238e 100644 --- a/arch/sandbox/dts/test.dts +++ b/arch/sandbox/dts/test.dts @@ -1158,6 +1158,11 @@ backlight = <&backlight 0 100>; }; + scsi { + compatible = "sandbox,scsi"; + sandbox,filepath = "scsi.img"; + }; + smem@0 { compatible = "sandbox,smem"; }; |