Files
linux-kernel-module-cheat/rootfs_post_image_script
Ciro Santilli 66e7208364 Make aarch64 boot again and explain its limitations better.
Restore lkmc_min that was accidentaly removed.

Explain how to remove modules that fail to build.
2018-02-14 07:56:35 +00:00

8 lines
162 B
Bash
Executable File

#!/usr/bin/env bash
images_dir="$1"
cd "$images_dir"
f=rootfs.ext2
if [ -f "$f" ]; then
"${HOST_DIR}/bin/qemu-img" convert -f raw -O qcow2 "$f" "${f}.qcow2"
fi