mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-24 01:24:26 +01:00
Restore Debian as a rootfs. 1. revert of #3154, but some change 2. update debian version to 10.11 3. update `libstdc++-6-dev` to `libstdc++-8-dev` 4. changes discarded in QAT are not restored Fixes: #3372 Signed-off-by: zhaojizhuang <571130360@qq.com>
21 lines
531 B
Bash
21 lines
531 B
Bash
#
|
|
# Copyright (c) 2018 SUSE
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
OS_VERSION=${OS_VERSION:-10.11}
|
|
|
|
# Set OS_NAME to the desired debian "codename"
|
|
OS_NAME=${OS_NAME:-"stretch"}
|
|
|
|
PACKAGES="systemd coreutils init chrony kmod"
|
|
|
|
# NOTE: Re-using ubuntu rootfs configuration, see 'ubuntu' folder for full content.
|
|
source $script_dir/ubuntu/$CONFIG_SH
|
|
|
|
# Init process must be one of {systemd,kata-agent}
|
|
INIT_PROCESS=systemd
|
|
# List of zero or more architectures to exclude from build,
|
|
# as reported by `uname -m`
|
|
ARCH_EXCLUDE_LIST=()
|