Skip to content

Commit 4225d75

Browse files
cyrilbur-ibmjk-ozlabs
authored andcommitted
debian: add debian files to create an opal-gard package
Will make an opal-gard package .deb file which just contains the gard utility. Signed-off-by: Cyril Bur <[email protected]>
1 parent fab2b3e commit 4225d75

6 files changed

+57
-0
lines changed

debian/control

+8
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,11 @@ Description: OPAL Processor Recovery Diagnostics daemon
1616
This package provides a daemon to load and run the OpenPower firmware's
1717
Processor Recovery Diagnostics binary. This is responsible for runtime
1818
maintenance of Power hardware.
19+
20+
Package: opal-utils
21+
Architecture: any
22+
Depends: ${shlibs:Depends}, ${misc:Depends}
23+
Description: OPAL firmware utilities
24+
.
25+
This package contains the 'gard' utility, to read, parse and clear hardware
26+
gard partitions on OpenPower platforms.

debian/opal-utils.docs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
README

debian/opal-utils.install

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
usr/sbin/opal-gard usr/sbin/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
From 5f3cfd97cc9304d25c65301c708fa5dd0a5e96c6 Mon Sep 17 00:00:00 2001
2+
From: Cyril Bur <[email protected]>
3+
Date: Thu, 4 Jun 2015 12:03:36 +1000
4+
Subject: [PATCH] external/gard: add Makefile targets to make debian packages
5+
6+
The Makefile is missing a install target which will be needed to package and
7+
distribute into ubuntu.
8+
9+
Added a simple install target.
10+
11+
Signed-off-by: Cyril Bur <[email protected]>
12+
Signed-off-by: Stewart Smith <[email protected]>
13+
---
14+
external/gard/Makefile | 8 ++++++++
15+
1 file changed, 8 insertions(+)
16+
17+
diff --git a/external/gard/Makefile b/external/gard/Makefile
18+
index 318501e..4f0400e 100644
19+
--- a/external/gard/Makefile
20+
+++ b/external/gard/Makefile
21+
@@ -1,5 +1,8 @@
22+
# This tool is a linux userland tool and should be completely stand alone
23+
24+
+prefix = /usr/local/
25+
+sbindir = $(prefix)/sbin
26+
+
27+
CC = $(CROSS_COMPILE)gcc
28+
CFLAGS = -m64 -Werror -Wall -g2 -ggdb
29+
LDFLAGS = -m64
30+
@@ -21,6 +24,11 @@ all: $(EXE)
31+
$(EXE): $(OBJS)
32+
$(LINK.o) -o $@ $^
33+
34+
+install: all
35+
+ install -D gard $(DESTDIR)$(sbindir)/opal-gard
36+
+
37+
clean:
38+
rm -f $(OBJS) $(EXE) *.d
39+
40+
+distclean: clean
41+
+
42+
--
43+
1.9.1
44+

debian/patches/series

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0001-external-gard-add-Makefile-targets-to-make-debian-pa.patch

debian/rules

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ export DH_VERBOSE=1
99

1010
override_dh_auto_build:
1111
make -C external/opal-prd/
12+
make -C external/gard/
1213

1314
override_dh_auto_install:
1415
make -C external/opal-prd/ prefix=/usr DESTDIR=../../debian/tmp/ install
16+
make -C external/gard/ prefix=/usr DESTDIR=../../debian/tmp/ install

0 commit comments

Comments
 (0)