mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-09 03:57:24 +00:00
1dab58a2cf
This search/replace updates all copyright notices to drop the "All rights reserved", Use "ChromiumOS" instead of "Chromium OS" and drops the trailing dots. This fulfills the request from legal and unifies our notices. ./tools/health-check has been updated to only accept this style. BUG=b:246579983 TEST=./tools/health-check Change-Id: I87a80701dc651f1baf4820e5cc42469d7c5f5bf7 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3894243 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Commit-Queue: Dennis Kempin <denniskempin@google.com>
36 lines
1 KiB
Bash
Executable file
36 lines
1 KiB
Bash
Executable file
#!/bin/bash
|
|
# Copyright 2022 The ChromiumOS Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Example VM with a simple ubuntu guest OS but no UI, audio or networking.
|
|
|
|
set -e
|
|
|
|
SRC=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
|
|
mkdir -p "$SRC/images/simple" && cd "$_"
|
|
|
|
if ! [ -f rootfs ]; then
|
|
# ANCHOR: build
|
|
# Build a simple ubuntu image and create a user with no password.
|
|
virt-builder ubuntu-20.04 \
|
|
--run-command "useradd -m -g sudo -p '' $USER ; chage -d 0 $USER" \
|
|
-o ./rootfs
|
|
# ANCHOR_END: build
|
|
|
|
# ANCHOR: kernel
|
|
virt-builder --get-kernel ./rootfs -o .
|
|
# ANCHOR_END: kernel
|
|
fi
|
|
|
|
# ANCHOR: run
|
|
# Run crosvm without sandboxing.
|
|
# The rootfs is an image of a partitioned hard drive, so we need to tell
|
|
# the kernel which partition to use (vda5 in case of ubuntu-20.04).
|
|
cargo run --no-default-features -- run \
|
|
--disable-sandbox \
|
|
--rwdisk ./rootfs \
|
|
--initrd ./initrd.img-* \
|
|
-p "root=/dev/vda5" \
|
|
./vmlinuz-*
|
|
# ANCHOR_END: run
|