diff options
author | Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> | 2012-10-18 13:03:49 +0000 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-10-19 11:42:14 +0200 |
commit | 44cb71bbc98ab351748b300023cdae7a01ce5c7b (patch) | |
tree | a6e43bc9244c4a95009c83b3e3385dcf815796b6 /meta-oe/recipes-support/mysql | |
parent | 673b3b66273837de43f3de6268d5686f7fe8367b (diff) | |
download | meta-openembedded-44cb71bbc98ab351748b300023cdae7a01ce5c7b.tar.gz |
mysql: start at runlevel 5 not S
Without that change target system had to be restarted to get MySQL
running or it had to be run by hand. Reason was simple: mysql init
script was starting before S99configure when package was not yet
configured.
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-support/mysql')
-rw-r--r-- | meta-oe/recipes-support/mysql/mysql5_5.1.40.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/mysql/mysql5_5.1.40.inc b/meta-oe/recipes-support/mysql/mysql5_5.1.40.inc index 40b6b01cf..72e9ef879 100644 --- a/meta-oe/recipes-support/mysql/mysql5_5.1.40.inc +++ b/meta-oe/recipes-support/mysql/mysql5_5.1.40.inc | |||
@@ -5,7 +5,7 @@ LICENSE = "GPLv2" | |||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=477ab0a4c8ca64b482b3f2a365d0fdfa" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=477ab0a4c8ca64b482b3f2a365d0fdfa" |
6 | 6 | ||
7 | DEPENDS = "ncurses" | 7 | DEPENDS = "ncurses" |
8 | PR = "r8" | 8 | PR = "r9" |
9 | 9 | ||
10 | SRC_URI = "http://downloads.mysql.com/archives/mysql-5.1/mysql-${PV}.tar.gz \ | 10 | SRC_URI = "http://downloads.mysql.com/archives/mysql-5.1/mysql-${PV}.tar.gz \ |
11 | file://configure.in.patch \ | 11 | file://configure.in.patch \ |
@@ -26,7 +26,7 @@ inherit autotools binconfig update-rc.d | |||
26 | 26 | ||
27 | INITSCRIPT_PACKAGES = "${PN}-server" | 27 | INITSCRIPT_PACKAGES = "${PN}-server" |
28 | INITSCRIPT_NAME = "mysqld" | 28 | INITSCRIPT_NAME = "mysqld" |
29 | INITSCRIPT_PARAMS = "start 45 S . stop 45 0 6 1 ." | 29 | INITSCRIPT_PARAMS = "start 45 5 . stop 45 0 6 1 ." |
30 | 30 | ||
31 | export ac_cv_path_PS="/bin/ps" | 31 | export ac_cv_path_PS="/bin/ps" |
32 | export ac_cv_FIND_PROC="/bin/ps p \$\$PID | grep -v grep | grep mysqld > /dev/null" | 32 | export ac_cv_FIND_PROC="/bin/ps p \$\$PID | grep -v grep | grep mysqld > /dev/null" |