From e7f6b2d54c90833a8c6782a95283b8849438b3a9 Mon Sep 17 00:00:00 2001 From: Chen Qi Date: Sun, 9 Oct 2016 10:12:15 +0800 Subject: systemd: avoid boot failures for mips64 If we start a systemd based qemumips64 target with 'pam' enabled in DISTRO_FEATURES, we could not login in successfully. After you provide username and password to the login prompt, the login prompt just comes up again. Besides, there are other boot failures. Append '-O0' flag for mips64 target as a workaround to this problem. [YOCTO #10250] Signed-off-by: Chen Qi --- meta/recipes-core/systemd/systemd.inc | 1 + 1 file changed, 1 insertion(+) (limited to 'meta/recipes-core/systemd/systemd.inc') diff --git a/meta/recipes-core/systemd/systemd.inc b/meta/recipes-core/systemd/systemd.inc index f800f42e97..db588e7336 100644 --- a/meta/recipes-core/systemd/systemd.inc +++ b/meta/recipes-core/systemd/systemd.inc @@ -23,3 +23,4 @@ PV = "230+git${SRCPV}" S = "${WORKDIR}/git" LDFLAGS_append_libc-uclibc = " -lrt -lssp_nonshared -lssp " +CFLAGS_append_mips64 = " -O0" -- cgit 1.2.3-korg