diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 3d5a9b6cad..c6e4efd6d9 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -3534,6 +3534,38 @@
+
+ Making Images More Secure
+
+
+ The Yocto Project has security flags that you can enable that
+ help make your build output more secure.
+ The security flags are in the
+ meta/conf/distro/include/security_flags.inc
+ file in your
+ Source Directory
+ (e.g. poky).
+
+
+
+ These GCC/LD flags enable more secure code generation.
+ By including the security_flags.inc
+ file, you enable flags to the compiler and linker that cause
+ them to generate more secure code.
+
+ These flags are enabled by default in the
+ poky-lsb distribution.
+
+ Use the following line in your
+ local.conf file
+ to enable the security compiler and
+ linker flags to your build:
+
+ require conf/distro/include/security_flags.inc
+
+
+
+
Creating Your Own Distribution
diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index 7539136734..22d7f13a0a 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -1118,6 +1118,13 @@
This variable evaluates to the same as
TARGET_CFLAGS.
+
+
+ For information on flags that help with creating more
+ secure code, see the
+ "Making Images More Secure"
+ section in the Yocto Project Development Manual.
+