-
Notifications
You must be signed in to change notification settings - Fork 35
/
BUILD
36 lines (26 loc) · 853 Bytes
/
BUILD
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
= build pre-reqs =
Packages: automake, autoconf, libtool, gcc, openssl-devel, make
= build steps =
$ autoreconf -ivf
$ ./configure
$ make
# make install
= runtime pre-reqs =
For using tpm-luks with a LUKS key on your rootfs volume: dracut grubby
All uses: cryptsetup gawk coreutils tpm-tools-1.3.8 trousers-0.3.9
tpm-luks requires very recent tpm-tools and trousers versions, likely not
included in your distro. To get these versions, you'll need to install them
from their upstream repositories:
$ git clone git://trousers.git.sourceforge.net/gitroot/trousers/trousers trousers.git
$ git clone git://trousers.git.sourceforge.net/gitroot/trousers/tpm-tools tpm-tools.git
$ cd trousers.git
$ sh bootstrap.sh
$ ./configure
$ make
# make install
$ cd ../tpm-tools.git
$ sh bootstrap.sh
$ ./configure
$ make
# make install
EOF