1SUMMARY = "A script that allows Google internal tools to recognize the host VM as a Trout device." 2 3LICENSE = "Apache-2.0" 4 5inherit allarch 6 7SRC_URI = " \ 8 file://getprop \ 9" 10 11do_install() { 12 install -d ${D}${prefix}/local/bin 13 install -m 0755 ${WORKDIR}/getprop ${D}${prefix}/local/bin 14} 15 16FILES_${PN} += "${prefix}/local/bin/getprop" 17