Files
bearnet/scripts/entrypoint.sh
iceBear67 87e76877ca init
2026-06-05 16:42:56 +08:00

10 lines
295 B
Bash

#!/bin/sh
set -euo pipefail
/usr/bin/cloud-hypervisor \
--kernel /image/vmlinuz --initramfs /image/initramfs --disk path=/image/vm.raw \
--cmdline "root=/dev/vda rootfstype=ext4 modules=ext4a rw console=hvc0" \
--cpus boot=${CPU_COUNT:-4} \
--memory size=${MEMORY:-4G},shared=on \
$@