summaryrefslogtreecommitdiffstats
path: root/rules/ltp-kdump.make
blob: 638bcf970c81b99489a8296b12c5f829562d2872 (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
# -*-makefile-*-
#
# Copyright (C) 2008 by Robert Schwebel <r.schwebel@pengutronix.de>
#           (C) 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
#
# 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_LTP_KDUMP) += ltp-kdump

#
# Paths and names
#
LTP_KDUMP_VERSION	:= $(LTP_BASE_VERSION)
LTP_KDUMP		:= ltp-kdump-$(LTP_BASE_VERSION)
LTP_KDUMP_PKGDIR	= $(PKGDIR)/$(LTP_KDUMP)

# ----------------------------------------------------------------------------
# Extract
# ----------------------------------------------------------------------------

$(STATEDIR)/ltp-kdump.extract:
	@$(call targetinfo)
	@$(call touch)

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

$(STATEDIR)/ltp-kdump.prepare:
	@$(call targetinfo)
	@$(call touch)

# ----------------------------------------------------------------------------
# Compile
# ----------------------------------------------------------------------------

$(STATEDIR)/ltp-kdump.compile:
	@$(call targetinfo)
	@cd $(LTP_BASE_DIR)/testcases/kdump; $(LTP_ENV) $(MAKE) $(PARALLELMFLAGS)
	@$(call touch)

# ----------------------------------------------------------------------------
# Install
# ----------------------------------------------------------------------------

$(STATEDIR)/ltp-kdump.install:
	@$(call targetinfo)
	@mkdir -p $(LTP_KDUMP_PKGDIR)/bin
	@ln -sf $(LTP_KDUMP_PKGDIR)/bin $(LTP_BASE_DIR)/testcases/bin
	@cd $(LTP_BASE_DIR)/testcases/kdump; $(LTP_ENV) $(MAKE) $(PARALLELMFLAGS) install
	@rm $(LTP_BASE_DIR)/testcases/bin
	@$(call touch)

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

$(STATEDIR)/ltp-kdump.targetinstall:
	@$(call targetinfo)

	@$(call install_init, ltp-kdump)
	@$(call install_fixup, ltp-kdump,PRIORITY,optional)
	@$(call install_fixup, ltp-kdump,SECTION,base)
	@$(call install_fixup, ltp-kdump,AUTHOR,"Robert Schwebel <r.schwebel@pengutronix.de>")
	@$(call install_fixup, ltp-kdump,DESCRIPTION,missing)

	@for file in `find $(LTP_KDUMP_PKGDIR)/bin -type f`; do \
		PER=`stat -c "%a" $$file` \
		$(call install_copy, ltp-kdump, 0, 0, $$PER, $$file, $(LTP_BASE_BIN_DIR)/$$file); \
	done


	@$(call install_finish, ltp-kdump)

	@$(call touch)

# vim: syntax=make