summaryrefslogtreecommitdiffstats
path: root/rules/pciutils.make
blob: 31eede890b69cee2c0d93dfc544129fc5da10e5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# -*-makefile-*-
#
# Copyright (C) 2006 by Erwin Rol
# Copyright (C) 2009 by Wolfram Sang, Pengutronix
#
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
PACKAGES-$(PTXCONF_HAS_PCI)-$(PTXCONF_PCIUTILS) += pciutils

#
# Paths and names
#
PCIUTILS_VERSION	:= 3.1.2
PCIUTILS		:= pciutils-$(PCIUTILS_VERSION)
PCIUTILS_SUFFIX		:= tar.bz2
PCIUTILS_URL		:= http://ftp.kernel.org/pub/software/utils/pciutils/$(PCIUTILS).$(PCIUTILS_SUFFIX)
PCIUTILS_SOURCE		:= $(SRCDIR)/$(PCIUTILS).$(PCIUTILS_SUFFIX)
PCIUTILS_DIR		:= $(BUILDDIR)/$(PCIUTILS)

# ----------------------------------------------------------------------------
# Get
# ----------------------------------------------------------------------------

$(PCIUTILS_SOURCE):
	@$(call targetinfo)
	@$(call get, PCIUTILS)

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

PCIUTILS_PATH	:= PATH=$(CROSS_PATH)
PCIUTILS_COMPILE_ENV	:= $(CROSS_ENV)

PCIUTILS_MAKEVARS := \
	CROSS_COMPILE=$(COMPILER_PREFIX) \
	PREFIX=/usr \
	SBINDIR='\$$(PREFIX)/bin' \
	HOST=$(PTXCONF_ARCH_STRING)--linux \
	RELEASE=$(PTXCONF_KERNEL_VERSION) \
	STRIP= \
	DNS=no

ifdef PTXCONF_PCIUTILS_COMPRESS
PCIUTILS_MAKEVARS += ZLIB=yes
else
PCIUTILS_MAKEVARS += ZLIB=no
endif

$(STATEDIR)/pciutils.prepare:
	@$(call targetinfo)
	@$(call touch)

# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------

$(STATEDIR)/pciutils.targetinstall:
	@$(call targetinfo)

	@$(call install_init, pciutils)
	@$(call install_fixup,pciutils,PACKAGE,pciutils)
	@$(call install_fixup,pciutils,PRIORITY,optional)
	@$(call install_fixup,pciutils,VERSION,$(PCIUTILS_VERSION))
	@$(call install_fixup,pciutils,SECTION,base)
	@$(call install_fixup,pciutils,AUTHOR,"Robert Schwebel <r.schwebel@pengutronix.de>")
	@$(call install_fixup,pciutils,DEPENDS,)
	@$(call install_fixup,pciutils,DESCRIPTION,missing)

	@$(call install_copy, pciutils, 0, 0, 0755, -, /usr/bin/lspci)
	@$(call install_copy, pciutils, 0, 0, 0755, -, /usr/bin/setpci)
ifdef PTXCONF_PCIUTILS_COMPRESS
	@$(call install_copy, pciutils, 0, 0, 0644, -, \
		/usr/share/pci.ids.gz, n)
else
	@gunzip -c $(PCIUTILS_PKGDIR)/usr/share/pci.ids.gz > \
		$(PCIUTILS_PKGDIR)/usr/share/pci.ids
	@$(call install_copy, pciutils, 0, 0, 0644, -, \
		/usr/share/pci.ids, n)
endif

	@$(call install_finish,pciutils)

	@$(call touch)

# vim: syntax=make