diff --git a/board/shredos/genimage.cfg b/board/shredos/genimage.cfg index ab085a882e..5557b2d39a 100644 --- a/board/shredos/genimage.cfg +++ b/board/shredos/genimage.cfg @@ -11,7 +11,7 @@ image boot.vfat { file autorun.inf { image = 'autorun.inf' } } - size = 300000000 + size = 310000000 } image shredos.img { diff --git a/configs/shredos_defconfig b/configs/shredos_defconfig index dc77a862d0..d76362015a 100644 --- a/configs/shredos_defconfig +++ b/configs/shredos_defconfig @@ -147,6 +147,7 @@ BR2_PACKAGE_SELINUX_PYTHON=y BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW=y BR2_PACKAGE_PARALLEL=y BR2_PACKAGE_TMUX=y +BR2_PACKAGE_OPENSEACHEST=y BR2_PACKAGE_PROCPS_NG=y BR2_PACKAGE_RUNC=y BR2_PACKAGE_UTIL_LINUX_BINARIES=y diff --git a/package/Config.in b/package/Config.in index 57925cbf7f..1370af5f1b 100644 --- a/package/Config.in +++ b/package/Config.in @@ -2863,6 +2863,7 @@ menu "System tools" source "package/numactl/Config.in" source "package/nut/Config.in" source "package/openrc/Config.in" + source "package/openseachest/Config.in" source "package/openvmtools/Config.in" source "package/pamtester/Config.in" source "package/petitboot/Config.in" diff --git a/package/openseachest/Config.in b/package/openseachest/Config.in new file mode 100644 index 0000000000..7eb31102ef --- /dev/null +++ b/package/openseachest/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_OPENSEACHEST + bool "openseachest" + + help + OpenSeaChest + +comment "openseachest" diff --git a/package/openseachest/openseachest.hash b/package/openseachest/openseachest.hash new file mode 100644 index 0000000000..82ed2ab61f --- /dev/null +++ b/package/openseachest/openseachest.hash @@ -0,0 +1 @@ +sha1 13028571b1f6a5a764016c5546264c20abae1f1f SourceCode_With_Submodules.tar.xz diff --git a/package/openseachest/openseachest.mk b/package/openseachest/openseachest.mk new file mode 100644 index 0000000000..90917d0c54 --- /dev/null +++ b/package/openseachest/openseachest.mk @@ -0,0 +1,16 @@ +################################################################################ +# +# opeseachest +# +################################################################################ + +OPENSEACHEST_VERSION = 24.08.1 +OPENSEACHEST_SOURCE = SourceCode_With_Submodules.tar.xz +OPENSEACHEST_SITE = https://github.com/Seagate/openSeaChest/releases/download/v24.08.1 +OPENSEACHEST_LICENSE = MPL-2.0 +OPENSEACHEST_LICENSE_FILES = COPYING +OPENSEACHEST_INSTALL_STAGING = YES + +OPENSEACHEST_DEPENDENCIES = host-pkgconf + +$(eval $(meson-package))