qemu-helper-native_1.0.bb 653 B

123456789101112131415161718192021222324
  1. SUMMARY = "Helper utilities needed by the runqemu script"
  2. LICENSE = "GPL-2.0-only"
  3. RDEPENDS:${PN} = "qemu-system-native"
  4. LIC_FILES_CHKSUM = "file://${S}/qemu-oe-bridge-helper.c;endline=4;md5=ae00a3bab86f2caaa8462eacda77f4d7"
  5. SRC_URI = "file://qemu-oe-bridge-helper.c"
  6. S = "${WORKDIR}/sources"
  7. UNPACKDIR = "${S}"
  8. inherit native
  9. do_compile() {
  10. ${CC} ${CFLAGS} ${LDFLAGS} -Wall qemu-oe-bridge-helper.c -o qemu-oe-bridge-helper
  11. }
  12. do_install() {
  13. install -d ${D}${bindir}
  14. install qemu-oe-bridge-helper ${D}${bindir}/
  15. }
  16. DEPENDS += "qemu-system-native unfs3-native pseudo-native"
  17. addtask addto_recipe_sysroot after do_populate_sysroot before do_build