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.
This commit is contained in:
Ciro Santilli
2018-02-14 07:54:01 +00:00
parent 1e0f0b4928
commit 66e7208364
4 changed files with 34 additions and 8 deletions

View File

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