source "package/ola/Config.in"
source "package/on2-8170-modules/Config.in"
source "package/open2300/Config.in"
+ source "package/openipmi/Config.in"
source "package/openocd/Config.in"
source "package/openpowerlink/Config.in"
source "package/owl-linux/Config.in"
--- /dev/null
+config BR2_PACKAGE_OPENIPMI
+ bool "openipmi"
+ depends on BR2_USE_MMU # fork()
+ depends on !BR2_STATIC_LIBS # dlopen()
+ depends on BR2_TOOLCHAIN_HAS_THREADS
+ select BR2_PACKAGE_POPT
+ select BR2_PACKAGE_NCURSES
+ help
+ IPMI allows remote monitoring and remote management of
+ devices. OpenIPMI provides a library and command line tools
+ to interact with IPMI enabled devices. OpenIPMI also provides
+ an IPMI BMC simulator.
+
+comment "openipmi needs a toolchain w/ dynamic library, threads"
+ depends on BR2_USE_MMU
+ depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
--- /dev/null
+################################################################################
+#
+# openipmi
+#
+################################################################################
+
+OPENIPMI_VERSION = 2.0.21
+OPENIPMI_SITE = http://sourceforge.net/projects/openipmi/files/OpenIPMI%202.0%20Library/
+OPENIPMI_SOURCE = OpenIPMI-2.0.21.tar.gz
+OPENIPMI_LICENSE = LGPLv2+, GPLv2+, BSD-3c
+OPENIPMI_LICENSE_FILES = COPYING.LIB COPYING COPYING.BSD
+OPENIPMI_DEPENDENCIES = popt ncurses host-pkgconf
+OPENIPMI_CONF_ENV = ac_cv_path_pkgprog="$(PKG_CONFIG_HOST_BINARY)"
+OPENIPMI_CONF_OPTS = \
+ --with-glib=no \
+ --with-glib12=no \
+ --with-tcl=no \
+ --with-perl=no \
+ --with-python=no \
+ --with-swig=no
+
+ifeq ($(BR2_PACKAGE_OPENSSL),y)
+OPENIPMI_DEPENDENCIES += openssl
+OPENIPMI_CONF_OPTS += --with-openssl=yes
+else
+OPENIPMI_CONF_OPTS += --with-openssl=no
+endif
+
+ifeq ($(BR2_PACKAGE_NETSNMP),y)
+OPENIPMI_DEPENDENCIES += netsnmp
+OPENIPMI_CONF_OPTS += --with-ucdsnmp=yes
+else
+OPENIPMI_CONF_OPTS += --with-ucdsnmp=no
+endif
+
+$(eval $(autotools-package))