# # \brief Virtual-machine monitor demo # \author Stefan Kalkowski # \date 2015-06-25 # assert_spec hw if { ![have_spec imx7d_sabre] && ![have_spec arndale] && ![have_spec imx8q_evk] && ![have_spec virt_qemu]} { puts "Run script is not supported on this platform" exit 0 } set build_components { core init timer server/terminal_crosslink test/terminal_expect_send server/log_terminal server/nic_router server/vmm } build $build_components create_boot_directory install_config { } if { [have_spec arm] } { if {![file exists bin/linux]} { puts "Download linux kernel ..." exec >& /dev/null wget -c -O bin/linux http://genode.org/files/release-20.05/linux-arm32 } if {![file exists bin/dtb]} { puts "Download device tree blob ..." exec >& /dev/null wget -c -O bin/dtb http://genode.org/files/release-20.05/dtb-arm32-virt } if {![file exists bin/initrd]} { puts "Download initramfs ..." exec >& /dev/null wget -c -O bin/initrd http://genode.org/files/release-20.05/initrd-arm32 } # # To obtain the linux kernel, do the following steps: # # wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.3.10.tar.xz # # tar -xJf linux-5.3.10.tar.xz # cd linux-5.3.10 # # make O=../build-linux-aarch32 ARCH=arm CROSS_COMPILE=/usr/local/genode/tool/current/bin/genode-arm- defconfig # make O=../build-linux-aarch32 ARCH=arm CROSS_COMPILE=/usr/local/genode/tool/current/bin/genode-arm- -j32 # # copy ../build-linux-aarch32/arch/arm/boot/zImage to your build directory in 'bin/linux' # # # To get the dtb (device-tree-binary), you have to compile the file: # repos/os/src/server/vmm/spec/arm_v7/virt.dts with the dtc compiler: # dtc repos/os/src/server/vmm/spec/arm_v7/virt.dts > bin/dtb # # # To construct the initrd do the following: # * get and install gcc from bootlin: # (https://toolchains.bootlin.com/downloads/releases/toolchains/armv7-eabihf/tarballs/) # * build busybox # wget https://busybox.net/downloads/busybox-1.31.1.tar.bz2 # tar xjf busybox-1.31.1.tar.bz2 # mkdir build-busybox-aarch32 # cd busybox-1.31.1 # make O=../build-busybox-aarch32 defconfig # make O=../build-busybox-aarch32 menuconfig # # [*] Setting -> Build static binary (no shared libs) # # cd ../build-busybox-aarch32 # make CROSS_COMPILE=/opt/armv7-eabihf--uclibc--stable-2020.02-1/bin/arm-buildroot-linux-uclibcgnueabihf- install -j6 # * create ramdisk # cd _install # find . | cpio -H newc -o | gzip > ../initrd # } if { [have_spec arm_64] } { if {![file exists bin/linux]} { puts "Download linux kernel ..." exec >& /dev/null wget -c -O bin/linux http://genode.org/files/release-20.02/linux-arm64 } if {![file exists bin/dtb]} { puts "Download device tree blob ..." exec >& /dev/null wget -c -O bin/dtb http://genode.org/files/release-20.02/dtb-arm64-virt } if {![file exists bin/initrd]} { puts "Download initramfs ..." exec >& /dev/null wget -c -O bin/initrd http://genode.org/files/release-20.02/initrd-arm64 } # # To obtain the linux kernel, do the following steps: # # wget https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.19.53.tar.xz # # tar -xJf linux-4.19.53.tar.xz # cd linux-4.19.53 # # make O=../build-linux-aarch64 ARCH=arm64 CROSS_COMPILE=/usr/local/genode/tool/current/bin/genode-aarch64- defconfig # make O=../build-linux-aarch64 ARCH=arm64 CROSS_COMPILE=/usr/local/genode/tool/current/bin/genode-aarch64- -j32 # # copy ../build-linux-aarch64/arch/arm64/boot/Image to your build directory in 'bin/linux' # # # To get the dtb (device-tree-binary), you have to compile the file: # repos/os/src/server/vmm/spec/arm_v8/virt.dts with the dtc compiler: # dtc repos/os/src/server/vmm/spec/arm_v8/virt.dts > bin/dtb # # # To construct the initrd do the following: # * get and install gcc from linaro # (https://releases.linaro.org/components/toolchain/binaries/latest-7/) # * build busybox # wget https://busybox.net/downloads/busybox-1.29.3.tar.bz2 # tar xjf busybox-1.29.3.tar.bz2 # mkdir build-busybox-aarch64 # cd busybox-1.29.3 # make O=../build-busybox-aarch64 defconfig # make O=../build-busybox-aarch64 menuconfig # # [*] Setting -> Build static binary (no shared libs) # # cd ../build-busybox-aarch64 # make CROSS_COMPILE=/usr/local/gcc-linaro/bin/aarch64-linux-gnu- install -j6 # * create ramdisk # cd _install # find . | cpio -H newc -o | gzip > ../initrd } set boot_modules { core ld.lib.so init timer terminal_crosslink test-terminal_expect_send nic_router log_terminal vmm linux dtb initrd } build_boot_image $boot_modules # # Execute test case # append qemu_args " -nographic " run_genode_until "\[init -> vm\] .*sbin.*" 220 exec rm bin/linux bin/dtb