summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/v86d
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-bsp/v86d')
-rw-r--r--meta/recipes-bsp/v86d/v86d/ar-from-env.patch33
-rwxr-xr-xmeta/recipes-bsp/v86d/v86d/fbsetup3
-rw-r--r--meta/recipes-bsp/v86d/v86d_0.1.10.bb41
3 files changed, 77 insertions, 0 deletions
diff --git a/meta/recipes-bsp/v86d/v86d/ar-from-env.patch b/meta/recipes-bsp/v86d/v86d/ar-from-env.patch
new file mode 100644
index 0000000000..1dcbc71dcc
--- /dev/null
+++ b/meta/recipes-bsp/v86d/v86d/ar-from-env.patch
@@ -0,0 +1,33 @@
1Fix cross link using host-cross ar
2
3If building on 32bit host and creating 64bit libraries, the target
4package builds should not invoke the 32bit hosts's ar. Specifically
5you will get an error message like:
6
7x86_64-linux-gcc -m64 --sysroot=/opt/qemux86-64/tmp/sysroots/qemux86-64 -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -Llibs/x86emu v86_x86emu.o v86_mem.o v86_common.o v86.o -lx86emu -o v86d
8libs/x86emu/libx86emu.a: could not read symbols: Archive has no index; run ranlib to add one
9collect2: error: ld returned 1 exit status
10
11Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
12
13Upstream-Status: Pending
14
15---
16 libs/x86emu/Makefile | 6 +++++-
17 1 file changed, 5 insertions(+), 1 deletion(-)
18
19--- a/libs/x86emu/Makefile
20+++ b/libs/x86emu/Makefile
21@@ -1,7 +1,11 @@
22 OBJS = decode.o fpu.o ops.o ops2.o prim_ops.o sys.o
23
24+ifeq ($(AR),)
25+ AR = ar
26+endif
27+
28 libx86emu.a: $(OBJS)
29- ar rv $@ $+
30+ $(AR) rv $@ $+
31
32 %.o: %.c
33 $(CC) -c $(CFLAGS) -o $@ $<
diff --git a/meta/recipes-bsp/v86d/v86d/fbsetup b/meta/recipes-bsp/v86d/v86d/fbsetup
new file mode 100755
index 0000000000..2a409cc529
--- /dev/null
+++ b/meta/recipes-bsp/v86d/v86d/fbsetup
@@ -0,0 +1,3 @@
1#!/bin/sh
2
3/sbin/modprobe uvesafb
diff --git a/meta/recipes-bsp/v86d/v86d_0.1.10.bb b/meta/recipes-bsp/v86d/v86d_0.1.10.bb
new file mode 100644
index 0000000000..a8f1d08247
--- /dev/null
+++ b/meta/recipes-bsp/v86d/v86d_0.1.10.bb
@@ -0,0 +1,41 @@
1SUMMARY = "User support binary for the uvesafb kernel module"
2HOMEPAGE = "http://dev.gentoo.org/~spock/projects/uvesafb/"
3
4# the copyright info is at the bottom of README, expect break
5LICENSE = "GPLv2"
6LIC_FILES_CHKSUM = "file://README;md5=94ac1971e4f2309dc322d598e7b1f7dd"
7
8DEPENDS = "virtual/kernel"
9RRECOMMENDS_${PN} = "kernel-module-uvesafb"
10PR = "r1"
11
12SRC_URI = "http://distfiles.gentoo.org/distfiles/${BP}.tar.bz2 \
13 file://fbsetup \
14 file://ar-from-env.patch"
15
16SRC_URI[md5sum] = "51c792ba7b874ad8c43f0d3da4cfabe0"
17SRC_URI[sha256sum] = "634964ae18ef68c8493add2ce150e3b4502badeb0d9194b4bd81241d25e6735c"
18
19PACKAGE_ARCH = "${MACHINE_ARCH}"
20COMPATIBLE_HOST = '(i.86|x86_64).*-linux'
21
22INITSCRIPT_NAME = "fbsetup"
23INITSCRIPT_PARAMS = "start 0 S ."
24
25do_configure () {
26 ./configure --with-x86emu
27}
28
29do_compile () {
30 KDIR="${STAGING_DIR_HOST}/usr" make
31}
32
33do_install () {
34 install -d ${D}${base_sbindir}
35 install v86d ${D}${base_sbindir}/
36
37 install -d ${D}${sysconfdir}/init.d/
38 install -m 0755 ${WORKDIR}/fbsetup ${D}${sysconfdir}/init.d/fbsetup
39}
40
41inherit update-rc.d