update buildroot to 2017.02.11
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
Do not access DB_CONFIG when db_home is not set
|
||||
|
||||
Fixes CVE-2017-10140:
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=1464032#c9
|
||||
|
||||
Downloaded from
|
||||
http://pkgs.fedoraproject.org/cgit/rpms/libdb.git/commit/?id=8047fa8580659fcae740c25e91b490539b8453eb
|
||||
|
||||
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
|
||||
--- db-5.3.28/src/env/env_open.c.old 2017-06-26 10:32:11.011419981 +0200
|
||||
+++ db-5.3.28/src/env/env_open.c 2017-06-26 10:32:46.893721233 +0200
|
||||
@@ -473,7 +473,7 @@
|
||||
env->db_mode = mode == 0 ? DB_MODE_660 : mode;
|
||||
|
||||
/* Read the DB_CONFIG file. */
|
||||
- if ((ret = __env_read_db_config(env)) != 0)
|
||||
+ if (env->db_home != NULL && (ret = __env_read_db_config(env)) != 0)
|
||||
return (ret);
|
||||
|
||||
/*
|
||||
21
bsp/buildroot-2017.02.11/package/berkeleydb/Config.in
Normal file
21
bsp/buildroot-2017.02.11/package/berkeleydb/Config.in
Normal file
@@ -0,0 +1,21 @@
|
||||
config BR2_PACKAGE_BERKELEYDB
|
||||
bool "berkeleydb"
|
||||
help
|
||||
The Berkeley database. A very common library for database
|
||||
applications.
|
||||
|
||||
http://www.sleepycat.com/products/db.shtml
|
||||
|
||||
if BR2_PACKAGE_BERKELEYDB
|
||||
|
||||
config BR2_PACKAGE_BERKELEYDB_COMPAT185
|
||||
bool "DB 1.85 compatibility"
|
||||
help
|
||||
Build and install DB 1.85 compatibility API.
|
||||
|
||||
config BR2_PACKAGE_BERKELEYDB_TOOLS
|
||||
bool "install tools"
|
||||
help
|
||||
Install berkeleydb tools, mostly useful for debugging purposes.
|
||||
|
||||
endif
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 76a25560d9e52a198d37a31440fd07632b5f1f8f9f2b6d5438f4bc3e7c9013ef db-5.3.28.NC.tar.gz
|
||||
sha256 b78815181a53241f9347c6b47d1031fd669946f863e1edc807a291354cec024b LICENSE
|
||||
70
bsp/buildroot-2017.02.11/package/berkeleydb/berkeleydb.mk
Normal file
70
bsp/buildroot-2017.02.11/package/berkeleydb/berkeleydb.mk
Normal file
@@ -0,0 +1,70 @@
|
||||
################################################################################
|
||||
#
|
||||
# berkeleydb
|
||||
#
|
||||
################################################################################
|
||||
|
||||
# Since BerkeleyDB version 6 and above are licensed under the Affero
|
||||
# GPL (AGPL), we want to keep this 'bdb' package at version 5.x to
|
||||
# avoid licensing issues.
|
||||
# BerkeleyDB version 6 or above should be provided by a dedicated
|
||||
# package instead.
|
||||
BERKELEYDB_VERSION = 5.3.28
|
||||
BERKELEYDB_SITE = http://download.oracle.com/berkeley-db
|
||||
BERKELEYDB_SOURCE = db-$(BERKELEYDB_VERSION).NC.tar.gz
|
||||
BERKELEYDB_SUBDIR = build_unix
|
||||
BERKELEYDB_LICENSE = BerkeleyDB License
|
||||
BERKELEYDB_LICENSE_FILES = LICENSE
|
||||
BERKELEYDB_INSTALL_STAGING = YES
|
||||
BERKELEYDB_BINARIES = db_archive db_checkpoint db_deadlock db_dump \
|
||||
db_hotbackup db_load db_log_verify db_printlog db_recover db_replicate \
|
||||
db_stat db_tuner db_upgrade db_verify
|
||||
|
||||
# Internal error, aborting at dw2gencfi.c:214 in emit_expr_encoded
|
||||
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79509
|
||||
ifeq ($(BR2_m68k_cf),y)
|
||||
BERKELEYDB_CONF_ENV += CXXFLAGS="$(TARGET_CXXFLAGS) -fno-dwarf2-cfi-asm"
|
||||
endif
|
||||
|
||||
# build directory can't be the directory where configure are there, so..
|
||||
define BERKELEYDB_CONFIGURE_CMDS
|
||||
(cd $(@D)/build_unix; rm -rf config.cache; \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
$(TARGET_CONFIGURE_ARGS) \
|
||||
$(BERKELEYDB_CONF_ENV) \
|
||||
../dist/configure $(QUIET) \
|
||||
--target=$(GNU_TARGET_NAME) \
|
||||
--host=$(GNU_TARGET_NAME) \
|
||||
--build=$(GNU_HOST_NAME) \
|
||||
--prefix=/usr \
|
||||
--exec-prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--with-gnu-ld \
|
||||
$(if $(BR2_INSTALL_LIBSTDCPP),--enable-cxx,--disable-cxx) \
|
||||
--disable-java \
|
||||
--disable-tcl \
|
||||
$(if $(BR2_PACKAGE_BERKELEYDB_COMPAT185),--enable-compat185,--disable-compat185) \
|
||||
$(SHARED_STATIC_LIBS_OPTS) \
|
||||
--with-pic \
|
||||
--enable-o_direct \
|
||||
$(if $(BR2_TOOLCHAIN_HAS_THREADS),--enable-mutexsupport,--disable-mutexsupport) \
|
||||
)
|
||||
endef
|
||||
|
||||
ifneq ($(BR2_PACKAGE_BERKELEYDB_TOOLS),y)
|
||||
|
||||
define BERKELEYDB_REMOVE_TOOLS
|
||||
rm -f $(addprefix $(TARGET_DIR)/usr/bin/, $(BERKELEYDB_BINARIES))
|
||||
endef
|
||||
|
||||
BERKELEYDB_POST_INSTALL_TARGET_HOOKS += BERKELEYDB_REMOVE_TOOLS
|
||||
|
||||
endif
|
||||
|
||||
define BERKELEYDB_REMOVE_DOCS
|
||||
rm -rf $(TARGET_DIR)/usr/docs
|
||||
endef
|
||||
|
||||
BERKELEYDB_POST_INSTALL_TARGET_HOOKS += BERKELEYDB_REMOVE_DOCS
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user