Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions vendorsetup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ EOF

echo "Append cache..."
dd if="/dev/zero" conv=notrunc bs=1M of="${out}.cache" count="$cache_size" status=none
mkfs.ext4 "${out}.cache"
mkfs.f2fs "${out}.cache"
dd if="${out}.cache" conv=notrunc oflag=append bs=1M of="$out" status=none
rm -f "${out}.cache"

echo "Append data..."
dd if="/dev/zero" conv=notrunc bs=1M of="${out}.data" count="$data_size" status=none
mkfs.ext4 "${out}.data"
mkfs.f2fs "${out}.data"
dd if="${out}.data" conv=notrunc oflag=append bs=1M of="$out" status=none
rm -f "${out}.data"

Expand Down