# # \brief Virtual-machine monitor demo # \author Stefan Kalkowski # \date 2015-06-25 # assert_spec hw if { ![have_board imx7d_sabre] && ![have_board imx8q_evk] && ![have_board virt_qemu]} { puts "Run script is not supported on this platform" exit 0 } create_boot_directory import_from_depot [depot_user]/src/[base_src] \ [depot_user]/src/init \ [depot_user]/src/libc \ [depot_user]/src/log_terminal \ [depot_user]/src/nic_router \ [depot_user]/src/terminal_crosslink \ [depot_user]/src/vfs \ [depot_user]/src/vfs_block \ [depot_user]/src/vmm build { test/terminal_expect_send } 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-21.02/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-21.02/dtb-arm64-virt-smp } 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 } catch { exec [installed_command dd] if=/dev/zero of=bin/block.img bs=1M count=0 seek=64 } exec [installed_command mkfs.vfat] bin/block.img build_boot_image { test-terminal_expect_send linux dtb initrd block.img } # # Execute test case # append qemu_args " -nographic " run_genode_until "\[init -> vm\] .*resolv.conf.*" 220 exec rm bin/linux bin/dtb bin/initrd bin/block.img