Files
linuxkit/Dockerfile.armhf
Justin Cormack f517609a62 change qemu arm emulation
Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
2016-01-13 15:59:59 +00:00

11 lines
365 B
Docker

FROM alpine:3.3
COPY alpine/initrd-arm.img .
COPY alpine/kernel/zImage .
RUN apk update && apk add qemu-system-arm
RUN gzip -9 initrd-arm.img
ENTRYPOINT [ "qemu-system-arm", "-cpu", "arm1176", "-M", "versatilepb", "-no-reboot", "-serial", "stdio", "-kernel", "zImage", "-initrd", "initrd-arm.img.gz", "-m", "256", "-append", "console=ttyAMA0", "-vnc", "none" ]