v86d_0.1.10.bb 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. SUMMARY = "User support binary for the uvesafb kernel module"
  2. HOMEPAGE = "https://tracker.debian.org/pkg/v86d"
  3. DESCRIPTION = "v86d provides a backend for kernel drivers that need to execute x86 BIOS code. The code is executed in a controlled environment and the results are passed back to the kernel via the netlink interface."
  4. # the copyright info is at the bottom of README, expect break
  5. LICENSE = "GPL-2.0-only"
  6. LIC_FILES_CHKSUM = "file://README;md5=94ac1971e4f2309dc322d598e7b1f7dd"
  7. RRECOMMENDS:${PN} = "kernel-module-uvesafb"
  8. SRC_URI = "http://snapshot.debian.org/archive/debian/20110427T035506Z/pool/main/v/${BPN}/${BPN}_${PV}.orig.tar.gz \
  9. file://Update-x86emu-from-X.org.patch \
  10. file://ar-from-env.patch \
  11. file://Support-for-cross-compilation.patch \
  12. "
  13. SRC_URI[md5sum] = "889686ec8424468fe0d205742e77a4c2"
  14. SRC_URI[sha256sum] = "93575c82e4307d8c4c370ec6b767f5cf87e527b2378146d652a6d8e25d5bdbc5"
  15. PACKAGE_ARCH = "${MACHINE_ARCH}"
  16. COMPATIBLE_HOST = '(i.86|x86_64).*-linux'
  17. do_configure () {
  18. TARGET_ARCH="${TARGET_ARCH}" ./configure --with-x86emu
  19. }
  20. do_compile () {
  21. KDIR="${STAGING_DIR_HOST}/usr" make
  22. }
  23. do_install () {
  24. install -d ${D}${base_sbindir}
  25. install v86d ${D}${base_sbindir}/
  26. }