mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 13:23:08 +00:00
b96ba4c8be
We switch from the chromeos-5.10 kernel with crostini configs to a stripped down config building the mainline 6.1 branch. This allows us more control over the guest kernel for testing and significantly speeds up e2e tests (~4s -> 1.2s for all tests run with nextest). The rootfs is switched to Debian as that's what we use elsewhere which makes this easier to maintain. BUG=b:256652981 TEST=presubmit Change-Id: Ib3897b8dbf3391eefdb1eedb69ec7555f4c77344 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4326888 Reviewed-by: Zihan Chen <zihanchen@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com>
101 lines
3.2 KiB
Makefile
101 lines
3.2 KiB
Makefile
# 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)/rootfs $(TARGET)/bzImage
|
|
|
|
clean-all:
|
|
rm -rf $(TARGET)
|
|
|
|
################################################################################
|
|
# 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.rs
|
|
rustup target add $(RUST_TARGET)
|
|
rustc --edition=2018 rootfs/delegate.rs --out-dir $(@D) \
|
|
$(RUSTFLAGS) --target $(RUST_TARGET)
|
|
|
|
################################################################################
|
|
# 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
|