-
Notifications
You must be signed in to change notification settings - Fork 6.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tests: fat: fat_fs_api reduce the wipe partition sects #84429
base: main
Are you sure you want to change the base?
tests: fat: fat_fs_api reduce the wipe partition sects #84429
Conversation
7e9e0be
to
01247b9
Compare
@hakehuang Can you provide some better commit message? I only understand the second line. |
01247b9
to
d4f0338
Compare
@de-nordic , thanks for checking, I update the commit message. it is for GPT as MBT is the first LBA0 in GPT in 128 bytes. and usually 32k is large enough to have all partitions. |
May I suggest rephrasing commit message from:
to
? Thanks. |
d4f0338
to
15a272a
Compare
@de-nordic updated, thanks a lot for your suggestion. |
As SD partition tables, GPT or MBT, is positioned at the beginning of a device, it is enough to wipe first 64 sectors, of 512 bytes. Wipe of entire SD card is very slow and unnecessary. fixes: zephyrproject-rtos#84428 Signed-off-by: Hake Huang <[email protected]>
15a272a
to
15a1c22
Compare
As SD partition tables, GPT or MBT, is positioned at the beginning of a device
it is enough to wipe first 64 sectors, of 512 bytes.
Wipe of entire SD card is very slow and unnecessary.
fixes: #84428