.. # SPDX-FileCopyrightText: Copyright (c) 2023-2024, Linaro Limited. # # SPDX-FileCopyrightText: Copyright 2023-2024, 2026 Arm Limited and/or its # affiliates # # SPDX-License-Identifier: MIT ########################################## Getting Started with Arm Corstone-1000 FVP ########################################## This document explains how to build and boot the Cassini distro on the Arm Corstone-1000 FVP (Fast Model Fixed Virtual Platform). .. note:: Due to performance limitations, K3s is not currently supported on the Arm Corstone-1000 FVP. ***** Build ***** The provided kas configuration file ``kas/corstone1000-fvp.yml`` can be used to build images that are targeting the Corstone-1000 FVP. .. note:: To build and run any image for the Corstone-1000 FVP the user has to accept its |EULA|_, which can be done by executing the following command in the build environment: .. code-block:: console export FVP_CORSTONE1000_EULA_ACCEPT=True ******************* Building FVP images ******************* To build Corstone-1000 FVP images with default options: .. code-block:: console kas build --update kas/cassini.yml:kas/corstone1000-fvp.yml Or if using kas-container: .. code-block:: console kas-container --runtime-args "-e FVP_CORSTONE1000_EULA_ACCEPT=True" build \ kas/cassini.yml:kas/corstone1000-fvp.yml This will produce a Corstone-1000 firmware image here: ``build/tmp/deploy/images/corstone1000-fvp/corstone1000-flash-firmware-image-corstone1000-fvp.wic`` And a Cassini distribution image here: ``build/tmp/deploy/images/corstone1000-fvp/cassini-image-base-corstone1000-fvp.wic`` For other build options, refer to :doc:`../developer_manual/build_system` *************** Running the FVP *************** To start the FVP and get the console: .. code-block:: console kas shell -c "../layers/meta-arm/scripts/runfvp --console" \ kas/cassini.yml:kas/corstone1000-fvp.yml .. note:: Adding ``kas/tests.yml`` to a subsequent ``kas shell`` command does not rebuild the image to include the test packages. You must first build the image using ``kas build`` with the same configuration fragments. Or if using kas-container: .. code-block:: console kas-container --runtime-args "-e FVP_CORSTONE1000_EULA_ACCEPT=True" \ shell -c "/work/layers/meta-arm/scripts/runfvp --console" \ kas/cassini.yml:kas/corstone1000-fvp.yml By default, the Corstone-1000 FVP is configured for user mode networking. For more information and instructions on how to configure networking with Fixed Virtual Platforms, refer to the |Fast Models Reference Guide|_. For validation steps, refer to :doc:`../developer_manual/validation`.