* [PATCH 0/4] Further fixes for riscv64
@ 2018-03-11 8:07 Khem Raj
2018-03-11 8:07 ` [PATCH 1/4] tcmode-default.inc: Define QEMUVERSION and softly pin it Khem Raj
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Khem Raj @ 2018-03-11 8:07 UTC (permalink / raw)
To: openembedded-core
Fixes to get core-image-full-cmdline to build
The following changes since commit e4da78229f0bd67fd34928eafe48dbdc9e8da050:
e2fsprogs: Add comment on why touch is needed (2018-03-09 11:09:39 -0800)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib kraj/riscv64-fixes-2
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=kraj/riscv64-fixes-2
Khem Raj (4):
tcmode-default.inc: Define QEMUVERSION and softly pin it
pcmanfm: Drop COMPATIBLE_HOST setting
site/riscv: Shunt the realloc configure test for startup-notification
risc-v: Pin oldest kernel to 4.15 for the new kid
meta/conf/bitbake.conf | 2 ++
meta/conf/distro/include/tcmode-default.inc | 5 +++++
meta/recipes-sato/pcmanfm/pcmanfm_1.2.5.bb | 3 ---
meta/site/riscv32-linux | 2 ++
meta/site/riscv64-linux | 2 ++
5 files changed, 11 insertions(+), 3 deletions(-)
--
2.16.2
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 1/4] tcmode-default.inc: Define QEMUVERSION and softly pin it
2018-03-11 8:07 [PATCH 0/4] Further fixes for riscv64 Khem Raj
@ 2018-03-11 8:07 ` Khem Raj
2018-03-11 8:07 ` [PATCH 2/4] pcmanfm: Drop COMPATIBLE_HOST setting Khem Raj
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2018-03-11 8:07 UTC (permalink / raw)
To: openembedded-core
This provides ability to surgically override qemu for certain
machines which are provided by external layers.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
meta/conf/distro/include/tcmode-default.inc | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/meta/conf/distro/include/tcmode-default.inc b/meta/conf/distro/include/tcmode-default.inc
index 5c6681fb9d..7862edb633 100644
--- a/meta/conf/distro/include/tcmode-default.inc
+++ b/meta/conf/distro/include/tcmode-default.inc
@@ -28,6 +28,7 @@ BINUVERSION ?= "2.30%"
GDBVERSION ?= "8.0%"
GLIBCVERSION ?= "2.27%"
LINUXLIBCVERSION ?= "4.15%"
+QEMUVERSION ?= "2.11%"
PREFERRED_VERSION_gcc ?= "${GCCVERSION}"
PREFERRED_VERSION_gcc-cross-${TARGET_ARCH} ?= "${GCCVERSION}"
@@ -64,6 +65,10 @@ PREFERRED_VERSION_glibc-initial ?= "${GLIBCVERSION}"
PREFERRED_VERSION_nativesdk-glibc-initial ?= "${GLIBCVERSION}"
PREFERRED_VERSION_cross-localedef-native ?= "${GLIBCVERSION}"
+
+PREFERRED_VERSION_qemu ?= "${QEMUVERSION}"
+PREFERRED_VERSION_qemu-native ?= "${QEMUVERSION}"
+PREFERRED_VERSION_nativesdk-qemu ?= "${QEMUVERSION}"
# Setup suitable toolchain flags
require conf/distro/include/as-needed.inc
--
2.16.2
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/4] pcmanfm: Drop COMPATIBLE_HOST setting
2018-03-11 8:07 [PATCH 0/4] Further fixes for riscv64 Khem Raj
2018-03-11 8:07 ` [PATCH 1/4] tcmode-default.inc: Define QEMUVERSION and softly pin it Khem Raj
@ 2018-03-11 8:07 ` Khem Raj
2018-03-11 8:07 ` [PATCH 3/4] site/riscv: Shunt the realloc configure test for startup-notification Khem Raj
2018-03-11 8:07 ` [PATCH 4/4] risc-v: Pin oldest kernel to 4.15 for the new kid Khem Raj
3 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2018-03-11 8:07 UTC (permalink / raw)
To: openembedded-core
We have all core architectures in there its almost redundant
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
meta/recipes-sato/pcmanfm/pcmanfm_1.2.5.bb | 3 ---
1 file changed, 3 deletions(-)
diff --git a/meta/recipes-sato/pcmanfm/pcmanfm_1.2.5.bb b/meta/recipes-sato/pcmanfm/pcmanfm_1.2.5.bb
index 75ff7731be..4127a07046 100644
--- a/meta/recipes-sato/pcmanfm/pcmanfm_1.2.5.bb
+++ b/meta/recipes-sato/pcmanfm/pcmanfm_1.2.5.bb
@@ -9,9 +9,6 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
SECTION = "x11"
DEPENDS = "gtk+3 startup-notification libfm intltool-native gettext-native glib-2.0-native"
-
-COMPATIBLE_HOST = '(x86_64.*|i.86.*|aarch64.*|arm.*|mips.*|powerpc.*|sh.*)-(linux|freebsd.*)'
-
SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/pcmanfm-${PV}.tar.xz \
file://gnome-fs-directory.png \
file://gnome-fs-regular.png \
--
2.16.2
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 3/4] site/riscv: Shunt the realloc configure test for startup-notification
2018-03-11 8:07 [PATCH 0/4] Further fixes for riscv64 Khem Raj
2018-03-11 8:07 ` [PATCH 1/4] tcmode-default.inc: Define QEMUVERSION and softly pin it Khem Raj
2018-03-11 8:07 ` [PATCH 2/4] pcmanfm: Drop COMPATIBLE_HOST setting Khem Raj
@ 2018-03-11 8:07 ` Khem Raj
2018-03-11 8:07 ` [PATCH 4/4] risc-v: Pin oldest kernel to 4.15 for the new kid Khem Raj
3 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2018-03-11 8:07 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
meta/site/riscv32-linux | 2 ++
meta/site/riscv64-linux | 2 ++
2 files changed, 4 insertions(+)
diff --git a/meta/site/riscv32-linux b/meta/site/riscv32-linux
index a496bd1aca..138aeb0a11 100644
--- a/meta/site/riscv32-linux
+++ b/meta/site/riscv32-linux
@@ -2,3 +2,5 @@
glib_cv_stack_grows=${glib_cv_stack_grows=no}
glib_cv_uscore=${glib_cv_uscore=no}
+# startup-notification
+lf_cv_sane_realloc=${lf_cv_sane_realloc=yes}
diff --git a/meta/site/riscv64-linux b/meta/site/riscv64-linux
index a496bd1aca..138aeb0a11 100644
--- a/meta/site/riscv64-linux
+++ b/meta/site/riscv64-linux
@@ -2,3 +2,5 @@
glib_cv_stack_grows=${glib_cv_stack_grows=no}
glib_cv_uscore=${glib_cv_uscore=no}
+# startup-notification
+lf_cv_sane_realloc=${lf_cv_sane_realloc=yes}
--
2.16.2
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 4/4] risc-v: Pin oldest kernel to 4.15 for the new kid
2018-03-11 8:07 [PATCH 0/4] Further fixes for riscv64 Khem Raj
` (2 preceding siblings ...)
2018-03-11 8:07 ` [PATCH 3/4] site/riscv: Shunt the realloc configure test for startup-notification Khem Raj
@ 2018-03-11 8:07 ` Khem Raj
3 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2018-03-11 8:07 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
meta/conf/bitbake.conf | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 7007a6e9b6..93f57f3c9e 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -423,6 +423,8 @@ SDKPATHNATIVE = "${SDKPATH}/sysroots/${SDK_SYS}"
OLDEST_KERNEL = "3.2.0"
OLDEST_KERNEL_aarch64 = "3.14"
OLDEST_KERNEL_nios2 = "3.19"
+OLDEST_KERNEL_riscv32 = "4.15"
+OLDEST_KERNEL_riscv64 = "4.15"
# SDK_OLDEST_KERNEL can't be set using overrides since there are
# none for the SDK architecture. Best to set it from a machine-sdk
--
2.16.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-03-11 8:08 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-11 8:07 [PATCH 0/4] Further fixes for riscv64 Khem Raj
2018-03-11 8:07 ` [PATCH 1/4] tcmode-default.inc: Define QEMUVERSION and softly pin it Khem Raj
2018-03-11 8:07 ` [PATCH 2/4] pcmanfm: Drop COMPATIBLE_HOST setting Khem Raj
2018-03-11 8:07 ` [PATCH 3/4] site/riscv: Shunt the realloc configure test for startup-notification Khem Raj
2018-03-11 8:07 ` [PATCH 4/4] risc-v: Pin oldest kernel to 4.15 for the new kid Khem Raj
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox