mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-24 20:53:38 +08:00
support/testing: test_ubi: add image format on the qemu command line
Adding the Image format on the Qemu command line avoid this warning: "WARNING: Image format was not specified for 'output/TestUbi/images/rootfs.ubi' and probing guessed raw. Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted. Specify the 'raw' format explicitly to remove the restrictions." Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
parent
6f9e83f5f7
commit
1ab2dd6aa5
@ -32,7 +32,7 @@ class TestUbi(infra.basetest.BRTest):
|
||||
kernel_cmdline=["root=ubi0:rootfs",
|
||||
"ubi.mtd=0",
|
||||
"rootfstype=ubifs"],
|
||||
options=["-drive", "file={},if=pflash".format(img)])
|
||||
options=["-drive", "file={},if=pflash,format=raw".format(img)])
|
||||
self.emulator.login()
|
||||
cmd = "mount | grep 'ubi0:rootfs on / type ubifs'"
|
||||
_, exit_code = self.emulator.run(cmd)
|
||||
|
Loading…
Reference in New Issue
Block a user