mirror of
https://github.com/openwrt/packages.git
synced 2025-12-23 21:04:33 +04:00
Keeping the major version, bumping just a minor version. It includes various bug fixes and security fixes. For details, see: https://mariadb.com/kb/en/mariadb-10610-release-notes/ https://mariadb.com/kb/en/mariadb-1069-release-notes/ https://mariadb.com/kb/en/mariadb-1068-release-notes/ https://mariadb.com/kb/en/mariadb-1067-release-notes/ https://mariadb.com/kb/en/mariadb-1066-release-notes/ https://mariadb.com/kb/en/mariadb-1065-release-notes/ Following two patches dropped as the issues were fixed in upstream. * 130-c11_atomics.patch * 140-mips-connect-unaligned.patch The rest of the patches were refreshed. Don't need to disable cassandra and tokudb anymore as they were dropped from upstream tarball. Signed-off-by: Michal Hrusecky <michal@hrusecky.net>
12 lines
296 B
Diff
12 lines
296 B
Diff
--- a/scripts/mysql_install_db.sh
|
|
+++ b/scripts/mysql_install_db.sh
|
|
@@ -425,7 +425,7 @@ fi
|
|
|
|
|
|
# Try to determine the hostname
|
|
-hostname=`@HOSTNAME@`
|
|
+hostname=`cat /proc/sys/kernel/hostname`
|
|
|
|
# Check if hostname is valid
|
|
if test "$cross_bootstrap" -eq 0 -a "$in_rpm" -eq 0 -a "$force" -eq 0
|