Skip to content
Snippets Groups Projects
Commit b653b912 authored by Walter Lozano's avatar Walter Lozano
Browse files

Use busybox dd


Tiny containers test consist in flashing a stable Apertis release and on
top of it download and test the tiny container of the release under test.
After switching the stable release to v2023.3 to support the new R-Car
board a failure is observerd due to missing dd.

In v2023, rust-coreutils is the replacement for coreutils, however, the
support of dd is disabled as it was still experimental and the replacement
chosen was busybox dd.

In order to fix the issue, switch to busybox dd to run the test.

Signed-off-by: default avatarWalter Lozano <walter.lozano@collabora.com>
parent e96c32c1
No related branches found
No related tags found
1 merge request!586Use busybox dd
Pipeline #660198 passed
......@@ -32,7 +32,7 @@ run:
- "# Ensure we have loop device:"
- modprobe loop
- "# Create the random file and map it to loop0 device on host:"
- dd if=/dev/urandom of=/var/test.img bs=1M count=1
- busybox dd if=/dev/urandom of=/var/test.img bs=1M count=1
- losetup /dev/loop0 /var/test.img
- "# Make sure user have correct mappings for test:"
- usermod --add-subuids 1000-1000 user
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment