summaryrefslogtreecommitdiffstats
path: root/recipes-support/lshw/lshw_02.17.bb
diff options
context:
space:
mode:
authorAnatoliy Odukha <aodukha@gmail.com>2020-11-03 12:53:23 +0200
committerGitHub <noreply@github.com>2020-11-03 12:53:23 +0200
commit075ca14b8800dcae1c2532389e5dd219f6e7c2dd (patch)
treecfdfcb7e6b159a75c5107044c0ccf4c2e9f27664 /recipes-support/lshw/lshw_02.17.bb
parentba6a6d933b4798e98396ebbdbdc5103f9ad1d8ad (diff)
parent0660f88d8c38ced2cb82f4b8d801a6386169a461 (diff)
downloadmeta-updater-075ca14b8800dcae1c2532389e5dd219f6e7c2dd.tar.gz
Merge pull request #785 from ricardosalveti/sync-dunfell
Sync recipe/append removals from the dunfell branch
Diffstat (limited to 'recipes-support/lshw/lshw_02.17.bb')
-rw-r--r--recipes-support/lshw/lshw_02.17.bb36
1 files changed, 0 insertions, 36 deletions
diff --git a/recipes-support/lshw/lshw_02.17.bb b/recipes-support/lshw/lshw_02.17.bb
deleted file mode 100644
index 1ecc4c1..0000000
--- a/recipes-support/lshw/lshw_02.17.bb
+++ /dev/null
@@ -1,36 +0,0 @@
1# From meta-linaro
2# http://git.linaro.org/openembedded/meta-linaro.git
3
4DESCRIPTION = "A small tool to provide detailed information on the hardware \
5configuration of the machine. It can report exact memory configuration, \
6firmware version, mainboard configuration, CPU version and speed, cache \
7configuration, bus speed, etc. on DMI-capable or EFI systems."
8SUMMARY = "Hardware lister"
9HOMEPAGE = "http://ezix.org/project/wiki/HardwareLiSter"
10SECTION = "console/tools"
11LICENSE = "GPLv2+"
12LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
13DEPENDS = "pciutils \
14 usbutils"
15COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux"
16
17SRC_URI="http://ezix.org/software/files/lshw-B.${PV}.tar.gz \
18 file://cross-compile.patch \
19 file://ldflags.patch \
20 "
21
22SRC_URI[md5sum] = "a5feb796cb302850eaf5b4530888e3ed"
23SRC_URI[sha256sum] = "eb9cc053fa0f1e78685cb695596e73931bfb55d2377e3bc3b8b94aff4c5a489c"
24
25S="${WORKDIR}/lshw-B.${PV}"
26
27do_compile() {
28 # build core only - don't ship gui
29 oe_runmake -C src core
30}
31
32do_install() {
33 oe_runmake install DESTDIR=${D}
34 # data files provided by dependencies
35 rm -rf ${D}/usr/share/lshw
36}