mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
Restore lkmc_min that was accidentaly removed. Explain how to remove modules that fail to build.
8 lines
162 B
Bash
Executable File
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
|