mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
Add template to add new distros. Added a Makefile to initialize new environment. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
16 lines
546 B
Bash
16 lines
546 B
Bash
# This is a configuration file add extra variables to
|
|
# be used by build_rootfs() from rootfs_lib.sh the variables will be
|
|
# loaded just before call the function.
|
|
|
|
# Here there are a couple of variables you may need.
|
|
# Remove them or add more
|
|
|
|
#Use it rootfs is based in a system has different versions
|
|
OS_VERSION=${OS_VERSION:-DEFAULT_VERSION}
|
|
|
|
#Mandatory Packages that must be installed
|
|
# systemd: An init system that will start kata-agent
|
|
# iptables: Need by Kata agent
|
|
# udevlib.so: Need by Kata agent
|
|
PACKAGES="systemd iptables udevlib.so"
|