code
string
repo_name
string
path
string
language
string
license
string
size
int64
################################################################################ # # openobex # ################################################################################ OPENOBEX_VERSION_MAJOR = 1.5 OPENOBEX_VERSION = $(OPENOBEX_VERSION_MAJOR).0 OPENOBEX_SITE = http://downloads.sourceforge.net/project/openobex/openobex/$(OPENOBEX_VERSION_MAJOR) OPENOBEX_SOURCE = openobex-$(OPENOBEX_VERSION)-Source.zip # Libraries seems to be released under LGPLv2.1+, # while other material is under GPLv2+. OPENOBEX_LICENSE = GPLv2+/LGPLv2.1+ OPENOBEX_LICENSE_FILES = COPYING COPYING.LIB OPENOBEX_DEPENDENCIES = host-pkgconf OPENOBEX_AUTORECONF = YES OPENOBEX_INSTALL_STAGING = YES define OPENOBEX_EXTRACT_CMDS $(UNZIP) -d $(@D) $(DL_DIR)/$(OPENOBEX_SOURCE) mv $(@D)/openobex-$(OPENOBEX_VERSION)-Source/* $(@D) $(RM) -r $(@D)/openobex-$(OPENOBEX_VERSION)-Source endef OPENOBEX_CONF_OPTS += \ $(if $(BR2_PACKAGE_OPENOBEX_APPS),--enable-apps) \ $(if $(BR2_PACKAGE_OPENOBEX_SYSLOG),--enable-syslog) \ $(if $(BR2_PACKAGE_OPENOBEX_DUMP),--enable-dump) ifeq ($(BR2_PACKAGE_OPENOBEX_BLUEZ),y) OPENOBEX_DEPENDENCIES += bluez_utils OPENOBEX_CONF_OPTS += --with-bluez=$(STAGING_DIR) else OPENOBEX_CONF_OPTS += --disable-bluetooth endif ifeq ($(BR2_PACKAGE_OPENOBEX_LIBUSB),y) OPENOBEX_DEPENDENCIES += libusb-compat OPENOBEX_CONF_OPTS += --with-usb=$(STAGING_DIR) else OPENOBEX_CONF_OPTS += --disable-usb endif $(eval $(autotools-package))
shibajee/buildroot
package/openobex/openobex.mk
mk
mit
1,437
From 3bef159779c8fd39a070ec5c8191e18ba2efa79d Mon Sep 17 00:00:00 2001 From: Claudio Laurita <claudio.laurita@integrazionetotale.it> Date: Sun, 30 Nov 2014 18:21:58 +0100 Subject: [PATCH 2/2] Fix jimtcl auto configuration to force static library only. jimtcl ignores a --disable-shared option if a previous --enable-shared option was given. This breaks openocd compilation if shared was the preferred option in buildroot project. Signed-off-by: Claudio Laurita <claudio.laurita@integrazionetotale.it> --- a/jimtcl/auto.def +++ b/jimtcl/auto.def @@ -194,12 +194,8 @@ msg-result "Enabling references" define JIM_REFERENCES } -if {[opt-bool shared with-jim-shared]} { - msg-result "Building shared library" -} else { - msg-result "Building static library" - define JIM_STATICLIB -} +msg-result "Building static library" +define JIM_STATICLIB define LIBSOEXT [format [get-define SH_SOEXTVER] [format %.2f [expr {[get-define JIM_VERSION] / 100.0}]]] define JIM_INSTALL [opt-bool install-jim] define JIM_DOCS [opt-bool docs]
shibajee/buildroot
package/openocd/0002-Fix-jimtcl-auto-configuration-to-force-static-librar.patch
patch
mit
1,047
config BR2_PACKAGE_OPENOCD bool "openocd" help OpenOCD - Open On-Chip Debugger http://openocd.sourceforge.net/ if BR2_PACKAGE_OPENOCD comment "Adapters" config BR2_PACKAGE_OPENOCD_FTDI bool "MPSSE mode of FTDI based devices" select BR2_PACKAGE_LIBUSB depends on BR2_TOOLCHAIN_HAS_THREADS # libusb help Enable building support for the MPSSE mode of FTDI (FT2xxx/FT4xxx) based devices (default is auto) config BR2_PACKAGE_OPENOCD_STLINK bool "ST-Link JTAG Programmer" select BR2_PACKAGE_LIBUSB depends on BR2_TOOLCHAIN_HAS_THREADS # libusb help Enable building support for the ST-Link JTAG Programmer (default is auto) config BR2_PACKAGE_OPENOCD_TI_ICDI bool "TI ICDI JTAG Programmer" select BR2_PACKAGE_LIBUSB depends on BR2_TOOLCHAIN_HAS_THREADS # libusb help Enable building support for the TI ICDI JTAG Programmer (default is auto) config BR2_PACKAGE_OPENOCD_ULINK bool "Keil ULINK JTAG Programmer" select BR2_PACKAGE_LIBUSB depends on BR2_TOOLCHAIN_HAS_THREADS # libusb help Enable building support for the Keil ULINK JTAG Programmer (default is auto) config BR2_PACKAGE_OPENOCD_UBLASTER2 bool "Altera USB-Blaster II Compatible" select BR2_PACKAGE_LIBUSB depends on BR2_TOOLCHAIN_HAS_THREADS # libusb help Enable building support for the Altera USB-Blaster II Compatible (default is auto) config BR2_PACKAGE_OPENOCD_JLINK bool "Segger J-Link JTAG Programmer" select BR2_PACKAGE_LIBUSB depends on BR2_TOOLCHAIN_HAS_THREADS # libusb help Segger J-Link JTAG Programmer and clone such as Atmel SAM-ICE config BR2_PACKAGE_OPENOCD_OSDBM bool "OSDBM JTAG (only) Programmer" select BR2_PACKAGE_LIBUSB depends on BR2_TOOLCHAIN_HAS_THREADS # libusb help Enable building support for the OSBDM (JTAG only) Programmer (default is auto) config BR2_PACKAGE_OPENOCD_OPENDOUS bool "eStick/opendous JTAG Programmer" select BR2_PACKAGE_LIBUSB depends on BR2_TOOLCHAIN_HAS_THREADS # libusb help Enable building support for the eStick/opendous JTAG Programmer (default is auto) config BR2_PACKAGE_OPENOCD_AICE bool "Andes JTAG Programmer" select BR2_PACKAGE_LIBUSB depends on BR2_USE_MMU # use fork() depends on BR2_TOOLCHAIN_HAS_THREADS # libusb help Enable building support for the Andes JTAG Programmer (default is auto) config BR2_PACKAGE_OPENOCD_VSLLINK bool "Versaloon-Link JTAG Programmer" select BR2_PACKAGE_LIBUSB select BR2_PACKAGE_LIBUSB_COMPAT depends on BR2_TOOLCHAIN_HAS_THREADS # libusb-compat -> libusb help Enable building support for the Versaloon-Link JTAG Programmer (default is auto) config BR2_PACKAGE_OPENOCD_USBPROG bool "USBProg JTAG Programmer" select BR2_PACKAGE_LIBUSB select BR2_PACKAGE_LIBUSB_COMPAT depends on BR2_TOOLCHAIN_HAS_THREADS # libusb-compat -> libusb help Enable building support for the USBProg JTAG Programmer (default is auto) config BR2_PACKAGE_OPENOCD_RLINK bool "Raisonance RLink JTAG Programmer" select BR2_PACKAGE_LIBUSB select BR2_PACKAGE_LIBUSB_COMPAT depends on BR2_TOOLCHAIN_HAS_THREADS # libusb-compat -> libusb help Enable building support for the Raisonance RLink JTAG Programmer (default is auto) config BR2_PACKAGE_OPENOCD_ARMEW bool "Olimex ARM-JTAG-EW Programmer" select BR2_PACKAGE_LIBUSB select BR2_PACKAGE_LIBUSB_COMPAT depends on BR2_TOOLCHAIN_HAS_THREADS # libusb-compat -> libusb help Enable building support for the Olimex ARM-JTAG-EW Programmer (default is auto) config BR2_PACKAGE_OPENOCD_PARPORT bool "pc parallel port driver" help Enable building the pc parallel port driver config BR2_PACKAGE_OPENOCD_FT2XXX bool "FT2232 based devices (DEPRECATED)" select BR2_PACKAGE_LIBFTDI1 depends on BR2_TOOLCHAIN_HAS_THREADS # libftdi -> libusb help (DEPRECATED) Enable building support for FT2232 based devices using the libftdi library config BR2_PACKAGE_OPENOCD_VPI bool "JTAG VPI" help Enable building support for JTAG VPI config BR2_PACKAGE_OPENOCD_UBLASTER bool "Altera USB-Blaster" select BR2_PACKAGE_LIBFTDI1 depends on BR2_TOOLCHAIN_HAS_THREADS # libftdi -> libusb help Enable building support for the Altera USB-Blaster using the libftdi driver, opensource alternate of FTD2XX config BR2_PACKAGE_OPENOCD_AMTJT bool "Amontec JTAG-Accelerator" help Enable building the Amontec JTAG-Accelerator driver if BR2_arm config BR2_PACKAGE_OPENOCD_EP93XX bool "EP93xx based SBCs" help Enable building support for EP93xx based SBCs config BR2_PACKAGE_OPENOCD_AT91RM bool "AT91RM9200 based SBCs" help Enable building support for AT91RM9200 based SBCs config BR2_PACKAGE_OPENOCD_BCM2835 bool "bitbanging on BCM2835" help Enable building support for bitbanging on BCM2835 (as found in Raspberry Pi) endif # BR2_arm config BR2_PACKAGE_OPENOCD_GW16012 bool "Gateworks GW16012 JTAG Programmer" help Enable building support for the Gateworks GW16012 JTAG Programmer config BR2_PACKAGE_OPENOCD_PRESTO bool "ASIX Presto Programmer" select BR2_PACKAGE_LIBFTDI1 depends on BR2_TOOLCHAIN_HAS_THREADS # libftdi -> libusb help Enable building support for ASIX Presto Programmer using the libftdi driver config BR2_PACKAGE_OPENOCD_OPENJTAG bool "OpenJTAG Programmer" select BR2_PACKAGE_LIBFTDI1 select BR2_PACKAGE_LIBUSB select BR2_PACKAGE_LIBUSB_COMPAT # needs usb.h depends on BR2_TOOLCHAIN_HAS_THREADS # libftdi -> libusb help Enable building support for the OpenJTAG Programmer with ftdi driver config BR2_PACKAGE_OPENOCD_BUSPIRATE bool "Buspirate" help Enable building support for the Buspirate config BR2_PACKAGE_OPENOCD_SYSFS bool "programming via sysfs gpios" help Enable building support for programming driven via sysfs gpios. # Many adapters need libusb or libusb-compat, which require threads, # but we don't want to duplicate this comment for all adapters that # select libusb or libusb-compat. comment "many openocd adapters needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS endif # BR2_PACKAGE_OPENOCD
shibajee/buildroot
package/openocd/Config.in
in
mit
6,038
config BR2_PACKAGE_HOST_OPENOCD bool "host openocd" help OpenOCD - Open On-Chip Debugger http://openocd.org/
shibajee/buildroot
package/openocd/Config.in.host
host
mit
118
# From http://sourceforge.net/projects/openocd/files/openocd/0.9.0/ sha1 bcf99bb21f09513065b2c9ece148ace7d16cdd0c openocd-0.9.0.tar.bz2 md5 665cc98ae9e7297e09ec6ac7235fee49 openocd-0.9.0.tar.bz2
shibajee/buildroot
package/openocd/openocd.hash
hash
mit
195
################################################################################ # # openocd # ################################################################################ OPENOCD_VERSION = 0.9.0 OPENOCD_SOURCE = openocd-$(OPENOCD_VERSION).tar.bz2 OPENOCD_SITE = http://sourceforge.net/projects/openocd/files/openocd/$(OPENOCD_VERSION) OPENOCD_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -std=gnu99" OPENOCD_CONF_OPTS = \ --oldincludedir=$(STAGING_DIR)/usr/include \ --includedir=$(STAGING_DIR)/usr/include \ --disable-doxygen-html \ --with-jim-shared=no \ --disable-shared \ --enable-dummy \ --disable-werror # Rely on the Config.in options of each individual adapter selecting # the dependencies they need. OPENOCD_DEPENDENCIES = \ $(if $(BR2_PACKAGE_LIBFTDI1),libftdi1) \ $(if $(BR2_PACKAGE_LIBUSB),libusb) \ $(if $(BR2_PACKAGE_LIBUSB_COMPAT),libusb-compat) \ $(if $(BR2_PACKAGE_LIBHID),libhid) # Adapters OPENOCD_CONF_OPTS += \ $(if $(BR2_PACKAGE_OPENOCD_FTDI),--enable-ftdi,--disable-ftdi) \ $(if $(BR2_PACKAGE_OPENOCD_STLINK),--enable-stlink,--disable-stlink) \ $(if $(BR2_PACKAGE_OPENOCD_TI_ICDI),--enable-ti-icdi,--disable-ti-icdi) \ $(if $(BR2_PACKAGE_OPENOCD_ULINK),--enable-ulink,--disable-ulink) \ $(if $(BR2_PACKAGE_OPENOCD_UBLASTER2),--enable-usb-blaster-2,--disable-usb-blaster-2) \ $(if $(BR2_PACKAGE_OPENOCD_JLINK),--enable-jlink,--disable-jlink) \ $(if $(BR2_PACKAGE_OPENOCD_OSDBM),--enable-osbdm,--disable-osbdm) \ $(if $(BR2_PACKAGE_OPENOCD_OPENDOUS),--enable-opendous,--disable-opendous) \ $(if $(BR2_PACKAGE_OPENOCD_AICE),--enable-aice,--disable-aice) \ $(if $(BR2_PACKAGE_OPENOCD_VSLLINK),--enable-vsllink,--disable-vsllink) \ $(if $(BR2_PACKAGE_OPENOCD_USBPROG),--enable-usbprog,--disable-usbprog) \ $(if $(BR2_PACKAGE_OPENOCD_RLINK),--enable-rlink,--disable-rlink) \ $(if $(BR2_PACKAGE_OPENOCD_ARMEW),--enable-armjtagew,--disable-armjtagew) \ $(if $(BR2_PACKAGE_OPENOCD_CMSIS_DAP),--enable-cmsis-dap,--disable-cmsis-dap) \ $(if $(BR2_PACKAGE_OPENOCD_PARPORT),--enable-parport,--disable-parport) \ $(if $(BR2_PACKAGE_OPENOCD_FT2XXX),--enable-legacy-ft2232_libftdi,--disable-legacy-ft2232_libftdi) \ $(if $(BR2_PACKAGE_OPENOCD_VPI),--enable-jtag_vpi,--disable-jtag_vpi) \ $(if $(BR2_PACKAGE_OPENOCD_UBLASTER),--enable-usb_blaster_libftdi,--disable-usb_blaster_libftdi) \ $(if $(BR2_PACKAGE_OPENOCD_AMTJT),--enable-amtjtagaccel,--disable-amjtagaccel) \ $(if $(BR2_PACKAGE_OPENOCD_ZY1000_MASTER),--enable-zy1000-master,--disable-zy1000-master) \ $(if $(BR2_PACKAGE_OPENOCD_ZY1000),--enable-zy1000,--disable-zy1000) \ $(if $(BR2_PACKAGE_OPENOCD_EP93XX),--enable-ep93xx,--disable-ep93xx) \ $(if $(BR2_PACKAGE_OPENOCD_AT91RM),--enable-at91rm9200,--disable-at91rm9200) \ $(if $(BR2_PACKAGE_OPENOCD_BCM2835),--enable-bcm2835gpio,--disable-bcm2835gpio) \ $(if $(BR2_PACKAGE_OPENOCD_GW16012),--enable-gw16012,--disable-gw16012) \ $(if $(BR2_PACKAGE_OPENOCD_PRESTO),--enable-presto_libftdi,--disable-presto_libftdi) \ $(if $(BR2_PACKAGE_OPENOCD_OPENJTAG),--enable-openjtag_ftdi,--disable-openjtag_ftdi) \ $(if $(BR2_PACKAGE_OPENOCD_BUSPIRATE),--enable-buspirate,--disable-buspirate) \ $(if $(BR2_PACKAGE_OPENOCD_SYSFS),--enable-sysfsgpio,--disable-sysfsgpio) # Enable all configuration options for host build. # # Note that deprecated options have been removed. CMSIS_DAP needs # hidapi (currently not included in buildroot) and zy1000 stuff fails # to build, so they've been removed too. # HOST_OPENOCD_CONF_OPTS = \ --enable-ftdi \ --enable-stlink \ --enable-ti-icdi \ --enable-ulink \ --enable-usb-blaster-2 \ --enable-jlink \ --enable-osbdm \ --enable-opendous \ --enable-aice \ --enable-vsllink \ --enable-usbprog \ --enable-rlink \ --enable-armjtagew \ --enable-parport \ --enable-jtag_vpi \ --enable-usb_blaster_libftdi \ --enable-amtjtagaccel \ --enable-gw16012 \ --enable-presto_libftdi \ --enable-openjtag_ftdi \ --enable-buspirate \ --enable-sysfsgpio \ --oldincludedir=$(HOST_DIR)/usr/include \ --includedir=$(HOST_DIR)/usr/include \ --disable-doxygen-html \ --with-jim-shared=no \ --disable-shared \ --enable-dummy \ --disable-werror HOST_OPENOCD_DEPENDENCIES = host-libftdi host-libusb host-libusb-compat $(eval $(autotools-package)) $(eval $(host-autotools-package))
shibajee/buildroot
package/openocd/openocd.mk
mk
mit
4,269
From e04f5c20fc1536f8e6d4faf32f2f4657d441f7c8 Mon Sep 17 00:00:00 2001 From: Samuel Martin <s.martin49@gmail.com> Date: Mon, 14 Apr 2014 17:54:37 +0200 Subject: [PATCH] version_generator.py: make it python3 compliant Signed-off-by: Samuel Martin <s.martin49@gmail.com> --- openpgm/pgm/version_generator.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/openpgm/pgm/version_generator.py b/openpgm/pgm/version_generator.py index 2265480..c31376f 100755 --- a/openpgm/pgm/version_generator.py +++ b/openpgm/pgm/version_generator.py @@ -1,5 +1,7 @@ #!/usr/bin/python +from __future__ import print_function + import os import platform import time @@ -8,7 +10,7 @@ build_date = time.strftime ("%Y-%m-%d") build_time = time.strftime ("%H:%M:%S") build_rev = filter (str.isdigit, "$Revision: 1369 $") -print """ +print(""" /* vim:ts=8:sts=8:sw=4:noai:noexpandtab * * OpenPGM version. @@ -47,6 +49,6 @@ const char* pgm_build_revision = "%s"; /* eof */ -"""%(build_date, build_time, platform.system(), platform.machine(), build_rev) +"""%(build_date, build_time, platform.system(), platform.machine(), build_rev)) # end of file -- 1.9.2
shibajee/buildroot
package/openpgm/0001-version_generator.py-make-it-python3-compliant.patch
patch
mit
1,182
configure.ac: cross-compilation fix This patch enables to configure the package when cross-compiling in a way recommended by Autoconf manual (see manual for version 2.69, Section 6.6 Checking Runtime Behavior). Signed-off-by: Alexander Lukichev <alexander.lukichev@gmail.com> --- a/openpgm/pgm/configure.ac 2011-09-27 20:59:08.000000000 +0300 +++ b/openpgm/pgm/configure.ac 2013-02-12 10:33:53.000000000 +0200 @@ -272,14 +272,19 @@ uint32_t add32_with_carry (uint32_t a, u ;; esac # ticket spinlock friendly: unaligned pointers & atomic ops (excl. Sun Pro) -AC_MSG_CHECKING([for unaligned pointers]) -AC_RUN_IFELSE( - [AC_LANG_PROGRAM([[char* nezumi = "mouse";]], - [[short x = *(short*)(nezumi + 2)]])], - [AC_MSG_RESULT([yes]) - pgm_unaligned_pointers=yes], - [AC_MSG_RESULT([no]) - pgm_unaligned_pointers=no]) +AC_CACHE_CHECK([if unaligned access fails], [ac_cv_lbl_unaligned_fail], + [AC_RUN_IFELSE( + [AC_LANG_PROGRAM([[char* nezumi = "mouse";]], + [[short x = *(short*)(nezumi + 2)]])], + [ac_cv_lbl_unaligned_fail=no], + [ac_cv_lbl_unaligned_fail=yes], + [ac_cv_lbl_unaligned_fail=yes]) + ]) +if test "$ac_cv_lbl_unaligned_fail" = yes; then + pgm_unaligned_pointers=no +else + pgm_unaligned_pointers=yes +fi AC_MSG_CHECKING([for intrinsic atomic ops]) # AC_PREPROC_IFELSE not always portable AC_COMPILE_IFELSE(
shibajee/buildroot
package/openpgm/0002-cross-compile.patch
patch
mit
1,337
From 01128a2d8ad3288e8b96a908888049f186d156ee Mon Sep 17 00:00:00 2001 From: Bernd Kuhls <bernd.kuhls@t-online.de> Date: Sat, 21 May 2016 19:44:48 +0200 Subject: [PATCH 1/1] Rework headers includes to fix build with musl libc Downloaded patch from http://git.alpinelinux.org/cgit/aports/plain/main/openpgm/openpgm-fix-includes.patch and adjusted paths by prefixing with "openpgm/pgm/" A build log with the compile error can be found here: http://autobuild.buildroot.net/results/854/854554827ead82f29b293ddceced6eb7fbfeec27/build-end.log Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> (Patch sent upstream: https://github.com/steve-o/openpgm/pull/44) --- openpgm/pgm/include/impl/security.h | 3 ++- openpgm/pgm/include/pgm/types.h | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/openpgm/pgm/include/impl/security.h b/openpgm/pgm/include/impl/security.h index c2b3e3d..896316f 100644 --- a/openpgm/pgm/include/impl/security.h +++ b/openpgm/pgm/include/impl/security.h @@ -33,7 +33,6 @@ #include <stdio.h> #include <stdarg.h> #include <sys/types.h> -#include <sys/timeb.h> #include <impl/i18n.h> #include <impl/errno.h> #include <impl/string.h> @@ -41,6 +40,8 @@ PGM_BEGIN_DECLS #ifdef HAVE_FTIME +#include <sys/timeb.h> + static inline errno_t # if !defined( _WIN32 ) diff --git a/openpgm/pgm/include/pgm/types.h b/openpgm/pgm/include/pgm/types.h index 4e41261..58731a3 100644 --- a/openpgm/pgm/include/pgm/types.h +++ b/openpgm/pgm/include/pgm/types.h @@ -27,6 +27,7 @@ #ifndef _MSC_VER # include <sys/param.h> +# include <sys/types.h> #endif #include <pgm/macros.h> -- 2.8.1
shibajee/buildroot
package/openpgm/0003-Rework-headers-includes-to-fix-build-with-musl-libc.patch
patch
mit
1,636
config BR2_PACKAGE_OPENPGM bool "openpgm" depends on BR2_TOOLCHAIN_HAS_SYNC_2 depends on BR2_TOOLCHAIN_HAS_SYNC_4 depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_USE_WCHAR help OpenPGM is an open source implementation of the Pragmatic General Multicast (PGM) specification in RFC 3208 available at www.ietf.org. PGM is a reliable and scalable multicast protocol that enables receivers to detect loss, request retransmission of lost data, or notify an application of unrecoverable loss. https://github.com/steve-o/openpgm/ comment "openpgm needs a toolchain w/ wchar, threads" depends on BR2_TOOLCHAIN_HAS_SYNC_2 depends on BR2_TOOLCHAIN_HAS_SYNC_4 depends on !(BR2_TOOLCHAIN_HAS_THREADS && BR2_USE_WCHAR)
shibajee/buildroot
package/openpgm/Config.in
in
mit
741
# Locally calculated sha256 ecd48fd0bcfd8351ce6dcf31b063dd8fe83d3dab41bca62a6ebd6880a88c4a69 openpgm-release-5-2-122.tar.gz
shibajee/buildroot
package/openpgm/openpgm.hash
hash
mit
125
################################################################################ # # openpgm # ################################################################################ OPENPGM_VERSION = release-5-2-122 OPENPGM_SITE = $(call github,steve-o,openpgm,$(OPENPGM_VERSION)) OPENPGM_LICENSE = LGPLv2.1+ OPENPGM_LICENSE_FILES = openpgm/pgm/LICENSE OPENPGM_INSTALL_STAGING = YES OPENPGM_SUBDIR = openpgm/pgm OPENPGM_AUTORECONF = YES # We need to create the m4 directory to make sure that autoreconf will # start calling libtoolize. Otherwise it will start with aclocal and it # will fail because the m4 directory doesn't exist. define OPENPGM_CREATE_M4_DIR mkdir -p $(@D)/$(OPENPGM_SUBDIR)/m4 endef OPENPGM_POST_PATCH_HOOKS += OPENPGM_CREATE_M4_DIR OPENPGM_CONF_ENV = \ ac_cv_file__proc_cpuinfo=yes \ ac_cv_file__dev_rtc=no \ ac_cv_file__dev_hpet=no $(eval $(autotools-package))
shibajee/buildroot
package/openpgm/openpgm.mk
mk
mit
885
From ded9f83ef3bcb4c688da80354c179543e4862e52 Mon Sep 17 00:00:00 2001 From: Romain Naour <romain.naour@gmail.com> Date: Wed, 25 May 2016 15:57:10 +0200 Subject: [PATCH] install the stack libraries to "lib" subdirectory Using '.' to install the stack libraries is not correct since it will install them to /usr/. ls /usr/liboplkmnapp-kernelintf.so Fix this by using 'lib' instead of '.' The problem with the openpowerlink build system is that it expect the stack directory to be a "local staging" directory which contains headers and libraries. So the libraries build by the stack project are installed in stack/lib by default. This is wrong to do that because it becomes difficult to package openpowerlink for normal Linux systems. Buildroot like others build system expect from a packaged software to install libraries and headers build/provided in a staging directory. It seems that CMAKE_INSTALL_PREFIX is misused by the default value "${CMAKE_CURRENT_SOURCE_DIR}/lib/${SYSTEM_NAME_DIR}/${SYSTEM_PROCESSOR_DIR}" since it already contains the lib directory and therefore the entire build system is messed up. It seems that the openpowerlink's build system doesn't allow/support CMAKE_INSTALL_PREFIX to be set externally (which is the standard approach). The issue has been reported [1] upstream and a build system refactoring is needed to fix this properly. [1] http://sourceforge.net/p/openpowerlink/discussion/newbie/thread/3f13af65/#8f80/a50a/4649/f07c Signed-off-by: Romain Naour <romain.naour@gmail.com> --- stack/proj/linux/liboplkcn/CMakeLists.txt | 2 +- stack/proj/linux/liboplkcnapp-kernelintf/CMakeLists.txt | 2 +- stack/proj/linux/liboplkcnapp-userintf/CMakeLists.txt | 2 +- stack/proj/linux/liboplkcndrv-pcap/CMakeLists.txt | 2 +- stack/proj/linux/liboplkmn/CMakeLists.txt | 2 +- stack/proj/linux/liboplkmnapp-kernelintf/CMakeLists.txt | 2 +- stack/proj/linux/liboplkmnapp-kernelpcie/CMakeLists.txt | 2 +- stack/proj/linux/liboplkmnapp-userintf/CMakeLists.txt | 2 +- stack/proj/linux/liboplkmndrv-pcap/CMakeLists.txt | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/stack/proj/linux/liboplkcn/CMakeLists.txt b/stack/proj/linux/liboplkcn/CMakeLists.txt index c700d9d..b891553 100644 --- a/stack/proj/linux/liboplkcn/CMakeLists.txt +++ b/stack/proj/linux/liboplkcn/CMakeLists.txt @@ -94,4 +94,4 @@ ADD_LIBRARY(${LIB_NAME} ${LIB_TYPE} ${LIB_SOURCES}) TARGET_LINK_LIBRARIES(${LIB_NAME} ${ARCH_LIBRARIES}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY COMPILE_DEFINITIONS_DEBUG DEBUG;DEF_DEBUG_LVL=${CFG_DEBUG_LVL}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY DEBUG_POSTFIX "_d") -INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION . LIBRARY DESTINATION .) +INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib) diff --git a/stack/proj/linux/liboplkcnapp-kernelintf/CMakeLists.txt b/stack/proj/linux/liboplkcnapp-kernelintf/CMakeLists.txt index 03752df..7b1050c 100644 --- a/stack/proj/linux/liboplkcnapp-kernelintf/CMakeLists.txt +++ b/stack/proj/linux/liboplkcnapp-kernelintf/CMakeLists.txt @@ -87,4 +87,4 @@ ADD_LIBRARY(${LIB_NAME} ${LIB_TYPE} ${LIB_SOURCES}) TARGET_LINK_LIBRARIES(${LIB_NAME} ${ARCH_LIBRARIES}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY COMPILE_DEFINITIONS_DEBUG DEBUG;DEF_DEBUG_LVL=${CFG_DEBUG_LVL}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY DEBUG_POSTFIX "_d") -INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION . LIBRARY DESTINATION .) +INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib) diff --git a/stack/proj/linux/liboplkcnapp-userintf/CMakeLists.txt b/stack/proj/linux/liboplkcnapp-userintf/CMakeLists.txt index bcc4273..8ca5b7e 100644 --- a/stack/proj/linux/liboplkcnapp-userintf/CMakeLists.txt +++ b/stack/proj/linux/liboplkcnapp-userintf/CMakeLists.txt @@ -87,4 +87,4 @@ ADD_LIBRARY(${LIB_NAME} ${LIB_TYPE} ${LIB_SOURCES}) TARGET_LINK_LIBRARIES(${LIB_NAME} ${ARCH_LIBRARIES}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY COMPILE_DEFINITIONS_DEBUG DEBUG;DEF_DEBUG_LVL=${CFG_DEBUG_LVL}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY DEBUG_POSTFIX "_d") -INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION . LIBRARY DESTINATION .) +INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib) diff --git a/stack/proj/linux/liboplkcndrv-pcap/CMakeLists.txt b/stack/proj/linux/liboplkcndrv-pcap/CMakeLists.txt index 440f02c..6ffcbe9 100644 --- a/stack/proj/linux/liboplkcndrv-pcap/CMakeLists.txt +++ b/stack/proj/linux/liboplkcndrv-pcap/CMakeLists.txt @@ -77,4 +77,4 @@ ADD_LIBRARY(${LIB_NAME} ${LIB_TYPE} ${LIB_SOURCES}) TARGET_LINK_LIBRARIES(${LIB_NAME} ${ARCH_LIBRARIES}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY COMPILE_DEFINITIONS_DEBUG DEBUG;DEF_DEBUG_LVL=${CFG_DEBUG_LVL}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY DEBUG_POSTFIX "_d") -INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION . LIBRARY DESTINATION .) +INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib) diff --git a/stack/proj/linux/liboplkmn/CMakeLists.txt b/stack/proj/linux/liboplkmn/CMakeLists.txt index a8850b8..d762d4c 100644 --- a/stack/proj/linux/liboplkmn/CMakeLists.txt +++ b/stack/proj/linux/liboplkmn/CMakeLists.txt @@ -93,4 +93,4 @@ ADD_LIBRARY(${LIB_NAME} ${LIB_TYPE} ${LIB_SOURCES}) TARGET_LINK_LIBRARIES(${LIB_NAME} ${ARCH_LIBRARIES}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY COMPILE_DEFINITIONS_DEBUG DEBUG;DEF_DEBUG_LVL=${CFG_DEBUG_LVL}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY DEBUG_POSTFIX "_d") -INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION . LIBRARY DESTINATION .) +INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib) diff --git a/stack/proj/linux/liboplkmnapp-kernelintf/CMakeLists.txt b/stack/proj/linux/liboplkmnapp-kernelintf/CMakeLists.txt index f2606a3..f71b182 100644 --- a/stack/proj/linux/liboplkmnapp-kernelintf/CMakeLists.txt +++ b/stack/proj/linux/liboplkmnapp-kernelintf/CMakeLists.txt @@ -86,4 +86,4 @@ ADD_LIBRARY(${LIB_NAME} ${LIB_TYPE} ${LIB_SOURCES}) TARGET_LINK_LIBRARIES(${LIB_NAME} ${ARCH_LIBRARIES}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY COMPILE_DEFINITIONS_DEBUG DEBUG;DEF_DEBUG_LVL=${CFG_DEBUG_LVL}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY DEBUG_POSTFIX "_d") -INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION . LIBRARY DESTINATION .) +INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib) diff --git a/stack/proj/linux/liboplkmnapp-kernelpcie/CMakeLists.txt b/stack/proj/linux/liboplkmnapp-kernelpcie/CMakeLists.txt index 9362ad8..1d5fb6d 100644 --- a/stack/proj/linux/liboplkmnapp-kernelpcie/CMakeLists.txt +++ b/stack/proj/linux/liboplkmnapp-kernelpcie/CMakeLists.txt @@ -88,4 +88,4 @@ ADD_LIBRARY(${LIB_NAME} ${LIB_TYPE} ${LIB_SOURCES}) TARGET_LINK_LIBRARIES(${LIB_NAME} ${ARCH_LIBRARIES}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY COMPILE_DEFINITIONS_DEBUG DEBUG;DEF_DEBUG_LVL=${CFG_DEBUG_LVL}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY DEBUG_POSTFIX "_d") -INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION . LIBRARY DESTINATION .) +INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib) diff --git a/stack/proj/linux/liboplkmnapp-userintf/CMakeLists.txt b/stack/proj/linux/liboplkmnapp-userintf/CMakeLists.txt index 6741eef..042cbcf 100644 --- a/stack/proj/linux/liboplkmnapp-userintf/CMakeLists.txt +++ b/stack/proj/linux/liboplkmnapp-userintf/CMakeLists.txt @@ -86,4 +86,4 @@ ADD_LIBRARY(${LIB_NAME} ${LIB_TYPE} ${LIB_SOURCES}) TARGET_LINK_LIBRARIES(${LIB_NAME} ${ARCH_LIBRARIES}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY COMPILE_DEFINITIONS_DEBUG DEBUG;DEF_DEBUG_LVL=${CFG_DEBUG_LVL}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY DEBUG_POSTFIX "_d") -INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION . LIBRARY DESTINATION .) +INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib) diff --git a/stack/proj/linux/liboplkmndrv-pcap/CMakeLists.txt b/stack/proj/linux/liboplkmndrv-pcap/CMakeLists.txt index b4dd41b..cf875ca 100644 --- a/stack/proj/linux/liboplkmndrv-pcap/CMakeLists.txt +++ b/stack/proj/linux/liboplkmndrv-pcap/CMakeLists.txt @@ -80,4 +80,4 @@ ADD_LIBRARY(${LIB_NAME} ${LIB_TYPE} ${LIB_SOURCES}) TARGET_LINK_LIBRARIES(${LIB_NAME} ${ARCH_LIBRARIES}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY COMPILE_DEFINITIONS_DEBUG DEBUG;DEF_DEBUG_LVL=${CFG_DEBUG_LVL}) SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY DEBUG_POSTFIX "_d") -INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION . LIBRARY DESTINATION .) +INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib) -- 2.5.5
shibajee/buildroot
package/openpowerlink/0001-install-the-stack-libraries-to-lib-subdirectory.patch
patch
mit
8,514
From 535f50e30afaa4fc6389273d1a5b6c20cb7cf5a4 Mon Sep 17 00:00:00 2001 From: Romain Naour <romain.naour@gmail.com> Date: Wed, 25 May 2016 15:57:29 +0200 Subject: [PATCH] cmake: install oplk headers files In order to be able to link a third party application with openpowerlink libraries, we need to install the oplk headers files related to openpowerlink stack. Install all headers file from STACK_INCLUDE_DIR/oplk. Signed-off-by: Romain Naour <romain.naour@gmail.com> --- stack/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stack/CMakeLists.txt b/stack/CMakeLists.txt index c6cde8c..2652858 100644 --- a/stack/CMakeLists.txt +++ b/stack/CMakeLists.txt @@ -104,3 +104,8 @@ ELSEIF((CMAKE_SYSTEM_NAME STREQUAL "Generic") AND (CMAKE_SYSTEM_PROCESSOR STREQU ELSE() MESSAGE(FATAL_ERROR "Unknown Platform and processor combination ${CMAKE_SYSTEM_NAME} and ${CMAKE_SYSTEM_PROCESSOR}!!") ENDIF() + +################################################################################ +# Install oplk headers files +################################################################################ +INSTALL(DIRECTORY ${STACK_INCLUDE_DIR}/oplk DESTINATION "include") -- 2.5.5
shibajee/buildroot
package/openpowerlink/0002-cmake-install-oplk-headers-files.patch
patch
mit
1,200
From 1b92df6f8283e15b6877f7cd70063648727fc88b Mon Sep 17 00:00:00 2001 From: Romain Naour <romain.naour@gmail.com> Date: Wed, 25 May 2016 15:59:20 +0200 Subject: [PATCH] Add top level CMakeLists.txt This CMakeLists.txt can be used to build openpowerlink using a automated build system. Don't use FIND_LIBRARY when the stack is built from a top level build (ie CFG_OPLK_LIB is ON). For a top level build, CMake will automatically add a build dependency on oplk libraries for building demos applications. Also replace OPLKLIB_DEBUG by OPLKLIB in OPLK_LINK_LIBRARIES macro if CMAKE_BUILD_TYPE is "Debug", otherwise TARGET_LINK_LIBRARIES can't find the openpowerlink library. This issue may be related to: https://github.com/OpenAutomationTechnologies/openPOWERLINK_V2/issues/109 Fixes: http://autobuild.buildroot.net/results/da4/da445b65cb136d71577f04e3a17fdb2ef6302a9b This patch has not been accepted by upstream: https://github.com/openPOWERLINK/openPOWERLINK_V2/pull/57 Add PCIe support (v2.3.2) Signed-off-by: Romain Naour <romain.naour@gmail.com> --- CMakeLists.txt | 42 +++++++++++++++++ apps/common/cmake/findoplklib.cmake | 68 +++++++++++++++------------- apps/common/cmake/linkoplklib.cmake | 2 +- drivers/linux/drv_daemon_pcap/CMakeLists.txt | 12 +++-- 4 files changed, 89 insertions(+), 35 deletions(-) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..28d4e7a --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,42 @@ + +CMAKE_MINIMUM_REQUIRED (VERSION 2.8.7) + +#### LIB #### + +IF (CFG_OPLK_LIB) + ADD_SUBDIRECTORY("stack") +ENDIF (CFG_OPLK_LIB) + +#### Linux kernel Ethernet module #### + +IF (CFG_KERNEL_DRIVERS) + ADD_SUBDIRECTORY("drivers/linux/drv_kernelmod_edrv") +ENDIF (CFG_KERNEL_DRIVERS) + +#### Linux kernel PCIe module #### + +IF (CFG_KERNEL_PCIE_DRIVERS) + ADD_SUBDIRECTORY("drivers/linux/drv_kernelmod_pcie") +ENDIF (CFG_KERNEL_PCIE_DRIVERS) + +#### Pcap userspace driver #### + +IF (CFG_PCAP_DAEMON) + ADD_SUBDIRECTORY("drivers/linux/drv_daemon_pcap") +ENDIF (CFG_PCAP_DAEMON) + +#### OpenPowerLink Demos #### + +# Add subdirectory of CN console demo application +IF (CFG_DEMO_CN_CONSOLE) + ADD_SUBDIRECTORY("apps/demo_cn_console") +ENDIF (CFG_DEMO_CN_CONSOLE) + +# Add subdirectory of MN console demo application +IF (CFG_DEMO_MN_CONSOLE) + ADD_SUBDIRECTORY("apps/demo_mn_console") +ENDIF (CFG_DEMO_MN_CONSOLE) + +IF (CFG_DEMO_MN_QT) + ADD_SUBDIRECTORY("apps/demo_mn_qt") +ENDIF (CFG_DEMO_MN_QT) diff --git a/apps/common/cmake/findoplklib.cmake b/apps/common/cmake/findoplklib.cmake index aa427a6..e6a802e 100644 --- a/apps/common/cmake/findoplklib.cmake +++ b/apps/common/cmake/findoplklib.cmake @@ -89,36 +89,42 @@ MACRO(FIND_OPLK_LIBRARY OPLK_NODE_TYPE) # Set oplk library directory SET(OPLKLIB_DIR ${OPLK_BASE_DIR}/stack/lib/${SYSTEM_NAME_DIR}/${SYSTEM_PROCESSOR_DIR}) - IF((CMAKE_GENERATOR MATCHES "Visual Studio") OR (CMAKE_BUILD_TYPE STREQUAL "Release")) - # Search for release library - UNSET(OPLKLIB CACHE) - MESSAGE(STATUS "Searching for LIBRARY ${OPLKLIB_NAME} in ${OPLKLIB_DIR}") - FIND_LIBRARY(OPLKLIB NAME ${OPLKLIB_NAME} - HINTS ${OPLKLIB_DIR} ${OPLKLIB_DIR}/${CFG_DEMO_BOARD_NAME}/${CFG_DEMO_NAME}) - - IF(CMAKE_SYSTEM_NAME STREQUAL "Windows") - - UNSET(OPLKDLL CACHE) - FIND_PROGRAM(OPLKDLL NAME ${OPLKLIB_NAME}.dll - HINTS ${OPLKLIB_DIR}) - - ENDIF(CMAKE_SYSTEM_NAME STREQUAL "Windows") - ENDIF() - - IF((CMAKE_GENERATOR MATCHES "Visual Studio") OR (CMAKE_BUILD_TYPE STREQUAL "Debug")) - # Search for debug library - UNSET(OPLKLIB_DEBUG CACHE) - MESSAGE(STATUS "Searching for LIBRARY ${OPLKLIB_DEBUG_NAME} in ${OPLKLIB_DIR}") - FIND_LIBRARY(OPLKLIB_DEBUG NAME ${OPLKLIB_DEBUG_NAME} - HINTS ${OPLKLIB_DIR} ${OPLKLIB_DIR}/${CFG_DEMO_BOARD_NAME}/${CFG_DEMO_NAME}) - - IF(CMAKE_SYSTEM_NAME STREQUAL "Windows") - - UNSET(OPLKDLL_DEBUG CACHE) - FIND_PROGRAM(OPLKDLL_DEBUG NAME ${OPLKLIB_DEBUG_NAME}.dll - HINTS ${OPLKLIB_DIR}) - - ENDIF(CMAKE_SYSTEM_NAME STREQUAL "Windows") - ENDIF() + # Don't look for oplk libraries for a top level build + IF(CFG_OPLK_LIB) + SET(OPLKLIB ${OPLKLIB_NAME}) + SET(OPLKLIB_DEBUG ${OPLKLIB_DEBUG_NAME}) + ELSE(CFG_OPLK_LIB) + IF((CMAKE_GENERATOR MATCHES "Visual Studio") OR (CMAKE_BUILD_TYPE STREQUAL "Release")) + # Search for release library + UNSET(OPLKLIB CACHE) + MESSAGE(STATUS "Searching for LIBRARY ${OPLKLIB_NAME} in ${OPLKLIB_DIR}") + FIND_LIBRARY(OPLKLIB NAME ${OPLKLIB_NAME} + HINTS ${OPLKLIB_DIR} ${OPLKLIB_DIR}/${CFG_DEMO_BOARD_NAME}/${CFG_DEMO_NAME}) + + IF(CMAKE_SYSTEM_NAME STREQUAL "Windows") + + UNSET(OPLKDLL CACHE) + FIND_PROGRAM(OPLKDLL NAME ${OPLKLIB_NAME}.dll + HINTS ${OPLKLIB_DIR}) + + ENDIF(CMAKE_SYSTEM_NAME STREQUAL "Windows") + ENDIF() + + IF((CMAKE_GENERATOR MATCHES "Visual Studio") OR (CMAKE_BUILD_TYPE STREQUAL "Debug")) + # Search for debug library + UNSET(OPLKLIB_DEBUG CACHE) + MESSAGE(STATUS "Searching for LIBRARY ${OPLKLIB_DEBUG_NAME} in ${OPLKLIB_DIR}") + FIND_LIBRARY(OPLKLIB_DEBUG NAME ${OPLKLIB_DEBUG_NAME} + HINTS ${OPLKLIB_DIR} ${OPLKLIB_DIR}/${CFG_DEMO_BOARD_NAME}/${CFG_DEMO_NAME}) + + IF(CMAKE_SYSTEM_NAME STREQUAL "Windows") + + UNSET(OPLKDLL_DEBUG CACHE) + FIND_PROGRAM(OPLKDLL_DEBUG NAME ${OPLKLIB_DEBUG_NAME}.dll + HINTS ${OPLKLIB_DIR}) + + ENDIF(CMAKE_SYSTEM_NAME STREQUAL "Windows") + ENDIF() + ENDIF(CFG_OPLK_LIB) ENDMACRO(FIND_OPLK_LIBRARY) diff --git a/apps/common/cmake/linkoplklib.cmake b/apps/common/cmake/linkoplklib.cmake index 49aab66..d9fd418 100644 --- a/apps/common/cmake/linkoplklib.cmake +++ b/apps/common/cmake/linkoplklib.cmake @@ -33,7 +33,7 @@ MACRO(OPLK_LINK_LIBRARIES EXECUTABLE_NAME) TARGET_LINK_LIBRARIES(${EXECUTABLE_NAME} optimized ${OPLKLIB} debug ${OPLKLIB_DEBUG}) ELSE() IF(${CMAKE_BUILD_TYPE} STREQUAL "Debug") - TARGET_LINK_LIBRARIES(${EXECUTABLE_NAME} debug ${OPLKLIB_DEBUG}) + TARGET_LINK_LIBRARIES(${EXECUTABLE_NAME} debug ${OPLKLIB}) ELSE () TARGET_LINK_LIBRARIES(${EXECUTABLE_NAME} optimized ${OPLKLIB}) ENDIF() diff --git a/drivers/linux/drv_daemon_pcap/CMakeLists.txt b/drivers/linux/drv_daemon_pcap/CMakeLists.txt index 2702abd..81bb598 100644 --- a/drivers/linux/drv_daemon_pcap/CMakeLists.txt +++ b/drivers/linux/drv_daemon_pcap/CMakeLists.txt @@ -104,9 +104,15 @@ ENDIF() SET(OPLKLIB_DIR ${OPLK_BASE_DIR}/stack/lib/${SYSTEM_NAME_DIR}/${SYSTEM_PROCESSOR_DIR}) SET(OPLKLIB_INCDIR ${OPLK_BASE_DIR}/stack/proj/${SYSTEM_NAME_DIR}/lib${LIB_NAME}) -UNSET(OPLKLIB CACHE) -FIND_LIBRARY(OPLKLIB NAME ${LIB_NAME}${BUILD_TYPE_EXT} - HINTS ${OPLKLIB_DIR}) +# Don't look for oplk libraries for a top level build +IF(CFG_OPLK_LIB) + SET(OPLKLIB ${LIB_NAME}${BUILD_TYPE_EXT}) +ELSE(CFG_OPLK_LIB) + UNSET(OPLKLIB CACHE) + FIND_LIBRARY(OPLKLIB NAME ${LIB_NAME}${BUILD_TYPE_EXT} + HINTS ${OPLKLIB_DIR}) +ENDIF(CFG_OPLK_LIB) + INCLUDE_DIRECTORIES(${OPLKLIB_INCDIR}) SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -pedantic -std=c99 -pthread -fno-strict-aliasing") -- 2.5.5
shibajee/buildroot
package/openpowerlink/0003-Add-top-level-CMakeLists.txt.patch
patch
mit
7,780
comment "openpowerlink needs a toolchain w/ C++, threads" depends on BR2_i386 || BR2_x86_64 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS config BR2_PACKAGE_OPENPOWERLINK bool "openpowerlink" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_i386 || BR2_x86_64 help openPOWERLINK is an Open Source Industrial Ethernet stack implementing the POWERLINK protocol for Managing Node (MN, POWERLINK Master) and Controlled Node (CN, POWERLINK Slave). It is provided by SYSTEC electronic (http://www.systec-electronic.com), B&R (http://www.br-automation.com) and Kalycito (http://www.kalycito.com). http://openpowerlink.sourceforge.net/web/ if BR2_PACKAGE_OPENPOWERLINK choice prompt "MN/CN mode" config BR2_PACKAGE_OPENPOWERLINK_MN bool "Managing Node" help Enable Managing Node (master) mode config BR2_PACKAGE_OPENPOWERLINK_CN bool "Controlled Node" help Enable Controlled Node (slave) mode endchoice choice prompt "stack type" config BR2_PACKAGE_OPENPOWERLINK_STACK_MONOLITHIC_USER_STACK_LIB bool "linked into application" select BR2_PACKAGE_LIBPCAP help Compile a monolithic openPOWERLINK library. The library contains an Ethernet driver which is using the PCAP library for accessing the network. No kernel-side driver is needed. config BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB bool "user-space pcap daemon" select BR2_PACKAGE_LIBPCAP select BR2_PACKAGE_OPENPOWERLINK_PCAP_DAEMON help Compile openPOWERLINK application library which contains the interface to a Linux user space driver, and the Linux user space driver. It is used for implementing a multi-process solution where the openPOWERLINK layer is running as a separate Linux user space daemon (i.e. a PCAP based user space daemon). No kernel-side stack is needed. config BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB bool "kernel-space driver" depends on BR2_LINUX_KERNEL help Compile openPOWERLINK application library which contains the interface to a Linux kernel space driver. This will also build and install a Linux kernel module openPOWERLINK driver. config BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_PCIE_STACK_LIB bool "kernel-space PCIe driver" depends on BR2_LINUX_KERNEL depends on BR2_PACKAGE_OPENPOWERLINK_MN # MN support only help Compile openPOWERLINK application library which contains the interface to a Linux kernel PCIe interface driver. The kernel part of the openPOWERLINK stack is located on an external PCIe device. The status/control and data exchange between the application and kernel stack is handled by the PCIe interface driver. comment "openpowerlink kernel stack needs a Linux kernel to be built" depends on !BR2_LINUX_KERNEL endchoice if BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB choice prompt "select Ethernet Powerlink Driver" config BR2_PACKAGE_OPENPOWERLINK_KERNEL_DRIVER_82573 bool "Intel 82573" config BR2_PACKAGE_OPENPOWERLINK_KERNEL_DRIVER_8255x bool "Intel 8255x" config BR2_PACKAGE_OPENPOWERLINK_KERNEL_DRIVER_I210 bool "Intel I210" config BR2_PACKAGE_OPENPOWERLINK_KERNEL_DRIVER_RTL8111 bool "Realtek RTL-8111/8168" config BR2_PACKAGE_OPENPOWERLINK_KERNEL_DRIVER_RTL8139 bool "Realtek RTL-8139" endchoice endif # BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB config BR2_PACKAGE_OPENPOWERLINK_KERNEL_PCIE_DRIVER depends on BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_PCIE_STACK_LIB bool "PCIe Powerlink Driver" menu "demos" config BR2_PACKAGE_OPENPOWERLINK_DEMO_MN_CONSOLE bool "console MN demo" depends on BR2_PACKAGE_OPENPOWERLINK_MN config BR2_PACKAGE_OPENPOWERLINK_DEMO_CN_CONSOLE bool "console CN demo" depends on BR2_PACKAGE_OPENPOWERLINK_CN endmenu endif # BR2_PACKAGE_OPENPOWERLINK
shibajee/buildroot
package/openpowerlink/Config.in
in
mit
3,814
# From http://sourceforge.net/projects/openpowerlink/files/openPOWERLINK/V2.4.1/ md5 13389a419f3727b9c5f07b1b412eff30 openPOWERLINK_V2.4.1.tar.gz sha1 eb3883f1771d665d1f948fc35e57bb97dd5c7ca5 openPOWERLINK_V2.4.1.tar.gz # sha256 locally computed sha256 f627fb8efcb5d9b1b9d8e7701ad611d44d05ad046b1b62ea0f71bd8244d5bf49 openPOWERLINK_V2.4.1.tar.gz
shibajee/buildroot
package/openpowerlink/openpowerlink.hash
hash
mit
346
################################################################################ # # openpowerlink # ################################################################################ OPENPOWERLINK_VERSION = V2.4.1 OPENPOWERLINK_SITE = http://downloads.sourceforge.net/project/openpowerlink/openPOWERLINK/$(OPENPOWERLINK_VERSION) OPENPOWERLINK_SOURCE = openPOWERLINK_$(OPENPOWERLINK_VERSION).tar.gz OPENPOWERLINK_LICENSE = BSD-2c, GPLv2 OPENPOWERLINK_LICENSE_FILES = license.md OPENPOWERLINK_INSTALL_STAGING = YES # The archive has no leading component. OPENPOWERLINK_STRIP_COMPONENTS = 0 OPENPOWERLINK_MN_ONOFF = $(if $(BR2_PACKAGE_OPENPOWERLINK_MN),ON,OFF) OPENPOWERLINK_CN_ONOFF = $(if $(BR2_PACKAGE_OPENPOWERLINK_CN),ON,OFF) #### OPLK LIBRARY #### # Always build a oplk stack OPENPOWERLINK_CONF_OPTS += -DCFG_OPLK_LIB=ON # All option are ON by default ifeq ($(BR2_PACKAGE_OPENPOWERLINK_STACK_MONOLITHIC_USER_STACK_LIB),y) OPENPOWERLINK_DEPENDENCIES += libpcap OPENPOWERLINK_CONF_OPTS += \ -DCFG_COMPILE_LIB_MN=$(OPENPOWERLINK_MN_ONOFF) \ -DCFG_COMPILE_LIB_MNAPP_USERINTF=OFF \ -DCFG_COMPILE_LIB_MNAPP_KERNELINTF=OFF \ -DCFG_COMPILE_LIB_MNAPP_PCIEINTF=OFF \ -DCFG_COMPILE_LIB_MNDRV_PCAP=OFF \ -DCFG_COMPILE_LIB_CN=$(OPENPOWERLINK_CN_ONOFF) \ -DCFG_COMPILE_LIB_CNAPP_USERINTF=OFF \ -DCFG_COMPILE_LIB_CNAPP_KERNELINTF=OFF \ -DCFG_COMPILE_LIB_CNDRV_PCAP=OFF else ifeq ($(BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB),y) OPENPOWERLINK_DEPENDENCIES += libpcap OPENPOWERLINK_CONF_OPTS += \ -DCFG_COMPILE_LIB_MN=OFF \ -DCFG_COMPILE_LIB_MNAPP_USERINTF=$(OPENPOWERLINK_MN_ONOFF) \ -DCFG_COMPILE_LIB_MNAPP_KERNELINTF=OFF \ -DCFG_COMPILE_LIB_MNAPP_PCIEINTF=OFF \ -DCFG_COMPILE_LIB_MNDRV_PCAP=$(OPENPOWERLINK_MN_ONOFF) \ -DCFG_COMPILE_LIB_CN=OFF \ -DCFG_COMPILE_LIB_CNAPP_USERINTF=$(OPENPOWERLINK_CN_ONOFF) \ -DCFG_COMPILE_LIB_CNAPP_KERNELINTF=OFF \ -DCFG_COMPILE_LIB_CNDRV_PCAP=$(OPENPOWERLINK_CN_ONOFF) else ifeq ($(BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB),y) OPENPOWERLINK_CONF_OPTS += \ -DCFG_COMPILE_LIB_MN=OFF \ -DCFG_COMPILE_LIB_MNAPP_USERINTF=OFF \ -DCFG_COMPILE_LIB_MNAPP_KERNELINTF=$(OPENPOWERLINK_MN_ONOFF) \ -DCFG_COMPILE_LIB_MNAPP_PCIEINTF=OFF \ -DCFG_COMPILE_LIB_MNDRV_PCAP=OFF \ -DCFG_COMPILE_LIB_CN=OFF \ -DCFG_COMPILE_LIB_CNAPP_USERINTF=OFF \ -DCFG_COMPILE_LIB_CNAPP_KERNELINTF=$(OPENPOWERLINK_CN_ONOFF) \ -DCFG_COMPILE_LIB_CNDRV_PCAP=OFF else ifeq ($(BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_PCIE_STACK_LIB),y) OPENPOWERLINK_CONF_OPTS += \ -DCFG_COMPILE_LIB_MN=OFF \ -DCFG_COMPILE_LIB_MNAPP_USERINTF=OFF \ -DCFG_COMPILE_LIB_MNAPP_KERNELINTF=OFF \ -DCFG_COMPILE_LIB_MNAPP_PCIEINTF=$(OPENPOWERLINK_MN_ONOFF) \ -DCFG_COMPILE_LIB_MNDRV_PCAP=OFF \ -DCFG_COMPILE_LIB_CN=OFF \ -DCFG_COMPILE_LIB_CNAPP_USERINTF=OFF \ -DCFG_COMPILE_LIB_CNAPP_KERNELINTF=OFF \ -DCFG_COMPILE_LIB_CNDRV_PCAP=OFF endif OPENPOWERLINK_CONF_OPTS += \ -DCFG_COMPILE_SHARED_LIBRARY=$(if $(BR2_STATIC_LIBS),OFF,ON) #### OPLK KERNEL DRIVERS #### ifeq ($(BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB)$(BR2_PACKAGE_OPENPOWERLINK_KERNEL_PCIE_DRIVER),y) OPENPOWERLINK_DEPENDENCIES += linux OPENPOWERLINK_CONF_OPTS += \ -DCFG_KERNEL_DIR="$(LINUX_DIR)" \ -DCMAKE_SYSTEM_VERSION="$(LINUX_VERSION)" \ -DCFG_OPLK_MN="$(OPENPOWERLINK_MN_ONOFF)" \ -DMAKE_KERNEL_ARCH="$(KERNEL_ARCH)" \ -DMAKE_KERNEL_CROSS_COMPILE="$(CCACHE) $(TARGET_CROSS)" endif ifeq ($(BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB),y) OPENPOWERLINK_CONF_OPTS += -DCFG_KERNEL_DRIVERS=ON ifeq ($(BR2_PACKAGE_OPENPOWERLINK_KERNEL_DRIVER_82573),y) OPENPOWERLINK_CONF_OPTS += -DCFG_POWERLINK_EDRV=82573 else ifeq ($(BR2_PACKAGE_OPENPOWERLINK_KERNEL_DRIVER_8255x),y) OPENPOWERLINK_CONF_OPTS += -DCFG_POWERLINK_EDRV=8255x else ifeq ($(BR2_PACKAGE_OPENPOWERLINK_KERNEL_DRIVER_I210),y) OPENPOWERLINK_CONF_OPTS += -DCFG_POWERLINK_EDRV=i210 else ifeq ($(BR2_PACKAGE_OPENPOWERLINK_KERNEL_DRIVER_RTL8111),y) OPENPOWERLINK_CONF_OPTS += -DCFG_POWERLINK_EDRV=8111 else ifeq ($(BR2_PACKAGE_OPENPOWERLINK_KERNEL_DRIVER_RTL8139),y) OPENPOWERLINK_CONF_OPTS += -DCFG_POWERLINK_EDRV=8139 endif else OPENPOWERLINK_CONF_OPTS += -DCFG_KERNEL_DRIVERS=OFF endif ifeq ($(BR2_PACKAGE_OPENPOWERLINK_KERNEL_PCIE_DRIVER),y) OPENPOWERLINK_CONF_OPTS += -DCFG_KERNEL_PCIE_DRIVERS=ON else OPENPOWERLINK_CONF_OPTS += -DCFG_KERNEL_PCIE_DRIVERS=OFF endif #### OPLK PCAP DAEMON #### ifeq ($(BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB),y) OPENPOWERLINK_CONF_OPTS += \ -DCFG_PCAP_DAEMON=ON \ -DCFG_OPLK_MN=$(OPENPOWERLINK_MN_ONOFF) endif #### OPLK DEMO APPS #### # See apps/common/cmake/configure-linux.cmake for available options list. ifeq ($(BR2_PACKAGE_OPENPOWERLINK_STACK_MONOLITHIC_USER_STACK_LIB),y) OPENPOWERLINK_CONF_OPTS += \ -DCFG_BUILD_KERNEL_STACK="Link to Application" else ifeq ($(BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB),y) OPENPOWERLINK_CONF_OPTS += \ -DCFG_BUILD_KERNEL_STACK="Linux Userspace Daemon" else ifeq ($(BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB),y) OPENPOWERLINK_CONF_OPTS += \ -DCFG_BUILD_KERNEL_STACK="Linux Kernel Module" else ifeq ($(BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_PCIE_STACK_LIB),y) OPENPOWERLINK_CONF_OPTS += \ -DCFG_BUILD_KERNEL_STACK="Kernel stack on PCIe card" endif ifeq ($(BR2_PACKAGE_OPENPOWERLINK_DEMO_MN_CONSOLE),y) OPENPOWERLINK_CONF_OPTS += -DCFG_DEMO_MN_CONSOLE=ON \ -DCFG_DEMO_MN_CONSOLE_USE_SYNCTHREAD=ON else OPENPOWERLINK_CONF_OPTS += -DCFG_DEMO_MN_CONSOLE=OFF endif ifeq ($(BR2_PACKAGE_OPENPOWERLINK_DEMO_CN_CONSOLE),y) OPENPOWERLINK_CONF_OPTS += -DCFG_DEMO_CN_CONSOLE=ON else OPENPOWERLINK_CONF_OPTS += -DCFG_DEMO_CN_CONSOLE=OFF endif $(eval $(cmake-package))
shibajee/buildroot
package/openpowerlink/openpowerlink.mk
mk
mit
5,629
When PAM is enabled, openssh makes its own static versions of pthreads functions. But when built with a uclibc toolchain, pthreads.h gets indirectly included. The clashing exported and static definitions of the pthreads functions then cause a compile error. This patch fixes the problem by changing the static pthread function names with macros when the static functions are defined. Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> diff -urN openssh-6.1p1.orig/auth-pam.c openssh-6.1p1/auth-pam.c --- openssh-6.1p1.orig/auth-pam.c 2009-07-12 08:07:21.000000000 -0400 +++ openssh-6.1p1/auth-pam.c 2012-09-15 19:49:47.677288199 -0400 @@ -166,6 +166,7 @@ sigdie("PAM: authentication thread exited uncleanly"); } +#define pthread_exit pthread_exit_AVOID_UCLIBC_PTHREAD_CLASH /* ARGSUSED */ static void pthread_exit(void *value) @@ -173,6 +174,7 @@ _exit(0); } +#define pthread_create pthread_create_AVOID_UCLIBC_PTHREAD_CLASH /* ARGSUSED */ static int pthread_create(sp_pthread_t *thread, const void *attr, @@ -200,6 +202,7 @@ } } +#define pthread_cancel pthread_cancel_AVOID_UCLIBC_PTHREAD_CLASH static int pthread_cancel(sp_pthread_t thread) { @@ -207,6 +210,7 @@ return (kill(thread, SIGTERM)); } +#define pthread_join pthread_join_AVOID_UCLIBC_PTHREAD_CLASH /* ARGSUSED */ static int pthread_join(sp_pthread_t thread, void **value)
shibajee/buildroot
package/openssh/0001-fix-pam-uclibc-pthreads-clash.patch
patch
mit
1,383
Update patch from 2fea21799223d41605556858a95b55e69e9960ca to openssh version 6.8p1 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> diff -Nura openssh-6.8p1.orig/openbsd-compat/bsd-poll.c openssh-6.8p1/openbsd-compat/bsd-poll.c --- openssh-6.8p1.orig/openbsd-compat/bsd-poll.c 2015-03-18 07:11:46.184620677 -0300 +++ openssh-6.8p1/openbsd-compat/bsd-poll.c 2015-03-18 07:12:29.120094555 -0300 @@ -19,6 +19,7 @@ #include "includes.h" #if !defined(HAVE_POLL) +#include <sys/param.h> #include <sys/types.h> #include <sys/time.h> #ifdef HAVE_SYS_SELECT_H diff -Nura openssh-6.8p1.orig/sshd.c openssh-6.8p1/sshd.c --- openssh-6.8p1.orig/sshd.c 2015-03-18 07:11:46.187620780 -0300 +++ openssh-6.8p1/sshd.c 2015-03-18 07:13:11.889562735 -0300 @@ -44,6 +44,7 @@ #include "includes.h" +#include <sys/param.h> #include <sys/types.h> #include <sys/ioctl.h> #include <sys/socket.h> diff -Nura openssh-6.8p1.orig/ssh-keyscan.c openssh-6.8p1/ssh-keyscan.c --- openssh-6.8p1.orig/ssh-keyscan.c 2015-03-18 07:11:46.180620539 -0300 +++ openssh-6.8p1/ssh-keyscan.c 2015-03-18 07:13:32.092256248 -0300 @@ -9,6 +9,7 @@ #include "includes.h" +#include <sys/param.h> #include <sys/types.h> #include "openbsd-compat/sys-queue.h" #include <sys/resource.h> diff -Nura openssh-6.8p1.orig/ssh-pkcs11-helper.c openssh-6.8p1/ssh-pkcs11-helper.c --- openssh-6.8p1.orig/ssh-pkcs11-helper.c 2015-03-18 07:11:46.182620608 -0300 +++ openssh-6.8p1/ssh-pkcs11-helper.c 2015-03-18 07:13:43.620651993 -0300 @@ -17,6 +17,7 @@ #include "includes.h" +#include <sys/param.h> #include <sys/types.h> #ifdef HAVE_SYS_TIME_H # include <sys/time.h>
shibajee/buildroot
package/openssh/0002-fix-howmany-include.patch
patch
mit
1,646
config BR2_PACKAGE_OPENSSH bool "openssh" depends on BR2_USE_MMU # fork() select BR2_PACKAGE_OPENSSL select BR2_PACKAGE_ZLIB help A free version of the SSH protocol suite of network connectivity tools. The standard 'ssh', 'sshd', 'scp', and friends. http://www.openssh.com/
shibajee/buildroot
package/openssh/Config.in
in
mit
289
#!/bin/sh # # sshd Starts sshd. # # Make sure the ssh-keygen progam exists [ -f /usr/bin/ssh-keygen ] || exit 0 # Create any missing keys /usr/bin/ssh-keygen -A umask 077 start() { printf "Starting sshd: " /usr/sbin/sshd touch /var/lock/sshd echo "OK" } stop() { printf "Stopping sshd: " killall sshd rm -f /var/lock/sshd echo "OK" } restart() { stop start } case "$1" in start) start ;; stop) stop ;; restart|reload) restart ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 esac exit $?
shibajee/buildroot
package/openssh/S50sshd
none
mit
530
# Locally calculated after checking pgp signature # Also from http://www.openssh.com/txt/release-7.3 sha256 3ffb989a6dcaa69594c3b550d4855a5a2e1718ccdde7f5e36387b424220fbecc openssh-7.3p1.tar.gz
shibajee/buildroot
package/openssh/openssh.hash
hash
mit
195
################################################################################ # # openssh # ################################################################################ OPENSSH_VERSION = 7.3p1 OPENSSH_SITE = http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable OPENSSH_LICENSE = BSD-3c BSD-2c Public Domain OPENSSH_LICENSE_FILES = LICENCE OPENSSH_CONF_ENV = LD="$(TARGET_CC)" LDFLAGS="$(TARGET_CFLAGS)" OPENSSH_CONF_OPTS = \ --sysconfdir=/etc/ssh \ --disable-lastlog \ --disable-utmp \ --disable-utmpx \ --disable-wtmp \ --disable-wtmpx \ --disable-strip define OPENSSH_USERS sshd -1 sshd -1 * - - - SSH drop priv user endef ifeq ($(BR2_TOOLCHAIN_SUPPORTS_PIE),) OPENSSH_CONF_OPTS += --without-pie endif OPENSSH_DEPENDENCIES = zlib openssl ifeq ($(BR2_PACKAGE_LINUX_PAM),y) define OPENSSH_INSTALL_PAM_CONF $(INSTALL) -D -m 644 $(@D)/contrib/sshd.pam.generic $(TARGET_DIR)/etc/pam.d/sshd $(SED) '\%password required /lib/security/pam_cracklib.so%d' $(TARGET_DIR)/etc/pam.d/sshd $(SED) 's/\#UsePAM no/UsePAM yes/' $(TARGET_DIR)/etc/ssh/sshd_config endef OPENSSH_DEPENDENCIES += linux-pam OPENSSH_CONF_OPTS += --with-pam OPENSSH_POST_INSTALL_TARGET_HOOKS += OPENSSH_INSTALL_PAM_CONF else OPENSSH_CONF_OPTS += --without-pam endif ifeq ($(BR2_PACKAGE_LIBSELINUX),y) OPENSSH_DEPENDENCIES += libselinux OPENSSH_CONF_OPTS += --with-selinux else OPENSSH_CONF_OPTS += --without-selinux endif define OPENSSH_INSTALL_INIT_SYSTEMD $(INSTALL) -D -m 644 package/openssh/sshd.service \ $(TARGET_DIR)/usr/lib/systemd/system/sshd.service mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants ln -fs ../../../../usr/lib/systemd/system/sshd.service \ $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/sshd.service endef define OPENSSH_INSTALL_INIT_SYSV $(INSTALL) -D -m 755 package/openssh/S50sshd \ $(TARGET_DIR)/etc/init.d/S50sshd endef $(eval $(autotools-package))
shibajee/buildroot
package/openssh/openssh.mk
mk
mit
1,910
[Unit] Description=OpenSSH server daemon After=syslog.target network.target auditd.service [Service] ExecStartPre=/usr/bin/ssh-keygen -A ExecStart=/usr/sbin/sshd -D -e ExecReload=/bin/kill -HUP $MAINPID [Install] WantedBy=multi-user.target
shibajee/buildroot
package/openssh/sshd.service
service
mit
242
From 389efb564fa1453a9da835393eec9006bfae2a52 Mon Sep 17 00:00:00 2001 From: Mike Frysinger <vapier@gentoo.org> Date: Sat, 16 May 2015 18:53:51 +0200 Subject: Dont waste time building manpages if we're not going to use em. Signed-off-by: Ryan Barnett <ryanbarnett3@gmail.com> [Gustavo: update for parallel-build] --- Makefile.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.org b/Makefile.org index 60f07cc..976ceaf 100644 --- a/Makefile.org +++ b/Makefile.org @@ -527,7 +527,7 @@ dist: dist_pem_h: (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean) -install: install_docs install_sw +install: install_sw install_sw: @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \ -- 1.9.1
shibajee/buildroot
package/openssl/0001-Dont-waste-time-building-manpages-if-we-re-not-going.patch
patch
mit
752
From 90fd7e8f1a316cda86ee442b43fcd7d5e5baeede Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias <gustavo@zacarias.com.ar> Date: Sat, 16 May 2015 18:55:08 +0200 Subject: cryptodev: Fix issue with signature generation Forward port of 0001-cryptodev-Fix-issue-with-signature-generation.patch from http://rt.openssl.org/Ticket/Display.html?id=2770&user=guest&pass=guest It was originally targetted at 1.0.2-beta3. Without this patch digest acceleration via cryptodev is broken. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Ryan Barnett <ryanbarnett3@gmail.com> --- crypto/engine/eng_cryptodev.c | 195 +++++++++++++++++++++++++++++++----------- 1 file changed, 146 insertions(+), 49 deletions(-) diff --git a/crypto/engine/eng_cryptodev.c b/crypto/engine/eng_cryptodev.c index 926d95c..7021d9a 100644 --- a/crypto/engine/eng_cryptodev.c +++ b/crypto/engine/eng_cryptodev.c @@ -2,6 +2,7 @@ * Copyright (c) 2002 Bob Beck <beck@openbsd.org> * Copyright (c) 2002 Theo de Raadt * Copyright (c) 2002 Markus Friedl + * Copyright (c) 2012 Nikos Mavrogiannopoulos * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -72,7 +73,6 @@ struct dev_crypto_state { struct session_op d_sess; int d_fd; # ifdef USE_CRYPTODEV_DIGESTS - char dummy_mac_key[HASH_MAX_LEN]; unsigned char digest_res[HASH_MAX_LEN]; char *mac_data; int mac_len; @@ -189,8 +189,10 @@ static struct { static struct { int id; int nid; - int keylen; + int digestlen; } digests[] = { +#if 0 + /* HMAC is not supported */ { CRYPTO_MD5_HMAC, NID_hmacWithMD5, 16 }, @@ -198,15 +200,15 @@ static struct { CRYPTO_SHA1_HMAC, NID_hmacWithSHA1, 20 }, { - CRYPTO_RIPEMD160_HMAC, NID_ripemd160, 16 - /* ? */ + CRYPTO_SHA2_256_HMAC, NID_hmacWithSHA256, 32 }, { - CRYPTO_MD5_KPDK, NID_undef, 0 + CRYPTO_SHA2_384_HMAC, NID_hmacWithSHA384, 48 }, { - CRYPTO_SHA1_KPDK, NID_undef, 0 + CRYPTO_SHA2_512_HMAC, NID_hmacWithSHA512, 64 }, +#endif { CRYPTO_MD5, NID_md5, 16 }, @@ -214,6 +216,15 @@ static struct { CRYPTO_SHA1, NID_sha1, 20 }, { + CRYPTO_SHA2_256, NID_sha256, 32 + }, + { + CRYPTO_SHA2_384, NID_sha384, 48 + }, + { + CRYPTO_SHA2_512, NID_sha512, 64 + }, + { 0, NID_undef, 0 }, }; @@ -288,13 +299,14 @@ static int get_cryptodev_ciphers(const int **cnids) static int nids[CRYPTO_ALGORITHM_MAX]; struct session_op sess; int fd, i, count = 0; + unsigned char fake_key[CRYPTO_CIPHER_MAX_KEY_LEN]; if ((fd = get_dev_crypto()) < 0) { *cnids = NULL; return (0); } memset(&sess, 0, sizeof(sess)); - sess.key = (caddr_t) "123456789abcdefghijklmno"; + sess.key = (void*)fake_key; for (i = 0; ciphers[i].id && count < CRYPTO_ALGORITHM_MAX; i++) { if (ciphers[i].nid == NID_undef) @@ -327,18 +339,19 @@ static int get_cryptodev_digests(const int **cnids) static int nids[CRYPTO_ALGORITHM_MAX]; struct session_op sess; int fd, i, count = 0; + unsigned char fake_key[CRYPTO_CIPHER_MAX_KEY_LEN]; if ((fd = get_dev_crypto()) < 0) { *cnids = NULL; return (0); } memset(&sess, 0, sizeof(sess)); - sess.mackey = (caddr_t) "123456789abcdefghijklmno"; + sess.mackey = fake_key; for (i = 0; digests[i].id && count < CRYPTO_ALGORITHM_MAX; i++) { if (digests[i].nid == NID_undef) continue; sess.mac = digests[i].id; - sess.mackeylen = digests[i].keylen; + sess.mackeylen = 8; sess.cipher = 0; if (ioctl(fd, CIOCGSESSION, &sess) != -1 && ioctl(fd, CIOCFSESSION, &sess.ses) != -1) @@ -424,14 +437,14 @@ cryptodev_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, cryp.ses = sess->ses; cryp.flags = 0; cryp.len = inl; - cryp.src = (caddr_t) in; - cryp.dst = (caddr_t) out; + cryp.src = (void*) in; + cryp.dst = (void*) out; cryp.mac = 0; cryp.op = ctx->encrypt ? COP_ENCRYPT : COP_DECRYPT; if (ctx->cipher->iv_len) { - cryp.iv = (caddr_t) ctx->iv; + cryp.iv = (void*) ctx->iv; if (!ctx->encrypt) { iiv = in + inl - ctx->cipher->iv_len; memcpy(save_iv, iiv, ctx->cipher->iv_len); @@ -483,7 +496,7 @@ cryptodev_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, if ((state->d_fd = get_dev_crypto()) < 0) return (0); - sess->key = (caddr_t) key; + sess->key = (void*)key; sess->keylen = ctx->key_len; sess->cipher = cipher; @@ -749,16 +762,6 @@ static int digest_nid_to_cryptodev(int nid) return (0); } -static int digest_key_length(int nid) -{ - int i; - - for (i = 0; digests[i].id; i++) - if (digests[i].nid == nid) - return digests[i].keylen; - return (0); -} - static int cryptodev_digest_init(EVP_MD_CTX *ctx) { struct dev_crypto_state *state = ctx->md_data; @@ -769,7 +772,6 @@ static int cryptodev_digest_init(EVP_MD_CTX *ctx) printf("cryptodev_digest_init: Can't get digest \n"); return (0); } - memset(state, 0, sizeof(struct dev_crypto_state)); if ((state->d_fd = get_dev_crypto()) < 0) { @@ -777,8 +779,8 @@ static int cryptodev_digest_init(EVP_MD_CTX *ctx) return (0); } - sess->mackey = state->dummy_mac_key; - sess->mackeylen = digest_key_length(ctx->digest->type); + sess->mackey = NULL; + sess->mackeylen = 0; sess->mac = digest; if (ioctl(state->d_fd, CIOCGSESSION, sess) < 0) { @@ -794,8 +796,8 @@ static int cryptodev_digest_init(EVP_MD_CTX *ctx) static int cryptodev_digest_update(EVP_MD_CTX *ctx, const void *data, size_t count) { - struct crypt_op cryp; struct dev_crypto_state *state = ctx->md_data; + struct crypt_op cryp; struct session_op *sess = &state->d_sess; if (!data || state->d_fd < 0) { @@ -804,7 +806,7 @@ static int cryptodev_digest_update(EVP_MD_CTX *ctx, const void *data, } if (!count) { - return (0); + return (1); } if (!(ctx->flags & EVP_MD_CTX_FLAG_ONESHOT)) { @@ -828,9 +830,9 @@ static int cryptodev_digest_update(EVP_MD_CTX *ctx, const void *data, cryp.ses = sess->ses; cryp.flags = 0; cryp.len = count; - cryp.src = (caddr_t) data; + cryp.src = (void*) data; cryp.dst = NULL; - cryp.mac = (caddr_t) state->digest_res; + cryp.mac = (void*) state->digest_res; if (ioctl(state->d_fd, CIOCCRYPT, &cryp) < 0) { printf("cryptodev_digest_update: digest failed\n"); return (0); @@ -844,8 +846,6 @@ static int cryptodev_digest_final(EVP_MD_CTX *ctx, unsigned char *md) struct dev_crypto_state *state = ctx->md_data; struct session_op *sess = &state->d_sess; - int ret = 1; - if (!md || state->d_fd < 0) { printf("cryptodev_digest_final: illegal input\n"); return (0); @@ -859,7 +859,7 @@ static int cryptodev_digest_final(EVP_MD_CTX *ctx, unsigned char *md) cryp.len = state->mac_len; cryp.src = state->mac_data; cryp.dst = NULL; - cryp.mac = (caddr_t) md; + cryp.mac = (void*)md; if (ioctl(state->d_fd, CIOCCRYPT, &cryp) < 0) { printf("cryptodev_digest_final: digest failed\n"); return (0); @@ -870,7 +870,7 @@ static int cryptodev_digest_final(EVP_MD_CTX *ctx, unsigned char *md) memcpy(md, state->digest_res, ctx->digest->md_size); - return (ret); + return 1; } static int cryptodev_digest_cleanup(EVP_MD_CTX *ctx) @@ -921,8 +921,8 @@ static int cryptodev_digest_copy(EVP_MD_CTX *to, const EVP_MD_CTX *from) digest = digest_nid_to_cryptodev(to->digest->type); - sess->mackey = dstate->dummy_mac_key; - sess->mackeylen = digest_key_length(to->digest->type); + sess->mackey = NULL; + sess->mackeylen = 0; sess->mac = digest; dstate->d_fd = get_dev_crypto(); @@ -947,32 +947,116 @@ static int cryptodev_digest_copy(EVP_MD_CTX *to, const EVP_MD_CTX *from) const EVP_MD cryptodev_sha1 = { NID_sha1, - NID_undef, + NID_sha1WithRSAEncryption, SHA_DIGEST_LENGTH, +#if defined(EVP_MD_FLAG_PKEY_METHOD_SIGNATURE) && defined(EVP_MD_FLAG_DIGALGID_ABSENT) + EVP_MD_FLAG_PKEY_METHOD_SIGNATURE| + EVP_MD_FLAG_DIGALGID_ABSENT| +#endif EVP_MD_FLAG_ONESHOT, cryptodev_digest_init, cryptodev_digest_update, cryptodev_digest_final, cryptodev_digest_copy, cryptodev_digest_cleanup, - EVP_PKEY_NULL_method, + EVP_PKEY_RSA_method, SHA_CBLOCK, - sizeof(struct dev_crypto_state), + sizeof(EVP_MD *)+sizeof(struct dev_crypto_state), }; -const EVP_MD cryptodev_md5 = { +static const EVP_MD cryptodev_sha256 = { + NID_sha256, + NID_sha256WithRSAEncryption, + SHA256_DIGEST_LENGTH, +#if defined(EVP_MD_FLAG_PKEY_METHOD_SIGNATURE) && defined(EVP_MD_FLAG_DIGALGID_ABSENT) + EVP_MD_FLAG_PKEY_METHOD_SIGNATURE| + EVP_MD_FLAG_DIGALGID_ABSENT| +#endif + EVP_MD_FLAG_ONESHOT, + cryptodev_digest_init, + cryptodev_digest_update, + cryptodev_digest_final, + cryptodev_digest_copy, + cryptodev_digest_cleanup, + EVP_PKEY_RSA_method, + SHA256_CBLOCK, + sizeof(EVP_MD *)+sizeof(struct dev_crypto_state), +}; + +static const EVP_MD cryptodev_sha224 = { + NID_sha224, + NID_sha224WithRSAEncryption, + SHA224_DIGEST_LENGTH, +#if defined(EVP_MD_FLAG_PKEY_METHOD_SIGNATURE) && defined(EVP_MD_FLAG_DIGALGID_ABSENT) + EVP_MD_FLAG_PKEY_METHOD_SIGNATURE| + EVP_MD_FLAG_DIGALGID_ABSENT| +#endif + EVP_MD_FLAG_ONESHOT, + cryptodev_digest_init, + cryptodev_digest_update, + cryptodev_digest_final, + cryptodev_digest_copy, + cryptodev_digest_cleanup, + EVP_PKEY_RSA_method, + SHA256_CBLOCK, + sizeof(EVP_MD *)+sizeof(struct dev_crypto_state), +}; + +static const EVP_MD cryptodev_sha384 = { + NID_sha384, + NID_sha384WithRSAEncryption, + SHA384_DIGEST_LENGTH, +#if defined(EVP_MD_FLAG_PKEY_METHOD_SIGNATURE) && defined(EVP_MD_FLAG_DIGALGID_ABSENT) + EVP_MD_FLAG_PKEY_METHOD_SIGNATURE| + EVP_MD_FLAG_DIGALGID_ABSENT| +#endif + EVP_MD_FLAG_ONESHOT, + cryptodev_digest_init, + cryptodev_digest_update, + cryptodev_digest_final, + cryptodev_digest_copy, + cryptodev_digest_cleanup, + EVP_PKEY_RSA_method, + SHA512_CBLOCK, + sizeof(EVP_MD *)+sizeof(struct dev_crypto_state), +}; + +static const EVP_MD cryptodev_sha512 = { + NID_sha512, + NID_sha512WithRSAEncryption, + SHA512_DIGEST_LENGTH, +#if defined(EVP_MD_FLAG_PKEY_METHOD_SIGNATURE) && defined(EVP_MD_FLAG_DIGALGID_ABSENT) + EVP_MD_FLAG_PKEY_METHOD_SIGNATURE| + EVP_MD_FLAG_DIGALGID_ABSENT| +#endif + EVP_MD_FLAG_ONESHOT, + cryptodev_digest_init, + cryptodev_digest_update, + cryptodev_digest_final, + cryptodev_digest_copy, + cryptodev_digest_cleanup, + EVP_PKEY_RSA_method, + SHA512_CBLOCK, + sizeof(EVP_MD *)+sizeof(struct dev_crypto_state), +}; + +static const EVP_MD cryptodev_md5 = { NID_md5, - NID_undef, + NID_md5WithRSAEncryption, 16 /* MD5_DIGEST_LENGTH */ , +#if defined(EVP_MD_FLAG_PKEY_METHOD_SIGNATURE) && defined(EVP_MD_FLAG_DIGALGID_ABSENT) + EVP_MD_FLAG_PKEY_METHOD_SIGNATURE| + EVP_MD_FLAG_DIGALGID_ABSENT| +#endif EVP_MD_FLAG_ONESHOT, cryptodev_digest_init, cryptodev_digest_update, cryptodev_digest_final, cryptodev_digest_copy, cryptodev_digest_cleanup, - EVP_PKEY_NULL_method, + EVP_PKEY_RSA_method, 64 /* MD5_CBLOCK */ , - sizeof(struct dev_crypto_state), + sizeof(EVP_MD *)+sizeof(struct dev_crypto_state), }; # endif /* USE_CRYPTODEV_DIGESTS */ @@ -992,6 +1076,18 @@ cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest, case NID_sha1: *digest = &cryptodev_sha1; break; + case NID_sha224: + *digest = &cryptodev_sha224; + break; + case NID_sha256: + *digest = &cryptodev_sha256; + break; + case NID_sha384: + *digest = &cryptodev_sha384; + break; + case NID_sha512: + *digest = &cryptodev_sha512; + break; default: # endif /* USE_CRYPTODEV_DIGESTS */ *digest = NULL; @@ -1022,7 +1118,7 @@ static int bn2crparam(const BIGNUM *a, struct crparam *crp) return (1); memset(b, 0, bytes); - crp->crp_p = (caddr_t) b; + crp->crp_p = (void*) b; crp->crp_nbits = bits; for (i = 0, j = 0; i < a->top; i++) { @@ -1277,7 +1373,7 @@ static DSA_SIG *cryptodev_dsa_do_sign(const unsigned char *dgst, int dlen, kop.crk_op = CRK_DSA_SIGN; /* inputs: dgst dsa->p dsa->q dsa->g dsa->priv_key */ - kop.crk_param[0].crp_p = (caddr_t) dgst; + kop.crk_param[0].crp_p = (void*)dgst; kop.crk_param[0].crp_nbits = dlen * 8; if (bn2crparam(dsa->p, &kop.crk_param[1])) goto err; @@ -1317,7 +1413,7 @@ cryptodev_dsa_verify(const unsigned char *dgst, int dlen, kop.crk_op = CRK_DSA_VERIFY; /* inputs: dgst dsa->p dsa->q dsa->g dsa->pub_key sig->r sig->s */ - kop.crk_param[0].crp_p = (caddr_t) dgst; + kop.crk_param[0].crp_p = (void*)dgst; kop.crk_param[0].crp_nbits = dlen * 8; if (bn2crparam(dsa->p, &kop.crk_param[1])) goto err; @@ -1398,9 +1494,10 @@ cryptodev_dh_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh) goto err; kop.crk_iparams = 3; - kop.crk_param[3].crp_p = (caddr_t) key; - kop.crk_param[3].crp_nbits = keylen * 8; + kop.crk_param[3].crp_p = (void*) key; + kop.crk_param[3].crp_nbits = keylen; kop.crk_oparams = 1; + dhret = keylen / 8; if (ioctl(fd, CIOCKEY, &kop) == -1) { const DH_METHOD *meth = DH_OpenSSL(); @@ -1470,7 +1567,7 @@ void ENGINE_load_cryptodev(void) put_dev_crypto(fd); if (!ENGINE_set_id(engine, "cryptodev") || - !ENGINE_set_name(engine, "BSD cryptodev engine") || + !ENGINE_set_name(engine, "cryptodev engine") || !ENGINE_set_ciphers(engine, cryptodev_engine_ciphers) || !ENGINE_set_digests(engine, cryptodev_engine_digests) || !ENGINE_set_ctrl_function(engine, cryptodev_ctrl) || -- 1.9.1
shibajee/buildroot
package/openssl/0002-cryptodev-Fix-issue-with-signature-generation.patch
patch
mit
14,366
config BR2_PACKAGE_OPENSSL bool "openssl" select BR2_PACKAGE_ZLIB help A collaborative effort to develop a robust, commercial-grade, fully featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Security (TLS v1) as well as a full-strength general-purpose cryptography library. http://www.openssl.org/ Note: Some helper scripts need perl. if BR2_PACKAGE_OPENSSL config BR2_PACKAGE_OPENSSL_BIN bool "openssl binary" help Install the openssl binary and the associated helper scripts to the target file system. This is a command line tool for doing various cryptographic stuff. config BR2_PACKAGE_OPENSSL_ENGINES bool "openssl additional engines" help Install additional encryption engine libraries. endif
shibajee/buildroot
package/openssl/Config.in
in
mit
788
# From https://www.openssl.org/source/openssl-1.0.2h.tar.gz.sha256 sha256 1d4007e53aad94a5b2002fe045ee7bb0b3d98f1a47f8b2bc851dcd1c74332919 openssl-1.0.2h.tar.gz # Locally computed sha256 eddd8a5123748052c598214487ac178e4bfa4e31ba2ec520c70d59c8c5bfa2e9 openssl-1.0.2a-parallel-install-dirs.patch?id=c8abcbe8de5d3b6cdd68c162f398c011ff6e2d9d sha256 147c3eeaad614c044749ea527cb433eae5e2d5cad34a78c6ba61cd967bfbe01f openssl-1.0.2a-parallel-obj-headers.patch?id=c8abcbe8de5d3b6cdd68c162f398c011ff6e2d9d sha256 30cb49489de5041841a74da9155cd4fabfbce33237262ba7cd23974314ae2956 openssl-1.0.2a-parallel-symlinking.patch?id=c8abcbe8de5d3b6cdd68c162f398c011ff6e2d9d sha256 deaf6f3af41874ecc6d63841ea14b8e6c71cea81d4a511a754bc90c9a993147f openssl-1.0.2d-parallel-build.patch?id=c8abcbe8de5d3b6cdd68c162f398c011ff6e2d9d
shibajee/buildroot
package/openssl/openssl.hash
hash
mit
806
################################################################################ # # openssl # ################################################################################ OPENSSL_VERSION = 1.0.2h OPENSSL_SITE = http://www.openssl.org/source OPENSSL_LICENSE = OpenSSL or SSLeay OPENSSL_LICENSE_FILES = LICENSE OPENSSL_INSTALL_STAGING = YES OPENSSL_DEPENDENCIES = zlib HOST_OPENSSL_DEPENDENCIES = host-zlib OPENSSL_TARGET_ARCH = generic32 OPENSSL_CFLAGS = $(TARGET_CFLAGS) OPENSSL_PATCH = \ https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-libs/openssl/files/openssl-1.0.2d-parallel-build.patch?id=c8abcbe8de5d3b6cdd68c162f398c011ff6e2d9d \ https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-libs/openssl/files/openssl-1.0.2a-parallel-obj-headers.patch?id=c8abcbe8de5d3b6cdd68c162f398c011ff6e2d9d \ https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-libs/openssl/files/openssl-1.0.2a-parallel-install-dirs.patch?id=c8abcbe8de5d3b6cdd68c162f398c011ff6e2d9d \ https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-libs/openssl/files/openssl-1.0.2a-parallel-symlinking.patch?id=c8abcbe8de5d3b6cdd68c162f398c011ff6e2d9d # relocation truncated to fit: R_68K_GOT16O ifeq ($(BR2_m68k_cf),y) OPENSSL_CFLAGS += -mxgot endif ifeq ($(BR2_USE_MMU),) OPENSSL_CFLAGS += -DHAVE_FORK=0 endif ifeq ($(BR2_PACKAGE_CRYPTODEV_LINUX),y) OPENSSL_CFLAGS += -DHAVE_CRYPTODEV -DUSE_CRYPTODEV_DIGESTS OPENSSL_DEPENDENCIES += cryptodev-linux endif ifeq ($(BR2_PACKAGE_OCF_LINUX),y) OPENSSL_CFLAGS += -DHAVE_CRYPTODEV -DUSE_CRYPTODEV_DIGESTS OPENSSL_DEPENDENCIES += ocf-linux endif # Some architectures are optimized in OpenSSL # Doesn't work for thumb-only (Cortex-M?) ifeq ($(BR2_ARM_CPU_HAS_ARM),y) OPENSSL_TARGET_ARCH = armv4 endif ifeq ($(ARCH),aarch64) OPENSSL_TARGET_ARCH = aarch64 endif ifeq ($(ARCH),powerpc) # 4xx cores seem to have trouble with openssl's ASM optimizations ifeq ($(BR2_powerpc_401)$(BR2_powerpc_403)$(BR2_powerpc_405)$(BR2_powerpc_405fp)$(BR2_powerpc_440)$(BR2_powerpc_440fp),) OPENSSL_TARGET_ARCH = ppc endif endif ifeq ($(ARCH),powerpc64) OPENSSL_TARGET_ARCH = ppc64 endif ifeq ($(ARCH),powerpc64le) OPENSSL_TARGET_ARCH = ppc64le endif ifeq ($(ARCH),x86_64) OPENSSL_TARGET_ARCH = x86_64 endif define HOST_OPENSSL_CONFIGURE_CMDS (cd $(@D); \ $(HOST_CONFIGURE_OPTS) \ ./config \ --prefix=$(HOST_DIR)/usr \ --openssldir=$(HOST_DIR)/etc/ssl \ --libdir=/lib \ shared \ zlib-dynamic \ ) $(SED) "s#-O[0-9]#$(HOST_CFLAGS)#" $(@D)/Makefile endef define OPENSSL_CONFIGURE_CMDS (cd $(@D); \ $(TARGET_CONFIGURE_ARGS) \ $(TARGET_CONFIGURE_OPTS) \ ./Configure \ linux-$(OPENSSL_TARGET_ARCH) \ --prefix=/usr \ --openssldir=/etc/ssl \ --libdir=/lib \ $(if $(BR2_TOOLCHAIN_HAS_THREADS),threads,no-threads) \ $(if $(BR2_STATIC_LIBS),no-shared,shared) \ no-rc5 \ enable-camellia \ enable-mdc2 \ enable-tlsext \ $(if $(BR2_STATIC_LIBS),zlib,zlib-dynamic) \ $(if $(BR2_STATIC_LIBS),no-dso) \ ) $(SED) "s#-march=[-a-z0-9] ##" -e "s#-mcpu=[-a-z0-9] ##g" $(@D)/Makefile $(SED) "s#-O[0-9]#$(OPENSSL_CFLAGS)#" $(@D)/Makefile $(SED) "s# build_tests##" $(@D)/Makefile endef # libdl is not available in a static build, and this is not implied by no-dso ifeq ($(BR2_STATIC_LIBS),y) define OPENSSL_FIXUP_STATIC_MAKEFILE $(SED) 's#-ldl##g' $(@D)/Makefile endef OPENSSL_POST_CONFIGURE_HOOKS += OPENSSL_FIXUP_STATIC_MAKEFILE endif define HOST_OPENSSL_BUILD_CMDS $(MAKE) -C $(@D) endef define OPENSSL_BUILD_CMDS $(MAKE) -C $(@D) endef define OPENSSL_INSTALL_STAGING_CMDS $(MAKE) -C $(@D) INSTALL_PREFIX=$(STAGING_DIR) install endef define HOST_OPENSSL_INSTALL_CMDS $(MAKE) -C $(@D) install endef define OPENSSL_INSTALL_TARGET_CMDS $(MAKE) -C $(@D) INSTALL_PREFIX=$(TARGET_DIR) install rm -rf $(TARGET_DIR)/usr/lib/ssl rm -f $(TARGET_DIR)/usr/bin/c_rehash endef # libdl has no business in a static build ifeq ($(BR2_STATIC_LIBS),y) define OPENSSL_FIXUP_STATIC_PKGCONFIG $(SED) 's#-ldl##' $(STAGING_DIR)/usr/lib/pkgconfig/libcrypto.pc $(SED) 's#-ldl##' $(STAGING_DIR)/usr/lib/pkgconfig/libssl.pc $(SED) 's#-ldl##' $(STAGING_DIR)/usr/lib/pkgconfig/openssl.pc endef OPENSSL_POST_INSTALL_STAGING_HOOKS += OPENSSL_FIXUP_STATIC_PKGCONFIG endif ifneq ($(BR2_STATIC_LIBS),y) # libraries gets installed read only, so strip fails define OPENSSL_INSTALL_FIXUPS_SHARED chmod +w $(TARGET_DIR)/usr/lib/engines/lib*.so for i in $(addprefix $(TARGET_DIR)/usr/lib/,libcrypto.so.* libssl.so.*); \ do chmod +w $$i; done endef OPENSSL_POST_INSTALL_TARGET_HOOKS += OPENSSL_INSTALL_FIXUPS_SHARED endif ifeq ($(BR2_PACKAGE_PERL),) define OPENSSL_REMOVE_PERL_SCRIPTS $(RM) -f $(TARGET_DIR)/etc/ssl/misc/{CA.pl,tsget} endef OPENSSL_POST_INSTALL_TARGET_HOOKS += OPENSSL_REMOVE_PERL_SCRIPTS endif ifeq ($(BR2_PACKAGE_OPENSSL_BIN),) define OPENSSL_REMOVE_BIN $(RM) -f $(TARGET_DIR)/usr/bin/openssl $(RM) -f $(TARGET_DIR)/etc/ssl/misc/{CA.*,c_*} endef OPENSSL_POST_INSTALL_TARGET_HOOKS += OPENSSL_REMOVE_BIN endif ifneq ($(BR2_PACKAGE_OPENSSL_ENGINES),y) define OPENSSL_REMOVE_OPENSSL_ENGINES rm -rf $(TARGET_DIR)/usr/lib/engines endef OPENSSL_POST_INSTALL_TARGET_HOOKS += OPENSSL_REMOVE_OPENSSL_ENGINES endif $(eval $(generic-package)) $(eval $(host-generic-package))
shibajee/buildroot
package/openssl/openssl.mk
mk
mit
5,217
config BR2_PACKAGE_OPENSWAN bool "openswan" depends on BR2_USE_MMU # iproute2 depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # iproute2 depends on !BR2_TOOLCHAIN_USES_MUSL # GLOB_BRACE select BR2_PACKAGE_GMP select BR2_PACKAGE_IPROUTE2 help Openswan is an implementation of IPsec for Linux http://www.openswan.org comment "openswan needs a uClibc or glibc toolchain toolchain w/ headers >= 3.0" depends on BR2_USE_MMU depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 || \ BR2_TOOLCHAIN_USES_MUSL
shibajee/buildroot
package/openswan/Config.in
in
mit
512
# Locally calculated sha256 c1605c96d3c3cf357cefea7622f3acbc7a02d6a3cebfb76979327b566084a5ea openswan-2.6.46.tar.gz
shibajee/buildroot
package/openswan/openswan.hash
hash
mit
116
################################################################################ # # openswan # ################################################################################ OPENSWAN_VERSION = 2.6.46 OPENSWAN_SITE = http://download.openswan.org/openswan OPENSWAN_LICENSE = GPLv2+, BSD-3c OPENSWAN_LICENSE_FILES = COPYING LICENSE OPENSWAN_DEPENDENCIES = host-bison host-flex gmp iproute2 OPENSWAN_MAKE_OPTS = ARCH=$(BR2_ARCH) CC="$(TARGET_CC)" \ USERCOMPILE="$(TARGET_CFLAGS) $(if $(BR2_TOOLCHAIN_SUPPORTS_PIE),-fPIE)" \ USERLINK="$(TARGET_LDFLAGS) $(if $(BR2_TOOLCHAIN_SUPPORTS_PIE),-fPIE)" \ INC_USRLOCAL=/usr USE_KLIPS=false USE_MAST=false USE_NM=false ifeq ($(BR2_PACKAGE_LIBCURL),y) OPENSWAN_DEPENDENCIES += libcurl OPENSWAN_MAKE_OPTS += USE_LIBCURL=true endif ifeq ($(BR2_PACKAGE_OPENSSL),y) OPENSWAN_DEPENDENCIES += openssl OPENSWAN_MAKE_OPTS += HAVE_OPENSSL=true ifeq ($(BR2_PACKAGE_OCF_LINUX),y) OPENSWAN_MAKE_OPTS += HAVE_OCF=true endif endif define OPENSWAN_BUILD_CMDS $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) \ $(OPENSWAN_MAKE_OPTS) programs endef define OPENSWAN_INSTALL_TARGET_CMDS $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) \ $(OPENSWAN_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install endef $(eval $(generic-package))
shibajee/buildroot
package/openswan/openswan.mk
mk
mit
1,234
config BR2_PACKAGE_OPENTYRIAN_DATA bool "OpenTyrian data" depends on BR2_PACKAGE_OPENTYRIAN help Data files to use with OpenTyrian game. Currently only the original Tyrian 2.1 data files, that have been released as Freeware in 2004, are compatible. http://code.google.com/p/opentyrian/wiki/FAQ
shibajee/buildroot
package/opentyrian-data/Config.in
in
mit
310
# Locally calculated sha256 7790d09a2a3addcd33c66ef063d5900eb81cc9c342f4807eb8356364dd1d9277 tyrian21.zip
shibajee/buildroot
package/opentyrian-data/opentyrian-data.hash
hash
mit
106
################################################################################ # # opentyrian-data # ################################################################################ OPENTYRIAN_DATA_VERSION = 2.1 OPENTYRIAN_DATA_SITE = http://www.camanis.net/opentyrian OPENTYRIAN_DATA_SOURCE = tyrian21.zip OPENTYRIAN_DATA_LICENSE = Freeware define OPENTYRIAN_DATA_EXTRACT_CMDS $(UNZIP) -d $(@D) $(DL_DIR)/$(OPENTYRIAN_DATA_SOURCE) endef define OPENTYRIAN_DATA_INSTALL_TARGET_CMDS mkdir -p $(TARGET_DIR)/usr/share/opentyrian/data/ cp $(@D)/tyrian21/* $(TARGET_DIR)/usr/share/opentyrian/data/ rm -f $(TARGET_DIR)/usr/share/opentyrian/data/*.doc rm -f $(TARGET_DIR)/usr/share/opentyrian/data/*.exe endef $(eval $(generic-package))
shibajee/buildroot
package/opentyrian-data/opentyrian-data.mk
mk
mit
740
config BR2_PACKAGE_OPENTYRIAN bool "OpenTyrian" select BR2_PACKAGE_SDL select BR2_PACKAGE_OPENTYRIAN_DATA help OpenTyrian is a port of the DOS shoot-em-up Tyrian. It uses SDL, making it easily cross-platform. It requires the original data files to run. A display with minimum 640x480 resolution and a keyboard are needed to play the game. If you want some sound, activate ALSA with OSS emulation. https://bitbucket.org/opentyrian/opentyrian/wiki/Home if BR2_PACKAGE_OPENTYRIAN config BR2_PACKAGE_OPENTYRIAN_NET bool "network support" default y select BR2_PACKAGE_SDL_NET help Activates network support in OpenTyrian. Will add SDL_net. endif
shibajee/buildroot
package/opentyrian/Config.in
in
mit
677
################################################################################ # # opentyrian # ################################################################################ OPENTYRIAN_VERSION = 9c9f0ec3532b OPENTYRIAN_SITE = https://bitbucket.org/opentyrian/opentyrian OPENTYRIAN_SITE_METHOD = hg OPENTYRIAN_LICENSE = GPLv2+ OPENTYRIAN_LICENSE_FILES = COPYING OPENTYRIAN_DEPENDENCIES = sdl ifeq ($(BR2_PACKAGE_OPENTYRIAN_NET),y) OPENTYRIAN_DEPENDENCIES += sdl_net OPENTYRIAN_NETWORK = true else OPENTYRIAN_NETWORK = false endif define OPENTYRIAN_BUILD_CMDS $(MAKE) PLATFORM=UNIX \ CC="$(TARGET_CC)" \ STRIP="/bin/true" \ SDL_CONFIG="$(STAGING_DIR)/usr/bin/sdl-config" \ LDFLAGS="-lm" \ WITH_NETWORK="$(OPENTYRIAN_NETWORK)" \ -C $(@D) release endef define OPENTYRIAN_INSTALL_TARGET_CMDS $(INSTALL) -D -m 0755 $(@D)/opentyrian $(TARGET_DIR)/usr/bin/opentyrian endef $(eval $(generic-package))
shibajee/buildroot
package/opentyrian/opentyrian.mk
mk
mit
917
lib/misc/msgList.c: missing #ifdef This macro checks for BSD style printf(), which is not present when compiling for uClibc. The linked functions are unnecessary in this case, and they break compilation. Signed-off-by: Karoly Kasza <kaszak@gmail.com> --- openvmtools-stable-9.10.0.orig/open-vm-tools/lib/misc/msgList.c 2015-06-17 10:01:00.000000000 +0200 +++ openvmtools-stable-9.10.0/open-vm-tools/lib/misc/msgList.c 2015-06-17 10:01:00.000000000 +0200 @@ -487,6 +487,7 @@ return messages->id; } +#ifdef HAS_BSD_PRINTF /* *---------------------------------------------------------------------- @@ -566,6 +567,7 @@ } } +#endif /* *----------------------------------------------------------------------
shibajee/buildroot
package/openvmtools/0001-has_bsd_printf.patch
patch
mit
730
configure.ac: disable -Werror Disable the mandatory flag -Werror in configure.ac. Signed-off-by: Karoly Kasza <kaszak@gmail.com> --- openvmtools-stable-9.10.0.orig/open-vm-tools/configure.ac 2015-06-17 10:02:00.000000000 +0200 +++ openvmtools-stable-9.10.0/open-vm-tools/configure.ac 2015-06-17 10:02:00.000000000 +0200 @@ -935,7 +935,7 @@ ### General flags / actions CFLAGS="$CFLAGS -Wall" -CFLAGS="$CFLAGS -Werror" +# CFLAGS="$CFLAGS -Werror" # -Wno-unknown-pragmas is due to gcc not understanding '#pragma ident' # in Xlib.h on OpenSolaris.
shibajee/buildroot
package/openvmtools/0002-no_cflags_werror.patch
patch
mit
556
m4: do not force -I/usr/include in CPPFLAGS This is so horribly broken for cross-compilation. :-( Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> --- openvmtools-stable-9.10.0.orig/open-vm-tools/m4/vmtools.m4 2015-06-17 10:03:00.000000000 +0200 +++ openvmtools-stable-9.10.0/open-vm-tools/m4/vmtools.m4 2015-06-17 10:03:00.000000000 +0200 @@ -281,10 +281,10 @@ if test "$os" = freebsd; then CUSTOM_$1_CPPFLAGS="-I/usr/local/include" else - CUSTOM_$1_CPPFLAGS="-I/usr/include" + CUSTOM_$1_CPPFLAGS=" " fi if test -n "$2"; then - CUSTOM_$1_CPPFLAGS="${CUSTOM_$1_CPPFLAGS}/$2" + : CUSTOM_$1_CPPFLAGS="${CUSTOM_$1_CPPFLAGS}/$2" fi fi ])
shibajee/buildroot
package/openvmtools/0003-dont-force-cppflags.patch
patch
mit
727
lib/misc/idLinux.c: add uClibc support uClibc does not have a secure_getenv function, so we use the Android method. Signed-off-by: Karoly Kasza <kaszak@gmail.com> --- openvmtools-stable-9.10.0.orig/open-vm-tools/lib/misc/idLinux.c 2015-06-17 10:04:00.000000000 +0200 +++ openvmtools-stable-9.10.0/open-vm-tools/lib/misc/idLinux.c 2015-06-17 10:04:00.000000000 +0200 @@ -997,7 +997,7 @@ static Bool IdIsSetUGid(void) { -#if defined(__ANDROID__) +#if defined(__ANDROID__) || defined(__UCLIBC__) /* Android does not have a secure_getenv, so be conservative. */ return TRUE; #else
shibajee/buildroot
package/openvmtools/0004-uclibc_secure_getenv.patch
patch
mit
593
config BR2_PACKAGE_OPENVMTOOLS bool "openvmtools" depends on BR2_i386 || BR2_x86_64 depends on BR2_USE_MMU # libglib2 depends on BR2_USE_WCHAR # libglib2 depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC depends on BR2_ENABLE_LOCALE depends on !BR2_TOOLCHAIN_USES_UCLIBC select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_LIBDNET help Open Virtual Machine Tools for VMware guest OS http://open-vm-tools.sourceforge.net/ ICU locales, Xerces, and X11 tools are currently not supported. NOTE: Support for vmblock-fuse will be enabled in openvmtools if the libfuse package is selected. if BR2_PACKAGE_OPENVMTOOLS config BR2_PACKAGE_OPENVMTOOLS_PROCPS bool "procps support" depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS select BR2_PACKAGE_PROCPS_NG help Enable support for procps / meminfo comment "procps support needs BR2_PACKAGE_BUSYBOX_SHOW_OTHERS" depends on !BR2_PACKAGE_BUSYBOX_SHOW_OTHERS config BR2_PACKAGE_OPENVMTOOLS_PAM bool "PAM support" select BR2_PACKAGE_LINUX_PAM # linux-pam needs locale and wchar, but we already have this # dependency on the main symbol, above. depends on !BR2_STATIC_LIBS depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam help Support for PAM in openvmtools comment "PAM support needs a glibc toolchain w/ dynamic library" depends on BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL endif comment "openvmtools needs a glibc or musl toolchain w/ wchar, threads, RPC, locale" depends on BR2_i386 || BR2_x86_64 depends on BR2_USE_MMU depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ !BR2_TOOLCHAIN_HAS_NATIVE_RPC || !BR2_ENABLE_LOCALE || \ BR2_TOOLCHAIN_USES_UCLIBC
shibajee/buildroot
package/openvmtools/Config.in
in
mit
1,691
#!/bin/sh # # Starts vmtoolsd for openvmtools # EXEC="/usr/bin/vmtoolsd" ARGS="-b" PID="/var/run/vmtoolsd.pid" case "$1" in start) printf "Starting vmtoolsd: " start-stop-daemon -S -q -x $EXEC -- $ARGS $PID if [ $? != 0 ]; then echo "FAILED" exit 1 else echo "OK" fi ;; stop) printf "Stopping vmtoolsd: " start-stop-daemon -K -q -p $PID echo "OK" ;; restart|reload) $0 stop $0 start ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 esac
shibajee/buildroot
package/openvmtools/S10vmtoolsd
none
mit
521
# locally computed sha256 6b415f6093a15ffce10d3c4b69aa7ff106bdc0efd88e18a70a59d6941d4d2379 openvmtools-stable-9.10.2.tar.gz
shibajee/buildroot
package/openvmtools/openvmtools.hash
hash
mit
126
################################################################################ # # openvmtools # ################################################################################ OPENVMTOOLS_VERSION = stable-9.10.2 OPENVMTOOLS_SITE = $(call github,vmware,open-vm-tools,$(OPENVMTOOLS_VERSION)) OPENVMTOOLS_SUBDIR = open-vm-tools OPENVMTOOLS_LICENSE = LGPLv2.1 OPENVMTOOLS_LICENSE_FILES = $(OPENVMTOOLS_SUBDIR)/COPYING # Autoreconf needed or config/missing will run configure again at buildtime OPENVMTOOLS_AUTORECONF = YES OPENVMTOOLS_CONF_OPTS = --with-dnet \ --without-icu --without-x --without-gtk2 \ --without-gtkmm --without-kernel-modules \ --disable-deploypkg --without-xerces OPENVMTOOLS_CONF_ENV += CUSTOM_DNET_CPPFLAGS=" " OPENVMTOOLS_DEPENDENCIES = libglib2 libdnet # When libfuse is available, openvmtools can build vmblock-fuse, so # make sure that libfuse gets built first ifeq ($(BR2_PACKAGE_LIBFUSE),y) OPENVMTOOLS_DEPENDENCIES += libfuse endif ifeq ($(BR2_PACKAGE_OPENSSL),y) OPENVMTOOLS_CONF_OPTS += --with-ssl OPENVMTOOLS_DEPENDENCIES += openssl else OPENVMTOOLS_CONF_OPTS += --without-ssl endif ifeq ($(BR2_PACKAGE_OPENVMTOOLS_PROCPS),y) OPENVMTOOLS_CONF_OPTS += --with-procps OPENVMTOOLS_DEPENDENCIES += procps-ng else OPENVMTOOLS_CONF_OPTS += --without-procps endif ifeq ($(BR2_PACKAGE_OPENVMTOOLS_PAM),y) OPENVMTOOLS_CONF_OPTS += --with-pam OPENVMTOOLS_DEPENDENCIES += linux-pam else OPENVMTOOLS_CONF_OPTS += --without-pam endif # configure needs execution permission define OPENVMTOOLS_PRE_CONFIGURE_CHMOD chmod 0755 $(@D)/$(OPENVMTOOLS_SUBDIR)/configure endef OPENVMTOOLS_PRE_CONFIGURE_HOOKS += OPENVMTOOLS_PRE_CONFIGURE_CHMOD # symlink needed by lib/system/systemLinux.c (or will cry in /var/log/messages) # defined in lib/misc/hostinfoPosix.c # /sbin/shutdown needed for Guest OS restart/shutdown from hypervisor define OPENVMTOOLS_POST_INSTALL_TARGET_THINGIES ln -fs os-release $(TARGET_DIR)/etc/lfs-release if [ ! -e $(TARGET_DIR)/sbin/shutdown ]; then \ $(INSTALL) -D -m 755 package/openvmtools/shutdown \ $(TARGET_DIR)/sbin/shutdown; \ fi endef OPENVMTOOLS_POST_INSTALL_TARGET_HOOKS += OPENVMTOOLS_POST_INSTALL_TARGET_THINGIES define OPENVMTOOLS_INSTALL_INIT_SYSV $(INSTALL) -D -m 755 package/openvmtools/S10vmtoolsd \ $(TARGET_DIR)/etc/init.d/S10vmtoolsd endef define OPENVMTOOLS_INSTALL_INIT_SYSTEMD $(INSTALL) -D -m 644 package/openvmtools/vmtoolsd.service \ $(TARGET_DIR)/usr/lib/systemd/system/vmtoolsd.service mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants ln -fs ../../../../usr/lib/systemd/system/vmtoolsd.service \ $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/vmtoolsd.service endef $(eval $(autotools-package))
shibajee/buildroot
package/openvmtools/openvmtools.mk
mk
mit
2,717
#!/bin/sh #compatibility script for openvmtools if [ "$1" == "-r" ]; then /sbin/reboot else /sbin/poweroff fi
shibajee/buildroot
package/openvmtools/shutdown
none
mit
110
[Unit] Description=vmtoolsd for openvmtools After=syslog.target network.target [Service] Type=forking PIDFile=/var/run/vmtoolsd.pid ExecStart=/usr/bin/vmtoolsd -b /var/run/vmtoolsd.pid Restart=on-failure KillMode=process KillSignal=SIGKILL [Install] WantedBy=multi-user.target
shibajee/buildroot
package/openvmtools/vmtoolsd.service
service
mit
279
config BR2_PACKAGE_OPENVPN bool "openvpn" depends on BR2_USE_MMU # fork() select BR2_PACKAGE_OPENSSL help OpenVPN is a full-featured SSL VPN solution which can accomodate a wide range of configurations, including road warrior access, home/office/campus telecommuting, WiFi security, secure branch office linking, and enterprise-scale remote access solutions with load balancing, failover, and fine-grained access-controls. http://openvpn.net/ if BR2_PACKAGE_OPENVPN config BR2_PACKAGE_OPENVPN_LZO bool "LZO compression" default y select BR2_PACKAGE_LZO help Enable LZO compression. config BR2_PACKAGE_OPENVPN_SMALL bool "Optimize for small size" help Make OpenVPN as small as possible. You loose eurephia, debugging info, help messages and more. It saves around 100 KiB in binary file size. config BR2_PACKAGE_OPENVPN_PWSAVE bool "Allow passwords in files" help Allow --askpass and --auth-user-pass passwords to be read from a file. endif
shibajee/buildroot
package/openvpn/Config.in
in
mit
996
#!/bin/sh -e # # Original version by Robert Leslie # <rob@mars.org>, edited by iwj and cs # Modified for openvpn by Alberto Gonzalez Iniesta <agi@agi.as> # Modified for restarting / starting / stopping single tunnels by Richard Mueller <mueller@teamix.net> test $DEBIAN_SCRIPT_DEBUG && set -v -x DAEMON=/usr/sbin/openvpn CONFIG_DIR=/etc/openvpn test -x $DAEMON || exit 0 test -d $CONFIG_DIR || exit 0 start_vpn () { $DAEMON --daemon --writepid /var/run/openvpn.$NAME.pid \ --config $CONFIG_DIR/$NAME.conf --cd $CONFIG_DIR || printf " FAILED->" printf " $NAME" } stop_vpn () { kill `cat $PIDFILE` || true rm $PIDFILE } case "$1" in start) printf "Starting openvpn:" if test -z $2 ; then for CONFIG in `cd $CONFIG_DIR; ls *.conf 2> /dev/null`; do NAME=${CONFIG%%.conf} start_vpn done else if test -e $CONFIG_DIR/$2.conf ; then NAME=$2 start_vpn else printf " No such VPN: $2" fi fi echo "." ;; stop) printf "Stopping openvpn:" if test -z $2 ; then for PIDFILE in `ls /var/run/openvpn.*.pid 2> /dev/null`; do NAME=`echo $PIDFILE | cut -c18-` NAME=${NAME%%.pid} stop_vpn printf " $NAME" done else if test -e /var/run/openvpn.$2.pid ; then PIDFILE=`ls /var/run/openvpn.$2.pid 2> /dev/null` NAME=`echo $PIDFILE | cut -c18-` NAME=${NAME%%.pid} stop_vpn printf " $NAME" else printf " No such VPN: $2" fi fi echo "." ;; # We only 'reload' for running VPNs. New ones will only start with 'start' or 'restart'. reload|force-reload) printf "Reloading openvpn:" for PIDFILE in `ls /var/run/openvpn.*.pid 2> /dev/null`; do NAME=`echo $PIDFILE | cut -c18-` NAME=${NAME%%.pid} # If openvpn if running under a different user than root we'll need to restart if egrep '^( |\t)*user' $CONFIG_DIR/$NAME.conf > /dev/null 2>&1 ; then stop_vpn sleep 1 start_vpn printf "(restarted)" else kill -HUP `cat $PIDFILE` || true # start-stop-daemon --stop --signal HUP --quiet --oknodo \ # --exec $DAEMON --pidfile $PIDFILE printf " $NAME" fi done echo "." ;; restart) $0 stop $2 sleep 1 $0 start $2 ;; *) echo "Usage: $0 {start|stop|reload|restart|force-reload}" >&2 exit 1 ;; esac exit 0 # vim:set ai et sts=2 sw=2 tw=0:
shibajee/buildroot
package/openvpn/S60openvpn
none
mit
2,366
# Locally calculated after checking pgp signature sha256 0f5f1ca1dc5743fa166d93dd4ec952f014b5f33bafd88f0ea34b455cae1434a7 openvpn-2.3.11.tar.xz
shibajee/buildroot
package/openvpn/openvpn.hash
hash
mit
145
################################################################################ # # openvpn # ################################################################################ OPENVPN_VERSION = 2.3.11 OPENVPN_SOURCE = openvpn-$(OPENVPN_VERSION).tar.xz OPENVPN_SITE = http://swupdate.openvpn.net/community/releases OPENVPN_DEPENDENCIES = host-pkgconf openssl OPENVPN_LICENSE = GPLv2 OPENVPN_LICENSE_FILES = COPYRIGHT.GPL OPENVPN_CONF_OPTS = \ --disable-plugin-auth-pam \ --enable-iproute2 \ --with-crypto-library=openssl \ $(if $(BR2_STATIC_LIBS),--disable-plugins) OPENVPN_CONF_ENV = IFCONFIG=/sbin/ifconfig \ NETSTAT=/bin/netstat \ ROUTE=/sbin/route ifeq ($(BR2_PACKAGE_OPENVPN_SMALL),y) OPENVPN_CONF_OPTS += \ --enable-small \ --disable-plugins \ --disable-eurephia endif # BusyBox 1.21+ places the ip applet in the "correct" place # but previous versions didn't. ifeq ($(BR2_PACKAGE_IPROUTE2),y) OPENVPN_CONF_ENV += IPROUTE=/sbin/ip else ifeq ($(BR2_BUSYBOX_VERSION_1_19_X)$(BR2_BUSYBOX_VERSION_1_20_X),y) OPENVPN_CONF_ENV += IPROUTE=/bin/ip else OPENVPN_CONF_ENV += IPROUTE=/sbin/ip endif ifeq ($(BR2_PACKAGE_OPENVPN_LZO),y) OPENVPN_DEPENDENCIES += lzo else OPENVPN_CONF_OPTS += --disable-lzo endif ifeq ($(BR2_PACKAGE_OPENVPN_PWSAVE),y) OPENVPN_CONF_OPTS += --enable-password-save else OPENVPN_CONF_OPTS += --disable-password-save endif define OPENVPN_INSTALL_TARGET_CMDS $(INSTALL) -m 755 $(@D)/src/openvpn/openvpn \ $(TARGET_DIR)/usr/sbin/openvpn endef define OPENVPN_INSTALL_INIT_SYSV $(INSTALL) -m 755 -D package/openvpn/S60openvpn \ $(TARGET_DIR)/etc/init.d/S60openvpn endef $(eval $(autotools-package))
shibajee/buildroot
package/openvpn/openvpn.mk
mk
mit
1,637
From 0878d933223158343af3fe13e03bcd128e8b4cbc Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine <fabrice.fontaine@orange.com> Date: Fri, 22 Apr 2016 17:06:27 +0200 Subject: [PATCH 1/1] Fix warning on wcsdup implicit declaration Define __GNU_SOURCE in cpp/hidapi/linux/hid.c (like already done in cpp/hidapi/libusb/hid.c) to fix implicit declaration of wcsdup function Signed-off-by: Fabrice Fontaine <fabrice.fontaine@orange.com> --- cpp/hidapi/linux/hid.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpp/hidapi/linux/hid.c b/cpp/hidapi/linux/hid.c index dbf9b9b..c3eb22b 100644 --- a/cpp/hidapi/linux/hid.c +++ b/cpp/hidapi/linux/hid.c @@ -21,6 +21,8 @@ http://github.com/signal11/hidapi . ********************************************************/ +#define _GNU_SOURCE /* needed for wcsdup() before glibc 2.10 */ + /* C */ #include <stdio.h> #include <string.h> -- 1.9.1
shibajee/buildroot
package/openzwave/0001-Fix-warning-on-wcsdup-implicit-declaration.patch
patch
mit
900
From 89cdc83307f61422db21cc7965ea294862c128bf Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine <fabrice.fontaine@orange.com> Date: Mon, 30 May 2016 10:37:42 +0200 Subject: [PATCH 2/2] Ensure correct git repository path Add "--git-dir ./.git" to ensure the correct git repository path is used (this fix a bug when trying to add openzwave to buildroot build system) Signed-off-by: Fabrice Fontaine <fabrice.fontaine@orange.com> --- cpp/build/support.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/build/support.mk b/cpp/build/support.mk index 3f74c7e..f529b25 100644 --- a/cpp/build/support.mk +++ b/cpp/build/support.mk @@ -29,7 +29,7 @@ GIT := $(shell which git) ifeq ($(GIT),) VERSION_REV ?= 0 else -GITVERSION := $(shell $(GIT) describe --long --tags --dirty 2>/dev/null | sed s/^v//) +GITVERSION := $(shell $(GIT) --git-dir ./.git describe --long --tags --dirty 2>/dev/null | sed s/^v//) ifeq ($(GITVERSION),) GITVERSION := $(VERSION_MAJ).$(VERSION_MIN).-1 VERSION_REV := 0 -- 2.7.4
shibajee/buildroot
package/openzwave/0002-Ensure-correct-git-repository-path.patch
patch
mit
1,025
config BR2_PACKAGE_OPENZWAVE bool "openzwave" depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_INSTALL_LIBSTDCPP depends on BR2_PACKAGE_HAS_UDEV depends on BR2_USE_WCHAR help Free software library that interfaces with selected Z-Wave PC controllers, allowing anyone to create applications that manipulate and respond to devices on a Z-Wave network, without requiring in-depth knowledge of the Z-Wave protocol http://www.openzwave.net comment "openzwave needs udev and a toolchain w/ C++, threads, wchar" depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ !BR2_PACKAGE_HAS_UDEV || !BR2_USE_WCHAR
shibajee/buildroot
package/openzwave/Config.in
in
mit
642
# Locally computed: sha256 ca122365f6237dc245be0129eb460e78126976b9c7bd06487795d3acfc9f2a5f openzwave-v1.4.tar.gz
shibajee/buildroot
package/openzwave/openzwave.hash
hash
mit
114
################################################################################ # # openzwave # ################################################################################ OPENZWAVE_VERSION = v1.4 OPENZWAVE_SITE = $(call github,OpenZWave,open-zwave,$(OPENZWAVE_VERSION)) OPENZWAVE_LICENSE = LGPLv3+, GPLv3 (examples), Apache-2.0 (sh2ju.sh) OPENZWAVE_LICENSE_FILES = license/license.txt license/lgpl.txt \ license/gpl.txt license/Apache-License-2.0.txt OPENZWAVE_DEPENDENCIES = host-pkgconf udev OPENZWAVE_INSTALL_STAGING = YES # Set instlibdir to install libopenzwave.so* in the correct directory # otherwise openzwave will check that /lib64 exists (on the host) to # know if the library should be installed in $(PREFIX)/lib or $(PREFIX)/lib64. # Set pkgconfigdir to /lib/pkgconfig to install libopenzwave.pc in the # correct directory otherwise openzwave will call # "pkg-config --variable pc_path pkg-config" which returns an incorrect value. # Set sysconfdir to /etc/openzwave to install openzwave configuration files in # the correct directory otherwise openzwave will install configuration files in # $(PREFIX)/etc/openzwave. # Disable doxygen documentation. OPENZWAVE_MAKE_OPTS = \ CROSS_COMPILE="$(TARGET_CROSS)" \ PREFIX=/usr \ instlibdir=/usr/lib \ pkgconfigdir=/usr/lib/pkgconfig \ sysconfdir=/etc/openzwave \ DOXYGEN= define OPENZWAVE_BUILD_CMDS $(TARGET_MAKE_ENV) $(MAKE) $(OPENZWAVE_MAKE_OPTS) -C $(@D) endef define OPENZWAVE_INSTALL_STAGING_CMDS $(TARGET_MAKE_ENV) $(MAKE) $(OPENZWAVE_MAKE_OPTS) -C $(@D) \ DESTDIR=$(STAGING_DIR) install endef # Delete unneeded ozw_config binary from target directory as this is an utility # application used to get the openzwave build configuration. define OPENZWAVE_INSTALL_TARGET_CMDS $(TARGET_MAKE_ENV) $(MAKE) $(OPENZWAVE_MAKE_OPTS) -C $(@D) \ DESTDIR=$(TARGET_DIR) install rm -f $(TARGET_DIR)/usr/bin/ozw_config endef $(eval $(generic-package))
shibajee/buildroot
package/openzwave/openzwave.mk
mk
mit
1,927
comment "opkg needs a toolchain w/ wchar" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR config BR2_PACKAGE_OPKG bool "opkg" select BR2_PACKAGE_LIBARCHIVE depends on BR2_USE_MMU # fork() depends on BR2_USE_WCHAR # libarchive help Opkg is a lightweight package management system, based on ipkg. It is written in C and resembles apt/dpkg in operation. It is intended for use on embedded Linux devices. Opkg is maintained, stable, robust and conservative in its memory usage, despite its buggy ipkg ancestry. As best it can, opkg maintains backwards compatibility with ipkg and conforms to a subset of debian's policy manual regarding control files. http://code.google.com/p/opkg/ if BR2_PACKAGE_OPKG config BR2_PACKAGE_OPKG_GPG_SIGN bool "gnupg support" depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgpg-error select BR2_PACKAGE_LIBGPGME select BR2_PACKAGE_LIBGPG_ERROR help Enable opkg package signature checking support using gnupg/libgpgme. endif
shibajee/buildroot
package/opkg/Config.in
in
mit
1,006
################################################################################ # # opkg # ################################################################################ OPKG_VERSION = v0.3.1 OPKG_SITE = http://git.yoctoproject.org/git/opkg OPKG_SITE_METHOD = git # Uses PKG_CHECK_MODULES() in configure.ac OPKG_DEPENDENCIES = host-pkgconf libarchive OPKG_LICENSE = GPLv2+ OPKG_LICENSE_FILES = COPYING OPKG_INSTALL_STAGING = YES OPKG_CONF_OPTS = --disable-curl OPKG_AUTORECONF = YES # Ensure directory for lockfile exists define OPKG_CREATE_LOCKDIR mkdir -p $(TARGET_DIR)/usr/lib/opkg endef ifeq ($(BR2_PACKAGE_OPKG_GPG_SIGN),y) OPKG_CONF_OPTS += --enable-gpg OPKG_CONF_ENV += \ ac_cv_path_GPGME_CONFIG=$(STAGING_DIR)/usr/bin/gpgme-config \ ac_cv_path_GPGERR_CONFIG=$(STAGING_DIR)/usr/bin/gpg-error-config OPKG_DEPENDENCIES += libgpgme libgpg-error else OPKG_CONF_OPTS += --disable-gpg endif OPKG_POST_INSTALL_TARGET_HOOKS += OPKG_CREATE_LOCKDIR $(eval $(autotools-package))
shibajee/buildroot
package/opkg/opkg.mk
mk
mit
986
Remove non-Posix use of FTW_ACTIONRETVAL The musl implementation of nftw doesn't support the glibc extension FTW_ACTIONRETVAL. Since none of the features of FTW_ACTIONRETVAL are used here, just use the normal nftw return value. Downloaded from: https://github.com/openwrt-mirror/openwrt/blob/f22d5e25660106a48727c7aa5d1a73e4171a7987/package/devel/oprofile/patches/100-musl.patch after I found a hint for the patch here: http://patchwork.openembedded.org/patch/112675/ Removed unneeded patch for libop/op_events.c. Because openwrt removed the oprofile package from their repo last week https://github.com/openwrt-mirror/openwrt/commit/aaf46a8524e138e1673a398e8d2dd9357405b313#diff-fe14456f94abf436d997e2c01c10f3bd I decided to put this patch into the buildroot repo instead of adding _PATCH to oprofile.mk Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> --- a/pe_profiling/operf.cpp +++ b/pe_profiling/operf.cpp @@ -857,11 +857,14 @@ static int __delete_old_previous_sample_ int tflag __attribute__((unused)), struct FTW *ftwbuf __attribute__((unused))) { + int err; + if (remove(fpath)) { + err = errno; perror("sample data removal error"); - return FTW_STOP; + return err; } else { - return FTW_CONTINUE; + return 0; } } @@ -896,7 +899,7 @@ static void convert_sample_data(void) return; if (!operf_options::append) { - int flags = FTW_DEPTH | FTW_ACTIONRETVAL; + int flags = FTW_DEPTH; errno = 0; if (nftw(previous_sampledir.c_str(), __delete_old_previous_sample_data, 32, flags) !=0 && errno != ENOENT) {
shibajee/buildroot
package/oprofile/0001-musl.patch
patch
mit
1,651
# memory barrier function implemented only for some architectures config BR2_PACKAGE_OPROFILE_ARCH_SUPPORTS bool default y depends on BR2_arceb || BR2_arcle || BR2_arm || BR2_armeb || \ BR2_aarch64 || BR2_aarch64_be || BR2_i386 || BR2_mips || \ BR2_mipsel || BR2_mips64 || BR2_mips64el || BR2_powerpc || \ BR2_powerpc64 || BR2_powerpc64le || BR2_sh || \ BR2_sparc || BR2_sparc64 || BR2_x86_64 config BR2_PACKAGE_OPROFILE bool "oprofile" depends on BR2_USE_MMU # fork() select BR2_PACKAGE_POPT select BR2_PACKAGE_BINUTILS select BR2_PACKAGE_LIBPFM4 if BR2_powerpc depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR # binutils depends on BR2_PACKAGE_OPROFILE_ARCH_SUPPORTS # libpfm4 is needed on PowerPC, and requires thread support depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_powerpc help OProfile is a system-wide profiler for Linux systems, capable of profiling all running code at low overhead. OProfile is released under the GNU GPL. It consists of a kernel driver and a daemon for collecting sample data, and several post-profiling tools for turning data into information. OProfile leverages the hardware performance counters of the CPU to enable profiling of a wide variety of interesting statistics, which can also be used for basic time-spent profiling. All code is profiled: hardware and software interrupt handlers, kernel modules, the kernel, shared libraries, and applications. comment "oprofile needs a toolchain w/ C++, wchar" depends on BR2_USE_MMU depends on BR2_PACKAGE_OPROFILE_ARCH_SUPPORTS depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR comment "oprofile needs a toolchain w/ NPTL on PPC" depends on BR2_USE_MMU && BR2_powerpc depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
shibajee/buildroot
package/oprofile/Config.in
in
mit
1,775
# From http://sourceforge.net/projects/oprofile/files/oprofile/oprofile-1.1.0/ sha1 38c0d8812fe605f6ddd1cd183a482aa7605c0e81 oprofile-1.1.0.tar.gz md5 248c4c069f9476f427fa7195563f9867 oprofile-1.1.0.tar.gz
shibajee/buildroot
package/oprofile/oprofile.hash
hash
mit
207
################################################################################ # # oprofile # ################################################################################ OPROFILE_VERSION = 1.1.0 OPROFILE_SITE = http://downloads.sourceforge.net/project/oprofile/oprofile/oprofile-$(OPROFILE_VERSION) OPROFILE_LICENSE = GPLv2+ OPROFILE_LICENSE_FILES = COPYING OPROFILE_CONF_OPTS = \ --disable-account-check \ --enable-gui=no \ --with-kernel=$(STAGING_DIR)/usr OPROFILE_BINARIES = \ utils/ophelp pp/opannotate pp/oparchive pp/opgprof \ pp/opreport opjitconv/opjitconv \ utils/op-check-perfevents libabi/opimport \ pe_counting/ocount ifeq ($(BR2_i386),y) OPROFILE_ARCH = i386 endif ifeq ($(BR2_mipsel),y) OPROFILE_ARCH = mips endif ifeq ($(BR2_powerpc),y) OPROFILE_ARCH = ppc endif ifeq ($(BR2_x86_64),y) OPROFILE_ARCH = x86-64 endif ifeq ($(OPROFILE_ARCH),) OPROFILE_ARCH = $(BR2_ARCH) endif OPROFILE_DEPENDENCIES = popt binutils host-pkgconf ifeq ($(BR2_PACKAGE_LIBPFM4),y) OPROFILE_DEPENDENCIES += libpfm4 endif # When gettext is enabled, popt links with -lintl, specifies it in its # popt.pc and has done so for the past 6+ years. But oprofile does not # use pkconfig to find popt, so misses -lintl, which is important for # a static build. We have to do the call to pkgconfig manually... OPROFILE_CONF_ENV += LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs popt`" ifeq ($(BR2_STATIC_LIBS),) define OPROFILE_INSTALL_SHARED_LIBRARY $(INSTALL) -m 755 $(@D)/libopagent/.libs/*.so* $(TARGET_DIR)/usr/lib/oprofile endef endif define OPROFILE_INSTALL_TARGET_CMDS $(INSTALL) -d -m 755 $(TARGET_DIR)/usr/bin $(INSTALL) -d -m 755 $(TARGET_DIR)/usr/share/oprofile $(INSTALL) -d -m 755 $(TARGET_DIR)/usr/lib/oprofile if [ -d $(@D)/events/$(OPROFILE_ARCH) ]; then \ cp -dpfr $(@D)/events/$(OPROFILE_ARCH) \ $(TARGET_DIR)/usr/share/oprofile; \ fi $(INSTALL) -m 644 $(@D)/libregex/stl.pat $(TARGET_DIR)/usr/share/oprofile $(INSTALL) -m 755 $(addprefix $(@D)/, $(OPROFILE_BINARIES)) $(TARGET_DIR)/usr/bin $(OPROFILE_INSTALL_SHARED_LIBRARY) endef $(eval $(autotools-package))
shibajee/buildroot
package/oprofile/oprofile.mk
mk
mit
2,089
config BR2_PACKAGE_OPUS_TOOLS bool "opus-tools" select BR2_PACKAGE_OPUS select BR2_PACKAGE_LIBOGG help Opus codec command line tools. This package provides the reference implementations of encoder and decoder utilities for libopus. http://opus-codec.org
shibajee/buildroot
package/opus-tools/Config.in
in
mit
271
# From http://downloads.xiph.org/releases/opus/SHA256SUMS.txt sha256 b1873dd78c7fbc98cf65d6e10cfddb5c2c03b3af93f922139a2104baedb4643a opus-tools-0.1.9.tar.gz
shibajee/buildroot
package/opus-tools/opus-tools.hash
hash
mit
158
################################################################################ # # opus-tools # ################################################################################ OPUS_TOOLS_VERSION = 0.1.9 OPUS_TOOLS_SITE = http://downloads.xiph.org/releases/opus OPUS_TOOLS_LICENSE = BSD-2c OPUS_TOOLS_LICENSE_FILES = COPYING OPUS_TOOLS_CONF_OPTS = --disable-oggtest --disable-opustest OPUS_TOOLS_DEPENDENCIES = opus libogg host-pkgconf ifeq ($(BR2_PACKAGE_LIBPCAP),y) OPUS_TOOLS_DEPENDENCIES += libpcap endif ifeq ($(BR2_X86_CPU_HAS_SSE),y) OPUS_TOOLS_CONF_OPTS += --enable-sse else OPUS_TOOLS_CONF_OPTS += --disable-sse endif ifeq ($(BR2_PACKAGE_FLAC),y) OPUS_TOOLS_DEPENDENCIES += flac else OPUS_TOOLS_CONF_OPTS += --without-flac endif $(eval $(autotools-package))
shibajee/buildroot
package/opus-tools/opus-tools.mk
mk
mit
774
config BR2_PACKAGE_OPUS bool "opus" help The Opus codec is designed for interactive speech and audio transmission over the Internet. It is designed by the IETF Codec Working Group and incorporates technology from Skype's SILK codec and Xiph.Org's CELT codec. It is intended to suit a wide range of interactive audio applications, including Voice over IP, videoconferencing, in-game chat, and even remote live music performances. It can scale from low bit-rate narrowband speech to very high quality stereo music. http://opus-codec.org if BR2_PACKAGE_OPUS config BR2_PACKAGE_OPUS_FIXED_POINT bool "use fixed-point" if !BR2_SOFT_FLOAT default y if BR2_SOFT_FLOAT help Compile without floating point operations (for machines without a fast enough FPU). endif
shibajee/buildroot
package/opus/Config.in
in
mit
802
# From http://downloads.xiph.org/releases/opus/SHA256SUMS.txt sha256 0e290078e31211baa7b5886bcc8ab6bc048b9fc83882532da4a1a45e58e907fd opus-1.1.2.tar.gz
shibajee/buildroot
package/opus/opus.hash
hash
mit
152
################################################################################ # # opus # ################################################################################ OPUS_VERSION = 1.1.2 OPUS_SITE = http://downloads.xiph.org/releases/opus OPUS_LICENSE = BSD-3c OPUS_LICENSE_FILES = COPYING OPUS_INSTALL_STAGING = YES ifeq ($(BR2_PACKAGE_OPUS_FIXED_POINT),y) OPUS_CONF_OPTS += --enable-fixed-point endif # When we're on ARM, but we don't have ARM instructions (only # Thumb-2), disable the usage of assembly as it is not Thumb-ready. ifeq ($(BR2_arm)$(BR2_armeb):$(BR2_ARM_CPU_HAS_ARM),y:) OPUS_CONF_OPTS += --disable-asm endif $(eval $(autotools-package))
shibajee/buildroot
package/opus/opus.mk
mk
mit
667
config BR2_PACKAGE_OPUSFILE bool "opusfile" select BR2_PACKAGE_LIBOGG select BR2_PACKAGE_OPUS help A convenient high-level API for decoding and basic manipulation of all Ogg Opus audio streams. http://opus-codec.org
shibajee/buildroot
package/opusfile/Config.in
in
mit
230
# From http://downloads.xiph.org/releases/opus/SHA256SUMS.txt sha256 2c231ed3cfaa1b3173f52d740e5bbd77d51b9dfecb87014b404917fba4b855a4 opusfile-0.8.tar.gz
shibajee/buildroot
package/opusfile/opusfile.hash
hash
mit
154
################################################################################ # # opusfile # ################################################################################ OPUSFILE_VERSION = 0.8 OPUSFILE_SITE = http://downloads.xiph.org/releases/opus OPUSFILE_DEPENDENCIES = host-pkgconf libogg opus OPUSFILE_LICENSE = BSD-3c OPUSFILE_LICENSE_FILES = COPYING OPUSFILE_INSTALL_STAGING = YES ifeq ($(BR2_PACKAGE_OPENSSL),y) OPUSFILE_DEPENDENCIES += openssl else OPUSFILE_CONF_OPTS += --disable-http endif # Use the same as opus package since it's a dep and we can't mix ifeq ($(BR2_PACKAGE_OPUS_FIXED_POINT),y) OPUSFILE_CONF_OPTS += --enable-fixed-point endif $(eval $(autotools-package))
shibajee/buildroot
package/opusfile/opusfile.mk
mk
mit
696
config BR2_PACKAGE_ORBIT bool "orbit" # These are runtime dependencies select BR2_PACKAGE_WSAPI select BR2_PACKAGE_LUAFILESYSTEM help An MVC web framework for Lua. The design is inspired by lightweight Ruby frameworks such as Camping http://keplerproject.github.com/orbit
shibajee/buildroot
package/orbit/Config.in
in
mit
287
# Locally calculated sha256 42b0357041b4bdb051cb1a56cf73e3c2b2a2be207d431f70b4955465ad94b6a6 orbit-2.2.3-1.src.rock
shibajee/buildroot
package/orbit/orbit.hash
hash
mit
117
################################################################################ # # orbit # ################################################################################ ORBIT_VERSION_UPSTREAM = 2.2.3 ORBIT_VERSION = $(ORBIT_VERSION_UPSTREAM)-1 ORBIT_SUBDIR = orbit ORBIT_LICENSE = MIT ORBIT_LICENSE_FILES = $(ORBIT_SUBDIR)/doc/us/license.md $(eval $(luarocks-package))
shibajee/buildroot
package/orbit/orbit.mk
mk
mit
376
config BR2_PACKAGE_ORC bool "orc" depends on BR2_TOOLCHAIN_HAS_THREADS depends on !BR2_BINFMT_FLAT # configure doesn't know uclinux help Orc is a library and set of tools for compiling and executing very simple programs that operate on arrays of data. http://code.entropywave.com/projects/orc/ comment "orc needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS depends on !BR2_BINFMT_FLAT
shibajee/buildroot
package/orc/Config.in
in
mit
420
# From https://lists.freedesktop.org/archives/gstreamer-devel/2016-March/057056.html sha256 c1b1d54a58f26d483f0b3881538984789fe5d5460ab8fab74a1cacbd3d1c53d1 orc-0.4.25.tar.xz
shibajee/buildroot
package/orc/orc.hash
hash
mit
175
################################################################################ # # orc # ################################################################################ ORC_VERSION = 0.4.25 ORC_SOURCE = orc-$(ORC_VERSION).tar.xz ORC_SITE = http://gstreamer.freedesktop.org/data/src/orc ORC_LICENSE = BSD-2c, BSD-3c ORC_LICENSE_FILES = COPYING ORC_INSTALL_STAGING = YES ORC_DEPENDENCIES = host-orc define ORC_REMOVE_BUGREPORT rm -f $(TARGET_DIR)/usr/bin/orc-bugreport endef define ORC_REMOVE_DEVFILES rm -f $(TARGET_DIR)/usr/bin/orcc endef ORC_POST_INSTALL_TARGET_HOOKS += ORC_REMOVE_BUGREPORT ORC_POST_INSTALL_TARGET_HOOKS += ORC_REMOVE_DEVFILES $(eval $(autotools-package)) $(eval $(host-autotools-package))
shibajee/buildroot
package/orc/orc.mk
mk
mit
719
config BR2_PACKAGE_ORTP bool "oRTP" depends on BR2_TOOLCHAIN_HAS_THREADS help oRTP, a Real-time Transport Protocol (RTP,RFC3550) library http://www.linphone.org/eng/documentation/dev/ortp.html comment "ortp needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/ortp/Config.in
in
mit
287
# Locally calculated sha256 0deb826b79b1fd329f7638821d5439dc343bc55bb122daa6c90d19116cfe8d9a ortp-0.25.0.tar.gz
shibajee/buildroot
package/ortp/ortp.hash
hash
mit
112
################################################################################ # # ortp # ################################################################################ ORTP_VERSION = 0.25.0 ORTP_SITE = http://download.savannah.nongnu.org/releases/linphone/ortp/sources ORTP_CONF_OPTS = --disable-strict ORTP_INSTALL_STAGING = YES ORTP_LICENSE = LGPLv2.1+ ORTP_LICENSE_FILES = COPYING $(eval $(autotools-package))
shibajee/buildroot
package/ortp/ortp.mk
mk
mit
421
From 75e92438bcdb78a90912366b07bf503646806686 Mon Sep 17 00:00:00 2001 From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be> Date: Sun, 21 Feb 2016 17:02:06 +0100 Subject: [PATCH] configure.ac: check for localtime_r HAVE_LOCALTIME_R is used in owftp.c, so it should be checked for. Without this, static build fails because localtime_r is defined twice. Upstream-Status: Submitted https://sourceforge.net/p/owfs/mailman/message/34873667/ Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c22dde9..12fdd18 100644 --- a/configure.ac +++ b/configure.ac @@ -1529,7 +1529,7 @@ AC_FUNC_SELECT_ARGTYPES AC_FUNC_STRFTIME AC_FUNC_STRTOD AC_TYPE_SIGNAL -AC_CHECK_FUNCS([accept daemon getaddrinfo freeaddrinfo gethostbyname2_r gethostbyaddr_r gethostbyname_r getservbyname_r getopt getopt_long gettimeofday inet_ntop inet_pton memchr memset select socket strcasecmp strchr strdup strncasecmp strtol strtoul twalk tsearch tfind tdelete tdestroy vasprintf strsep vsprintf vsnprintf writev getline]) +AC_CHECK_FUNCS([accept daemon getaddrinfo freeaddrinfo gethostbyname2_r gethostbyaddr_r gethostbyname_r getservbyname_r getopt getopt_long gettimeofday inet_ntop inet_pton memchr memset select socket strcasecmp strchr strdup strncasecmp strtol strtoul twalk tsearch tfind tdelete tdestroy vasprintf strsep vsprintf vsnprintf writev getline localtime_r]) if test "${ENABLE_ZERO}" = "true" ; then AC_SEARCH_LIBS(dlopen, dl, AC_DEFINE(HAVE_DLOPEN, 1, [Define if you have dlopen])) -- 2.7.0
shibajee/buildroot
package/owfs/0001-configure.ac-check-for-localtime_r.patch
patch
mit
1,636
From d24e63eea4f4d234f313145e40668a5e2f64e49c Mon Sep 17 00:00:00 2001 From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be> Date: Wed, 9 Mar 2016 23:20:11 +0100 Subject: [PATCH] compat.h: only include compat_netdb.h if needed compat_netdb.h is added for only one reason: to provide the definitions for getaddrinfo, in case it is not provided by the system. compat_netdb.h is just a copy from an old glibc version, but that makes it incompatible with other standard C libraries. For example, uClibc without RPC support doesn't have the rpc/netdb.h header. This leads to build errors. To work around this, only include compat_netdb.h when needed, i.e. when getaddrinfo isn't provided natively. Note that this getaddrinfo compat was introduced in commit bc54c431 to support Solaris 7. Starting from Solaris 8, however, getaddrinfo is available natively, and it's available on MacOS, Windows and any other POSIX-2001 compliant system as well. So it may be worhtwhile to remove it altogether. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> --- module/owlib/src/include/compat.h | 2 ++ module/ownet/c/src/include/compat.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/module/owlib/src/include/compat.h b/module/owlib/src/include/compat.h index c55bc96..e95e16f 100644 --- a/module/owlib/src/include/compat.h +++ b/module/owlib/src/include/compat.h @@ -57,7 +57,9 @@ #include <features.h> #endif +#ifndef HAVE_GETADDRINFO #include "compat_netdb.h" +#endif #include "compat_getopt.h" #ifndef HAVE_STRSEP diff --git a/module/ownet/c/src/include/compat.h b/module/ownet/c/src/include/compat.h index c45d852..f8ae759 100644 --- a/module/ownet/c/src/include/compat.h +++ b/module/ownet/c/src/include/compat.h @@ -58,7 +58,9 @@ $Id$ #include <features.h> #endif +#ifndef HAVE_GETADDRINFO #include "compat_netdb.h" +#endif #include "compat_getopt.h" #ifndef HAVE_STRSEP -- 2.7.0
shibajee/buildroot
package/owfs/0002-compat.h-only-include-compat_netdb.h-if-needed.patch
patch
mit
1,935
config BR2_PACKAGE_OWFS bool "owfs" depends on BR2_TOOLCHAIN_HAS_THREADS help OWFS is an easy way to use the powerful 1-wire system of Dallas/Maxim. OWFS is a simple and flexible program to monitor and control the physical environment. You can write scripts to read temperature, flash lights, write to an LCD, log and graph, etc. http://owfs.org/ comment "owfs needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/owfs/Config.in
in
mit
457
NAME="owserver" DAEMON="/usr/bin/${NAME}" PID_F="/run/${NAME}.pid" OWSERVER_ARGS= [ -r /etc/default/${NAME} ] && . /etc/default/${NAME} case "$1" in start) printf "Starting ${NAME}: " if [ -z "${OWSERVER_ARGS}" ]; then echo "OWSERVER_ARGS must be set in defaults file" 1>&2 exit 1 fi start-stop-daemon -S -x ${DAEMON} -- \ --pid_file ${PID_F} ${OWSERVER_ARGS} [ $? -eq 0 ] && echo "OK" || echo "FAIL" ;; stop) printf "Stopping ${NAME}: " start-stop-daemon -K -p ${PID_F} [ $? -eq 0 ] && echo "OK" || echo "FAIL" ;; restart|reload) $0 stop $0 start ;; *) echo "Usage: $0 {start|stop|restart|reload}" exit 1 esac
shibajee/buildroot
package/owfs/S25owserver
none
mit
634
NAME="owfs" DAEMON="/usr/bin/${NAME}" PID_F="/run/${NAME}.pid" OWFS_MOUNTPOINT="/dev/1wire" OWFS_DEVICES="-s localhost:4304" OWFS_ARGS="" [ -r /etc/default/${NAME} ] && . /etc/default/${NAME} case "$1" in start) printf "Starting ${NAME}: " # Fuse may be in a module, so try to load it modprobe -q fuse && printf "[fuse] " mkdir -p ${OWFS_MOUNTPOINT} start-stop-daemon -S -x ${DAEMON} -- \ --pid_file ${PID_F} -m ${OWFS_MOUNTPOINT} ${OWFS_DEVICES} \ ${OWFS_ARGS} [ $? -eq 0 ] && echo "OK" || echo "FAIL" ;; stop) printf "Stopping ${NAME}: " start-stop-daemon -K -p ${PID_F} [ $? -eq 0 ] && echo "OK" || echo "FAIL" ;; restart|reload) $0 stop $0 start ;; *) echo "Usage: $0 {start|stop|restart|reload}" exit 1 esac
shibajee/buildroot
package/owfs/S30owfs
none
mit
735
# From https://sourceforge.net/projects/owfs/files/owfs/3.1p1/ sha1 80892ca3e72fef2979b8f0a04db15fd24a2cbda6 owfs-3.1p1.tar.gz # Locally calculated sha256 e69421ae534565c1f8530a2447f583401f4d0d4b1cf3cb8cf399a57133ed7f81 owfs-3.1p1.tar.gz
shibajee/buildroot
package/owfs/owfs.hash
hash
mit
242
################################################################################ # # owfs # ################################################################################ OWFS_VERSION = 3.1p1 OWFS_SITE = http://downloads.sourceforge.net/project/owfs/owfs/$(OWFS_VERSION) OWFS_DEPENDENCIES = host-pkgconf OWFS_CONF_OPTS = --disable-owperl --without-perl5 --disable-owtcl --without-tcl # 0001-configure.ac-check-for-localtime_r.patch touches configure.ac OWFS_AUTORECONF = YES # owtcl license is declared in module/ownet/c/src/include/ow_functions.h OWFS_LICENSE = GPLv2+, LGPLv2 (owtcl) OWFS_LICENSE_FILES = COPYING COPYING.LIB OWFS_INSTALL_STAGING = YES # owfs PHP support is not PHP 7 compliant # https://sourceforge.net/p/owfs/support-requests/32/ OWFS_CONF_OPTS += --disable-owphp --without-php ifeq ($(BR2_PACKAGE_LIBFUSE),y) OWFS_DEPENDENCIES += libfuse OWFS_CONF_OPTS += \ --enable-owfs \ --with-fuseinclude=$(STAGING_DIR)/usr/include \ --with-fuselib=$(STAGING_DIR)/usr/lib define OWFS_INSTALL_FUSE_INIT_SYSV $(INSTALL) -D -m 0755 $(OWFS_PKGDIR)S30owfs \ $(TARGET_DIR)/etc/init.d/S30owfs endef define OWFS_CREATE_MOUNTPOINT mkdir -p $(TARGET_DIR)/dev/1wire endef OWFS_POST_INSTALL_TARGET_HOOKS += OWFS_CREATE_MOUNTPOINT else OWFS_CONF_OPTS += --disable-owfs endif ifeq ($(BR2_PACKAGE_LIBUSB),y) OWFS_CONF_OPTS += --enable-usb OWFS_DEPENDENCIES += libusb else OWFS_CONF_OPTS += --disable-usb endif ifeq ($(BR2_PACKAGE_AVAHI),y) OWFS_CONF_OPTS += --enable-avahi OWFS_DEPENDENCIES += avahi else OWFS_CONF_OPTS += --disable-avahi endif # setup.py isn't python3 compliant ifeq ($(BR2_PACKAGE_PYTHON),y) OWFS_CONF_OPTS += \ --enable-owpython \ --with-python \ --with-pythonconfig=$(STAGING_DIR)/usr/bin/python-config OWFS_MAKE_ENV += \ CC="$(TARGET_CC)" \ PYTHONPATH="$(PYTHON_PATH)" \ _python_sysroot=$(STAGING_DIR) \ _python_prefix=/usr \ _python_exec_prefix=/usr OWFS_DEPENDENCIES += python host-swig else OWFS_CONF_OPTS += --disable-owpython --without-python endif ifeq ($(BR2_STATIC_LIBS),y) # zeroconf support uses dlopen() OWFS_CONF_OPTS += --disable-zero endif define OWFS_INSTALL_INIT_SYSV $(INSTALL) -D -m 0755 $(OWFS_PKGDIR)S25owserver \ $(TARGET_DIR)/etc/init.d/S25owserver $(OWFS_INSTALL_FUSE_INIT_SYSV) endef $(eval $(autotools-package))
shibajee/buildroot
package/owfs/owfs.mk
mk
mit
2,285
Kernel commit b81693d9149c598302e8eb9c20cb20330d922c8e changed the net_device_ops structure, removing the ndo_set_multicast_list callback. The ndo_set_rx_mode has also been added to this structure. The upshot of these changes is that owl-linux fails to compile with 3.3.x and later kernels. Signed-off-by: Simon Dawson <spdawson@gmail.com> diff -Nurp a/owl_net.c b/owl_net.c --- a/owl_net.c 2012-06-14 10:51:45.000000000 +0100 +++ b/owl_net.c 2012-07-20 13:16:28.772351464 +0100 @@ -384,7 +384,9 @@ static const struct net_device_ops netde #endif /* OWL_CONFIG_IFUPDOWN */ .ndo_start_xmit = owl_net_tx, .ndo_get_stats = owl_net_get_stats, +#if LINUX_VERSION_CODE < KERNEL_VERSION(3,3,0) .ndo_set_multicast_list = NULL, +#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(3,3,0) */ .ndo_tx_timeout = owl_net_tx_timeout, .ndo_set_mac_address = NULL, };
shibajee/buildroot
package/owl-linux/0001-fix-for-linux-3.3.x.patch
patch
mit
923
config BR2_PACKAGE_OWL_LINUX bool "owl-linux" depends on BR2_LINUX_KERNEL depends on (BR2_arm920t || BR2_arm922t || BR2_arm926t) help Linux kernel driver for the H&D Wireless SPB104 SD-card WiFi SIP. owl-linux requires the hidden kernel option WIRELESS_EXT enabled. http://linux.hd-wireless.se/bin/view/Linux/GettingStarted comment "owl-linux needs a Linux kernel to be built" depends on !BR2_LINUX_KERNEL depends on BR2_arm || BR2_armeb comment "owl-linux is only supported on ARM9 architecture" depends on !(BR2_arm920t || BR2_arm922t || BR2_arm926t) depends on BR2_arm || BR2_armeb
shibajee/buildroot
package/owl-linux/Config.in
in
mit
606
# locally computed sha256 a6b1bc6b3900954438a0f1a316bac5f74171125a88c80c35e137f4ca512dedc6 owl-linux-1.0.7.tar.gz
shibajee/buildroot
package/owl-linux/owl-linux.hash
hash
mit
116
################################################################################ # # owl-linux # ################################################################################ OWL_LINUX_VERSION = 1.0.7 OWL_LINUX_SITE = http://linux.hd-wireless.se/pub/Linux/DownloadDrivers OWL_LINUX_LICENSE = PROPRIETARY OWL_LINUX_LICENSE_FILES = LICENSE OWL_LINUX_REDISTRIBUTE = NO $(eval $(kernel-module)) $(eval $(generic-package))
shibajee/buildroot
package/owl-linux/owl-linux.mk
mk
mit
423
From 05b6a7550756ffdced25a6c51cf2222bad9e59e7 Mon Sep 17 00:00:00 2001 Message-Id: <05b6a7550756ffdced25a6c51cf2222bad9e59e7.1399285491.git.baruch@tkos.co.il> From: Baruch Siach <baruch@tkos.co.il> Date: Mon, 5 May 2014 09:32:23 +0300 Subject: [PATCH] Fix build against older pthreads implementations Older pthreads implementations like glibc NPTL prior to version 2.12, and uClibc linuxthreads (both), need _XOPEN_SOURCE to expose pthread_mutexattr_settype() and THREAD_MUTEX_DEFAULT. The value 600 (SuSv3, POSIX.1-2001) is equivalent to _POSIX_C_SOURCE 200112L. Fixes the following build error: CC compat.lo compat.c: In function 'p11_mutex_init': compat.c:164:2: warning: implicit declaration of function 'pthread_mutexattr_settype' [-Wimplicit-function-declaration] compat.c:164:2: warning: nested extern declaration of 'pthread_mutexattr_settype' [-Wnested-externs] compat.c:164:36: error: 'PTHREAD_MUTEX_DEFAULT' undeclared (first use in this function) Patch status: sent upstream Signed-off-by: Baruch Siach <baruch@tkos.co.il> --- common/compat.h | 6 ++++++ common/message.c | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/common/compat.h b/common/compat.h index d7fe414a46bf..fbc1dc1d4f0f 100644 --- a/common/compat.h +++ b/common/compat.h @@ -37,6 +37,12 @@ #include "config.h" +/* + * Oh god. glibc is nasty. Changes behavior and definitions of POSIX + * functions to completely different signatures depending on defines + */ +#define _XOPEN_SOURCE 600 + #include <sys/types.h> #include <sys/stat.h> diff --git a/common/message.c b/common/message.c index 35f2764487a9..e68dfac561c8 100644 --- a/common/message.c +++ b/common/message.c @@ -37,12 +37,6 @@ #include "config.h" -/* - * Oh god. glibc is nasty. Changes behavior and definitions of POSIX - * functions to completely different signatures depending on defines - */ -#define _POSIX_C_SOURCE 200112L - #include "compat.h" #define P11_DEBUG_FLAG P11_DEBUG_LIB #include "debug.h" -- 2.0.0.rc0
shibajee/buildroot
package/p11-kit/0001-Fix-build-against-older-pthreads-implementations.patch
patch
mit
2,020
config BR2_PACKAGE_P11_KIT bool "p11-kit" depends on !BR2_STATIC_LIBS depends on BR2_USE_MMU depends on BR2_TOOLCHAIN_HAS_THREADS select BR2_PACKAGE_LIBFFI select BR2_PACKAGE_LIBTASN1 help Provides a way to load and enumerate PKCS#11 modules. Provides a standard configuration setup for installing PKCS#11 modules in such a way that they're discoverable. http://p11-glue.freedesktop.org/p11-kit.html comment "p11-kit needs a toolchain w/ threads, dynamic library" depends on BR2_USE_MMU depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
shibajee/buildroot
package/p11-kit/Config.in
in
mit
567
# Locally calculated after checking pgp signature sha256 ba726ea8303c97467a33fca50ee79b7b35212964be808ecf9b145e9042fdfaf0 p11-kit-0.23.2.tar.gz
shibajee/buildroot
package/p11-kit/p11-kit.hash
hash
mit
144
################################################################################ # # p11-kit # ################################################################################ P11_KIT_VERSION = 0.23.2 P11_KIT_SITE = http://p11-glue.freedesktop.org/releases P11_KIT_DEPENDENCIES = host-pkgconf libffi libtasn1 P11_KIT_INSTALL_STAGING = YES P11_KIT_CONF_OPTS = --disable-static P11_KIT_CONF_ENV = ac_cv_have_decl_program_invocation_short_name=yes \ ac_cv_have_decl___progname=no P11_KIT_LICENSE = BSD-3c P11_KIT_LICENSE_FILES = COPYING $(eval $(autotools-package))
shibajee/buildroot
package/p11-kit/p11-kit.mk
mk
mit
566
Add support for blackfin arch. Fixes compilation error: ../../../../CPP/myWindows/mySplitCommandLine.cpp:99:8: error: #error ENDIANNESS Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> (Patch sent upstream: https://sourceforge.net/p/p7zip/patches/33/ diff -uNr p7zip_15.14.1.org/C/CpuArch.h p7zip_15.14.1/C/CpuArch.h --- p7zip_15.14.1.org/C/CpuArch.h 2016-02-17 07:27:16.000000000 +0100 +++ p7zip_15.14.1/C/CpuArch.h 2016-06-08 19:47:49.000000000 +0200 @@ -66,6 +66,7 @@ || defined(__MIPSEL__) \ || defined(__MIPSEL) \ || defined(_MIPSEL) \ + || defined(__BFIN__) \ || (defined(__BYTE_ORDER__) && (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)) #define MY_CPU_LE #endif
shibajee/buildroot
package/p7zip/0001-bfin.patch
patch
mit
701
config BR2_PACKAGE_P7ZIP bool "p7zip" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_USE_WCHAR help p7zip is a quick port of the command line version of 7-zip for Unix. (see http://www.7-zip.org) 7-Zip is a file archiver with highest compression ratio. http://sourceforge.net/projects/p7zip comment "p7zip needs a toolchain w/ threads, wchar, C++" depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP
shibajee/buildroot
package/p7zip/Config.in
in
mit
489
# From https://sourceforge.net/projects/p7zip/files/p7zip/ md5 92cca093312b5a71a7be7dc7d1d32509 p7zip_15.14.1_src_all.tar.bz2 sha1 9b15a79f94230fab9b9d4f9f532c723117145c7a p7zip_15.14.1_src_all.tar.bz2
shibajee/buildroot
package/p7zip/p7zip.hash
hash
mit
202
################################################################################ # # p7zip # ################################################################################ P7ZIP_VERSION = 15.14.1 P7ZIP_SOURCE = p7zip_$(P7ZIP_VERSION)_src_all.tar.bz2 P7ZIP_SITE = http://downloads.sourceforge.net/project/p7zip/p7zip/$(P7ZIP_VERSION) P7ZIP_LICENSE = LGPLv2.1+ with unRAR restriction P7ZIP_LICENSE_FILES = DOC/License.txt # p7zip buildsystem is a mess: it plays dirty tricks with CFLAGS and # CXXFLAGS, so we can't pass them. Instead, it accepts ALLFLAGS_C # and ALLFLAGS_CPP as variables to pass the CFLAGS and CXXFLAGS. define P7ZIP_BUILD_CMDS $(MAKE) CC="$(TARGET_CC)" ALLFLAGS_C="$(TARGET_CFLAGS)" \ CXX="$(TARGET_CXX)" ALLFLAGS_CPP="$(TARGET_CXXFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS)" \ -C $(@D) 7zr endef define P7ZIP_INSTALL_TARGET_CMDS $(INSTALL) -D -m 0755 $(@D)/bin/7zr $(TARGET_DIR)/usr/bin/7zr endef $(eval $(generic-package))
shibajee/buildroot
package/p7zip/p7zip.mk
mk
mit
949