summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJia Zhang <qianyue.zj@alibaba-inc.com>2017-12-04 12:25:12 +0800
committerJia Zhang <qianyue.zj@alibaba-inc.com>2017-12-04 12:25:12 +0800
commit00324b6b3e2bb7f13e840471e21bc2db8ed8732d (patch)
treeec69775d3b70d288259f710a00fcc1b0cbcc9a80
parenta22324542dd81c2bbd3aefbb58a5a0e4cc5d759a (diff)
downloadmeta-secure-core-00324b6b3e2bb7f13e840471e21bc2db8ed8732d.tar.gz
README: update README
Signed-off-by: Jia Zhang <qianyue.zj@alibaba-inc.com>
-rw-r--r--README11
-rw-r--r--README.md4
2 files changed, 12 insertions, 3 deletions
diff --git a/README b/README
index 4c99579..678e200 100644
--- a/README
+++ b/README
@@ -75,8 +75,10 @@ The full features in meta-secure-core can be configured with these definitions
75in local.conf: 75in local.conf:
76 76
77INITRAMFS_IMAGE = "secure-core-image-initramfs" 77INITRAMFS_IMAGE = "secure-core-image-initramfs"
78DISTRO_FEATURES_NATIVE_append += " ima tpm tpm2 efi-secure-boot luks" 78DISTRO_FEATURES_NATIVE_append += "systemd ima tpm tpm2 efi-secure-boot luks"
79DISTRO_FEATURES_append += " ima tpm tpm2 efi-secure-boot luks" 79DISTRO_FEATURES_append += "systemd ima tpm tpm2 efi-secure-boot luks modsign"
80MACHINE_FEATURES_NATIVE_append += "efi"
81MACHINE_FEATURES_append += "efi"
80INHERIT += "sign_rpm_ext" 82INHERIT += "sign_rpm_ext"
81SECURE_CORE_IMAGE_EXTRA_INSTALL ?= "\ 83SECURE_CORE_IMAGE_EXTRA_INSTALL ?= "\
82 packagegroup-efi-secure-boot \ 84 packagegroup-efi-secure-boot \
@@ -94,3 +96,8 @@ The meta-secure-core provides an image called secure-core-image. Run the
94following command to build it. 96following command to build it.
95 97
96 $ bitbake secure-core-image 98 $ bitbake secure-core-image
99
100Reference
101=========
102
103[SecureCore - a reference implementation based on meta-secure-core](https://github.com/jiazhang0/SecureCore)
diff --git a/README.md b/README.md
index 9ac48a1..518c3a9 100644
--- a/README.md
+++ b/README.md
@@ -79,4 +79,6 @@ This feature provides the integrity verification for the RPM package.
79 79
80### Building the meta-secure-core layer 80### Building the meta-secure-core layer
81This layer should be added to the bblayers.conf file. To enable certain 81This layer should be added to the bblayers.conf file. To enable certain
82feature provided by this layer, add the feature to the local.conf file. 82feature provided by this layer, add the feature to the local.conf file.
83
84A reference implementation based on this layer is [available](https://github.com/jiazhang0/SecureCore).