1config BR2_PACKAGE_OPENIPMI 2 bool "openipmi" 3 depends on BR2_USE_MMU # fork() 4 depends on !BR2_STATIC_LIBS # dlopen() 5 depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL 6 select BR2_PACKAGE_POPT 7 select BR2_PACKAGE_NCURSES 8 select BR2_PACKAGE_READLINE 9 help 10 IPMI allows remote monitoring and remote management of 11 devices. OpenIPMI provides a library and command line tools 12 to interact with IPMI enabled devices. OpenIPMI also provides 13 an IPMI BMC simulator. 14 15 http://openipmi.sourceforge.net 16 17comment "openipmi needs a toolchain w/ dynamic library, NPTL" 18 depends on BR2_USE_MMU 19 depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS_NPTL 20