Skip to content

Commit 031948f

Browse files
committed
schema: Allow Fastboot serial numbers up to 16 characters
WinLink e850 board reports Fastboot ID/serial of "00000b66ce9c23e0" and fastboot sources [1] allow up to 256 bytes, so grow the pattern to at least 16 characters: [1] https://android.googlesource.com/platform/system/core/+/refs/heads/android16-release/fastboot/usb.h#54 Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
1 parent 30c30ce commit 031948f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ properties:
2626
fastboot:
2727
description: fastboot id
2828
type: string
29-
pattern: "^[0-9a-f]{8}$"
29+
pattern: "^[0-9a-f]{8,16}$"
3030

3131
fastboot_set_active:
3232
description: run fastboot set active before each boot, slot can be selected

0 commit comments

Comments
 (0)