swmodd: 2.1.10

This commit is contained in:
vdutta 2022-09-01 19:50:22 +05:30
parent a7f395b78a
commit f3e9a95442
3 changed files with 25 additions and 3 deletions

22
swmodd/Config.in Normal file
View file

@ -0,0 +1,22 @@
menu "Configuration"
depends on PACKAGE_swmodd
config SWMODD_LXC_SUPPORT
bool "Handles LXC based containers"
default n
depends on PACKAGE_swmodd
select PACKAGE_liblxc
config SWMODD_OCI_SUPPORT
bool "Handles OCI containers"
default y
depends on PACKAGE_swmodd
select PACKAGE_crun
config SWMODD_REGISTRY_PULL_SUPPORT
bool "Add support to pull images from container image registries (i.e: docker.io, quay.io)"
default n
depends on PACKAGE_swmodd
select PACKAGE_skopeo
select PACKAGE_umoci
endmenu

View file

@ -5,12 +5,12 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=swmodd PKG_NAME:=swmodd
PKG_VERSION:=2.1.9 PKG_VERSION:=2.1.10
LOCAL_DEV:=0 LOCAL_DEV:=0
ifneq ($(LOCAL_DEV),1) ifneq ($(LOCAL_DEV),1)
PKG_SOURCE_PROTO:=git PKG_SOURCE_PROTO:=git
PKG_SOURCE_VERSION:=2941682d0e8c3a509b8e5b03e6b03609619ca542 PKG_SOURCE_VERSION:=d3657ecee7a3f6725ff91b0803e1247c0538bd44
PKG_SOURCE_URL:=https://dev.iopsys.eu/iopsys/swmodd.git PKG_SOURCE_URL:=https://dev.iopsys.eu/iopsys/swmodd.git
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
PKG_MIRROR_HASH:=skip PKG_MIRROR_HASH:=skip

View file

@ -104,7 +104,7 @@ update_network_ns() {
update_config_json() { update_config_json() {
if [ ! -f "${BUNDLE:?}/${NAME:?}/config.json" ]; then if [ ! -f "${BUNDLE:?}/${NAME:?}/config.json" ]; then
log "config.json not found" log "config.json not found or bundle missing"
exit 0; exit 0;
fi fi