+2013-09-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * gdb.texinfo (MiniDebugInfo): Fix two trailing dots.
+
 2013-08-27  Pedro Alves  <pedro@codesourcery.com>
            Yao Qi  <yao@codesourcery.com>
 
 
 
 @smallexample
 # Extract the dynamic symbols from the main binary, there is no need
-# to also have these in the normal symbol table
+# to also have these in the normal symbol table.
 nm -D @var{binary} --format=posix --defined-only \
   | awk '@{ print $1 @}' | sort > dynsyms
 
-# Extract all the text (i.e. function) symbols from the debuginfo .
+# Extract all the text (i.e. function) symbols from the debuginfo.
 nm @var{binary} --format=posix --defined-only \
   | awk '@{ if ($2 == "T" || $2 == "t") print $1 @}' \
   | sort > funcsyms
 
+2013-09-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * gdb.base/gnu-debugdata.exp (strip): Add -R .comment.
+       (addlink): Add comment.
+
 2013-09-10  Sanimir Agovic  <sanimir.agovic@intel.com>
 
        * gdb.base/default.exp: Adjust regexpr for 'cd' to match optional
 
 # GDB specific - we do not have split executable in advance.
 remote_file host delete ${binfile}.strip
 if {[run_on_host "strip" [transform strip] \
-        "--strip-all -o ${binfile}.strip ${binfile}"]} {
+        "--strip-all -R .comment -o ${binfile}.strip ${binfile}"]} {
     return -1
 }
 
 # Add the .gnu_debuglink section to the .gnu_debugdata file.
 # .gnu_debuglink is normally not present in the .gnu_debugdata section but in
 # some files there may be PT_NOTE with NT_GNU_BUILD_ID and GDB could look up
-# the .debug file from it.
+# the .debug file from it.  This is only an additional test of GDB, such link
+# is not present in usual MiniDebugInfo sections.
 if {[run_on_host "addlink" [transform objcopy] \
         "--add-gnu-debuglink=${binfile}.debug ${binfile}.mini_debuginfo ${binfile}.mini_debuginfo-debuglink"]} {
     return -1