# Copyright 2020 The ChromiumOS Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # Builds the kernel and rootfs for the guest used in integration testing. # # The main artifacts are: # target/guest_under_test/bzImage # target/guest_under_test/rootfs ARCH ?= $(shell arch) ifeq ($(ARCH), x86_64) KERNEL_ARCH=x86 KERNEL_BINARY=bzImage DOCKER_ARCH=amd64 CROSS_COMPILE= RUSTFLAGS= else ifeq ($(ARCH), aarch64) KERNEL_ARCH=arm64 KERNEL_BINARY=Image DOCKER_ARCH=arm64v8 CROSS_COMPILE=aarch64-linux-gnu- RUSTFLAGS="-Clinker=aarch64-linux-gnu-ld" else $(error Only x86_64 or aarch64 are supported) endif # Build against the musl toolchain, which will produce a statically linked, # portable binary that we can run on the alpine linux guest without needing # libc at runtime RUST_TARGET ?= $(ARCH)-unknown-linux-musl # We are building everything in target/guest_under_test CARGO_TARGET ?= $(shell cargo metadata --no-deps --format-version 1 | \ jq -r ".target_directory") TARGET ?= $(CARGO_TARGET)/guest_under_test/$(ARCH) $(shell mkdir -p $(TARGET)) # Parameteters for building the kernel locally KERNEL_REPO ?= https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git KERNEL_BRANCH ?= linux-6.1.y ################################################################################ # Main targets all: $(TARGET)/rootfs $(TARGET)/bzImage # Clean all local build artifacts, but not downloaded sources. clean: rm -rf $(TARGET)/kernel-build $(TARGET)/rootfs-build $(TARGET)/initramfs-build $(TARGET)/rootfs $(TARGET)/bzImage $(TARGET)/initramfs.cpio.gz clean-all: rm -rf $(TARGET) x86_64_initramfs: $(TARGET)/initramfs delegate: $(TARGET)/rootfs-build/delegate ################################################################################ # Build rootfs # Build rootfs from Dockerfile and export into squashfs $(TARGET)/rootfs: $(TARGET)/rootfs-build/delegate rootfs/Dockerfile # Build image from Dockerfile DOCKER_BUILDKIT=1 docker build -t crosvm_e2e_test_guest $(TARGET)/rootfs-build \ -f rootfs/Dockerfile --build-arg ARCH=$(DOCKER_ARCH) # Create container and export into squashfs, and don't forget to clean up # the container afterwards. set -x; \ CONTAINER=$$(docker create crosvm_e2e_test_guest); \ docker export $$CONTAINER | tar2sqfs -c gzip -f $@; \ docker rm $$CONTAINER # Build and copy delegate binary into rootfs build directory $(TARGET)/rootfs-build/delegate: rootfs/delegate/Cargo.toml rootfs/delegate/src/main.rs rootfs/delegate/src/wire_format.rs rustup target add $(RUST_TARGET) CARGO_TARGET_DIR=$(TARGET) RUSTFLAGS=$(RUSTFLAGS) cargo build --target $(RUST_TARGET) --release --manifest-path=rootfs/delegate/Cargo.toml cp $(TARGET)/$(RUST_TARGET)/release/delegate $(TARGET)/rootfs-build/delegate ################################################################################ # Build initramfs # Build initramfs from Containerfile and package as cpio archive $(TARGET)/initramfs: $(TARGET)/rootfs-build/delegate initramfs/Containerfile initramfs/init.sh -mkdir -p $(TARGET)/initramfs-build cp initramfs/init.sh $(TARGET)/initramfs-build/init.sh cp $(TARGET)/rootfs-build/delegate $(TARGET)/initramfs-build/delegate podman build -t crosvm_e2e_test_guest_initramfs $(TARGET)/initramfs-build -f initramfs/Containerfile -mkdir -p $(TARGET)/initramfs-build/cpio-base # Create container and export into squashfs, and don't forget to clean up # the container afterwards. set -x; \ CONTAINER=$$(podman create crosvm_e2e_test_guest_initramfs); \ podman export $$CONTAINER | tar -xf - -C $(TARGET)/initramfs-build/cpio-base; \ podman rm $$CONTAINER; \ cd $(TARGET)/initramfs-build/cpio-base; \ find . -print0 | cpio --null --create --verbose --format=newc | gzip --best > $(TARGET)/initramfs.cpio.gz ################################################################################ # Build kernel $(TARGET)/bzImage: $(TARGET)/kernel-source $(TARGET)/kernel-build cd $(TARGET)/kernel-source \ && make O=$(TARGET)/kernel-build \ ARCH=$(KERNEL_ARCH) \ CROSS_COMPILE=$(CROSS_COMPILE) \ -j$(shell nproc)\ olddefconfig \ $(KERNEL_BINARY) cp $(TARGET)/kernel-build/arch/${KERNEL_ARCH}/boot/$(KERNEL_BINARY) $@ $(TARGET)/kernel-build: $(TARGET)/kernel-source kernel/$(KERNEL_ARCH).config kernel/common.config mkdir -p $@ cat kernel/common.config kernel/$(KERNEL_ARCH).config > $@/.config touch $@ $(TARGET)/kernel-source: rm -rf $@ git clone --depth 1 --branch $(KERNEL_BRANCH) $(KERNEL_REPO) $@ .PHONY: clean all update-prebuilts