Performs a verified launch using Intel(R) TXT
http://sourceforge.net/projects/tboot/
Trusted Boot (tboot) is an open source, pre-kernel/VMM module that uses
Intel(R) Trusted Execution Technology (Intel(R) TXT) to perform a measured
and verified launch of an OS kernel/VMM.
- Developed at security
- Sources inherited from project openSUSE:Factory
-
2
derived packages
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout openSUSE:Leap:16.0:FactoryCandidates/tboot && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
tboot-1.11.4.tar.gz | 0000910230 889 KB | |
tboot-bsc#1207833-copy-mbi.patch | 0000000753 753 Bytes | |
tboot-distributor.patch | 0000000962 962 Bytes | |
tboot-fix-alloc-size-warning.patch | 0000000582 582 Bytes | |
tboot-grub2-fix-menu-in-xen-host-server.patch | 0000004053 3.96 KB | |
tboot-grub2-fix-xen-submenu-name.patch | 0000000826 826 Bytes | |
tboot-grub2-refuse-secure-boot.patch | 0000002124 2.07 KB | |
tboot.changes | 0000030690 30 KB | |
tboot.rpmlintrc | 0000000031 31 Bytes | |
tboot.spec | 0000003424 3.34 KB |
Latest Revision
Dominique Leuenberger (dimstar_suse)
accepted
request 1196424
from
Matthias Gerstner (mgerstner)
(revision 50)
- add tboot-fix-alloc-size-warning.patch: newest GCC spits out this error: ``` pconf_legacy.c: In function ‘create’: pconf_legacy.c:327:16: error: allocation of insufficient size ‘20’ for type ‘tb_hash_t’ with size ‘64’ [-Werror=alloc-size] 327 | digest = malloc(SHA1_DIGEST_SIZE); | ^ ``` There's a union data type behind this. It's not an actual error. To get rid of the warning, the patch allocates the full union size, thereby wasting a bit of memory.
Comments 0