[arch-commits] Commit in grub/repos (16 files)

2017-04-26 Thread Christian Hesse
Date: Wednesday, April 26, 2017 @ 20:06:55
  Author: eworm
Revision: 294838

archrelease: copy trunk to testing-x86_64, testing-i686

Added:
  grub/repos/testing-i686/
  grub/repos/testing-i686/0002-intel-ucode.patch
(from rev 294837, grub/trunk/0002-intel-ucode.patch)
  grub/repos/testing-i686/0003-10_linux-detect-archlinux-initramfs.patch
(from rev 294837, grub/trunk/0003-10_linux-detect-archlinux-initramfs.patch)
  grub/repos/testing-i686/0004-add-GRUB_COLOR_variables.patch
(from rev 294837, grub/trunk/0004-add-GRUB_COLOR_variables.patch)
  grub/repos/testing-i686/PKGBUILD
(from rev 294837, grub/trunk/PKGBUILD)
  grub/repos/testing-i686/grub.cfg
(from rev 294837, grub/trunk/grub.cfg)
  grub/repos/testing-i686/grub.default
(from rev 294837, grub/trunk/grub.default)
  grub/repos/testing-i686/grub.install
(from rev 294837, grub/trunk/grub.install)
  grub/repos/testing-x86_64/
  grub/repos/testing-x86_64/0002-intel-ucode.patch
(from rev 294837, grub/trunk/0002-intel-ucode.patch)
  grub/repos/testing-x86_64/0003-10_linux-detect-archlinux-initramfs.patch
(from rev 294837, grub/trunk/0003-10_linux-detect-archlinux-initramfs.patch)
  grub/repos/testing-x86_64/0004-add-GRUB_COLOR_variables.patch
(from rev 294837, grub/trunk/0004-add-GRUB_COLOR_variables.patch)
  grub/repos/testing-x86_64/PKGBUILD
(from rev 294837, grub/trunk/PKGBUILD)
  grub/repos/testing-x86_64/grub.cfg
(from rev 294837, grub/trunk/grub.cfg)
  grub/repos/testing-x86_64/grub.default
(from rev 294837, grub/trunk/grub.default)
  grub/repos/testing-x86_64/grub.install
(from rev 294837, grub/trunk/grub.install)

---+
 testing-i686/0002-intel-ucode.patch   |   52 +
 testing-i686/0003-10_linux-detect-archlinux-initramfs.patch   |   44 +
 testing-i686/0004-add-GRUB_COLOR_variables.patch  |   32 
 testing-i686/PKGBUILD |  359 ++
 testing-i686/grub.cfg |  139 +++
 testing-i686/grub.default |   47 +
 testing-i686/grub.install |   15 
 testing-x86_64/0002-intel-ucode.patch |   52 +
 testing-x86_64/0003-10_linux-detect-archlinux-initramfs.patch |   44 +
 testing-x86_64/0004-add-GRUB_COLOR_variables.patch|   32 
 testing-x86_64/PKGBUILD   |  359 ++
 testing-x86_64/grub.cfg   |  139 +++
 testing-x86_64/grub.default   |   47 +
 testing-x86_64/grub.install   |   15 
 14 files changed, 1376 insertions(+)

Copied: grub/repos/testing-i686/0002-intel-ucode.patch (from rev 294837, 
grub/trunk/0002-intel-ucode.patch)
===
--- testing-i686/0002-intel-ucode.patch (rev 0)
+++ testing-i686/0002-intel-ucode.patch 2017-04-26 20:06:55 UTC (rev 294838)
@@ -0,0 +1,52 @@
+diff --git a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in
+index de9044c..f5d3e78 100644
+--- a/util/grub.d/10_linux.in
 b/util/grub.d/10_linux.in
+@@ -133,13 +133,15 @@ linux_entry ()
+   echo'$(echo "$message" | grub_quote)'
+   linux   ${rel_dirname}/${basename} 
root=${linux_root_device_thisversion} ro ${args}
+ EOF
+-  if test -n "${initrd}" ; then
++  if test -n "${initrd}" -o -n "${initrd_extra}" ; then
+ # TRANSLATORS: ramdisk isn't identifier. Should be translated.
+ message="$(gettext_printf "Loading initial ramdisk ...")"
+-sed "s/^/$submenu_indentation/" << EOF
+-  echo'$(echo "$message" | grub_quote)'
+-  initrd  ${rel_dirname}/${initrd}
+-EOF
++printf '  %s\n' "echo '$(echo "$message" | grub_quote)'" | sed 
"s/^/$submenu_indentation/"
++printf '  %s ' 'initrd' | sed "s/^/$submenu_indentation/"
++for i in ${initrd_extra} ${initrd}; do
++  printf ' %s/%s' "${rel_dirname}" "${i}"
++done
++printf '\n'
+   fi
+   sed "s/^/$submenu_indentation/" << EOF
+ }
+@@ -202,6 +204,12 @@ while [ "x$list" != "x" ] ; do
+   break
+ fi
+   done
++  initrd_extra=
++  for i in intel-ucode.img; do
++if test -e "${dirname}/${i}" ; then
++  initrd_extra="${initrd_extra} ${i}"
++fi
++  done
+ 
+   config=
+   for i in "${dirname}/config-${version}" "${dirname}/config-${alt_version}" 
"/etc/kernels/kernel-config-${version}" ; do
+@@ -216,8 +224,8 @@ while [ "x$list" != "x" ] ; do
+   initramfs=`grep CONFIG_INITRAMFS_SOURCE= "${config}" | cut -f2 -d= | tr 
-d \"`
+   fi
+ 
+-  if test -n "${initrd}" ; then
+-gettext_printf "Found initrd image: %s\n" "${dirname}/${initrd}" >&2
++  if test -n "${initrd}" -o -n "${initrd_extra}" ; then
++gettext_printf "Found initrd image(s) in %s:%s\n" "${dirname}" 
"${initrd_extra} ${initrd}" >&2
+   elif test -z 

[arch-commits] Commit in grub/repos (16 files)

2017-03-16 Thread Christian Hesse
Date: Thursday, March 16, 2017 @ 21:33:42
  Author: eworm
Revision: 290963

archrelease: copy trunk to testing-x86_64, testing-i686

Added:
  grub/repos/testing-i686/
  grub/repos/testing-i686/0002-intel-ucode.patch
(from rev 290962, grub/trunk/0002-intel-ucode.patch)
  grub/repos/testing-i686/0003-10_linux-detect-archlinux-initramfs.patch
(from rev 290962, grub/trunk/0003-10_linux-detect-archlinux-initramfs.patch)
  grub/repos/testing-i686/0004-add-GRUB_COLOR_variables.patch
(from rev 290962, grub/trunk/0004-add-GRUB_COLOR_variables.patch)
  grub/repos/testing-i686/PKGBUILD
(from rev 290962, grub/trunk/PKGBUILD)
  grub/repos/testing-i686/grub.cfg
(from rev 290962, grub/trunk/grub.cfg)
  grub/repos/testing-i686/grub.default
(from rev 290962, grub/trunk/grub.default)
  grub/repos/testing-i686/grub.install
(from rev 290962, grub/trunk/grub.install)
  grub/repos/testing-x86_64/
  grub/repos/testing-x86_64/0002-intel-ucode.patch
(from rev 290962, grub/trunk/0002-intel-ucode.patch)
  grub/repos/testing-x86_64/0003-10_linux-detect-archlinux-initramfs.patch
(from rev 290962, grub/trunk/0003-10_linux-detect-archlinux-initramfs.patch)
  grub/repos/testing-x86_64/0004-add-GRUB_COLOR_variables.patch
(from rev 290962, grub/trunk/0004-add-GRUB_COLOR_variables.patch)
  grub/repos/testing-x86_64/PKGBUILD
(from rev 290962, grub/trunk/PKGBUILD)
  grub/repos/testing-x86_64/grub.cfg
(from rev 290962, grub/trunk/grub.cfg)
  grub/repos/testing-x86_64/grub.default
(from rev 290962, grub/trunk/grub.default)
  grub/repos/testing-x86_64/grub.install
(from rev 290962, grub/trunk/grub.install)

---+
 testing-i686/0002-intel-ucode.patch   |   52 +
 testing-i686/0003-10_linux-detect-archlinux-initramfs.patch   |   44 +
 testing-i686/0004-add-GRUB_COLOR_variables.patch  |   32 
 testing-i686/PKGBUILD |  370 ++
 testing-i686/grub.cfg |  139 +++
 testing-i686/grub.default |   47 +
 testing-i686/grub.install |   15 
 testing-x86_64/0002-intel-ucode.patch |   52 +
 testing-x86_64/0003-10_linux-detect-archlinux-initramfs.patch |   44 +
 testing-x86_64/0004-add-GRUB_COLOR_variables.patch|   32 
 testing-x86_64/PKGBUILD   |  370 ++
 testing-x86_64/grub.cfg   |  139 +++
 testing-x86_64/grub.default   |   47 +
 testing-x86_64/grub.install   |   15 
 14 files changed, 1398 insertions(+)

Copied: grub/repos/testing-i686/0002-intel-ucode.patch (from rev 290962, 
grub/trunk/0002-intel-ucode.patch)
===
--- testing-i686/0002-intel-ucode.patch (rev 0)
+++ testing-i686/0002-intel-ucode.patch 2017-03-16 21:33:42 UTC (rev 290963)
@@ -0,0 +1,52 @@
+diff --git a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in
+index de9044c..f5d3e78 100644
+--- a/util/grub.d/10_linux.in
 b/util/grub.d/10_linux.in
+@@ -133,13 +133,15 @@ linux_entry ()
+   echo'$(echo "$message" | grub_quote)'
+   linux   ${rel_dirname}/${basename} 
root=${linux_root_device_thisversion} ro ${args}
+ EOF
+-  if test -n "${initrd}" ; then
++  if test -n "${initrd}" -o -n "${initrd_extra}" ; then
+ # TRANSLATORS: ramdisk isn't identifier. Should be translated.
+ message="$(gettext_printf "Loading initial ramdisk ...")"
+-sed "s/^/$submenu_indentation/" << EOF
+-  echo'$(echo "$message" | grub_quote)'
+-  initrd  ${rel_dirname}/${initrd}
+-EOF
++printf '  %s\n' "echo '$(echo "$message" | grub_quote)'" | sed 
"s/^/$submenu_indentation/"
++printf '  %s ' 'initrd' | sed "s/^/$submenu_indentation/"
++for i in ${initrd_extra} ${initrd}; do
++  printf ' %s/%s' "${rel_dirname}" "${i}"
++done
++printf '\n'
+   fi
+   sed "s/^/$submenu_indentation/" << EOF
+ }
+@@ -202,6 +204,12 @@ while [ "x$list" != "x" ] ; do
+   break
+ fi
+   done
++  initrd_extra=
++  for i in intel-ucode.img; do
++if test -e "${dirname}/${i}" ; then
++  initrd_extra="${initrd_extra} ${i}"
++fi
++  done
+ 
+   config=
+   for i in "${dirname}/config-${version}" "${dirname}/config-${alt_version}" 
"/etc/kernels/kernel-config-${version}" ; do
+@@ -216,8 +224,8 @@ while [ "x$list" != "x" ] ; do
+   initramfs=`grep CONFIG_INITRAMFS_SOURCE= "${config}" | cut -f2 -d= | tr 
-d \"`
+   fi
+ 
+-  if test -n "${initrd}" ; then
+-gettext_printf "Found initrd image: %s\n" "${dirname}/${initrd}" >&2
++  if test -n "${initrd}" -o -n "${initrd_extra}" ; then
++gettext_printf "Found initrd image(s) in %s:%s\n" "${dirname}" 
"${initrd_extra} ${initrd}" >&2
+   elif test -z 

[arch-commits] Commit in grub/repos (16 files)

2017-02-03 Thread Christian Hesse
Date: Friday, February 3, 2017 @ 19:54:38
  Author: eworm
Revision: 287993

archrelease: copy trunk to testing-x86_64, testing-i686

Added:
  grub/repos/testing-i686/
  grub/repos/testing-i686/0002-intel-ucode.patch
(from rev 287992, grub/trunk/0002-intel-ucode.patch)
  grub/repos/testing-i686/0003-10_linux-detect-archlinux-initramfs.patch
(from rev 287992, grub/trunk/0003-10_linux-detect-archlinux-initramfs.patch)
  grub/repos/testing-i686/0004-add-GRUB_COLOR_variables.patch
(from rev 287992, grub/trunk/0004-add-GRUB_COLOR_variables.patch)
  grub/repos/testing-i686/PKGBUILD
(from rev 287992, grub/trunk/PKGBUILD)
  grub/repos/testing-i686/grub.cfg
(from rev 287992, grub/trunk/grub.cfg)
  grub/repos/testing-i686/grub.default
(from rev 287992, grub/trunk/grub.default)
  grub/repos/testing-i686/grub.install
(from rev 287992, grub/trunk/grub.install)
  grub/repos/testing-x86_64/
  grub/repos/testing-x86_64/0002-intel-ucode.patch
(from rev 287992, grub/trunk/0002-intel-ucode.patch)
  grub/repos/testing-x86_64/0003-10_linux-detect-archlinux-initramfs.patch
(from rev 287992, grub/trunk/0003-10_linux-detect-archlinux-initramfs.patch)
  grub/repos/testing-x86_64/0004-add-GRUB_COLOR_variables.patch
(from rev 287992, grub/trunk/0004-add-GRUB_COLOR_variables.patch)
  grub/repos/testing-x86_64/PKGBUILD
(from rev 287992, grub/trunk/PKGBUILD)
  grub/repos/testing-x86_64/grub.cfg
(from rev 287992, grub/trunk/grub.cfg)
  grub/repos/testing-x86_64/grub.default
(from rev 287992, grub/trunk/grub.default)
  grub/repos/testing-x86_64/grub.install
(from rev 287992, grub/trunk/grub.install)

---+
 testing-i686/0002-intel-ucode.patch   |   52 +
 testing-i686/0003-10_linux-detect-archlinux-initramfs.patch   |   44 +
 testing-i686/0004-add-GRUB_COLOR_variables.patch  |   32 
 testing-i686/PKGBUILD |  370 ++
 testing-i686/grub.cfg |  139 +++
 testing-i686/grub.default |   47 +
 testing-i686/grub.install |   15 
 testing-x86_64/0002-intel-ucode.patch |   52 +
 testing-x86_64/0003-10_linux-detect-archlinux-initramfs.patch |   44 +
 testing-x86_64/0004-add-GRUB_COLOR_variables.patch|   32 
 testing-x86_64/PKGBUILD   |  370 ++
 testing-x86_64/grub.cfg   |  139 +++
 testing-x86_64/grub.default   |   47 +
 testing-x86_64/grub.install   |   15 
 14 files changed, 1398 insertions(+)

Copied: grub/repos/testing-i686/0002-intel-ucode.patch (from rev 287992, 
grub/trunk/0002-intel-ucode.patch)
===
--- testing-i686/0002-intel-ucode.patch (rev 0)
+++ testing-i686/0002-intel-ucode.patch 2017-02-03 19:54:38 UTC (rev 287993)
@@ -0,0 +1,52 @@
+diff --git a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in
+index de9044c..f5d3e78 100644
+--- a/util/grub.d/10_linux.in
 b/util/grub.d/10_linux.in
+@@ -133,13 +133,15 @@ linux_entry ()
+   echo'$(echo "$message" | grub_quote)'
+   linux   ${rel_dirname}/${basename} 
root=${linux_root_device_thisversion} ro ${args}
+ EOF
+-  if test -n "${initrd}" ; then
++  if test -n "${initrd}" -o -n "${initrd_extra}" ; then
+ # TRANSLATORS: ramdisk isn't identifier. Should be translated.
+ message="$(gettext_printf "Loading initial ramdisk ...")"
+-sed "s/^/$submenu_indentation/" << EOF
+-  echo'$(echo "$message" | grub_quote)'
+-  initrd  ${rel_dirname}/${initrd}
+-EOF
++printf '  %s\n' "echo '$(echo "$message" | grub_quote)'" | sed 
"s/^/$submenu_indentation/"
++printf '  %s ' 'initrd' | sed "s/^/$submenu_indentation/"
++for i in ${initrd_extra} ${initrd}; do
++  printf ' %s/%s' "${rel_dirname}" "${i}"
++done
++printf '\n'
+   fi
+   sed "s/^/$submenu_indentation/" << EOF
+ }
+@@ -202,6 +204,12 @@ while [ "x$list" != "x" ] ; do
+   break
+ fi
+   done
++  initrd_extra=
++  for i in intel-ucode.img; do
++if test -e "${dirname}/${i}" ; then
++  initrd_extra="${initrd_extra} ${i}"
++fi
++  done
+ 
+   config=
+   for i in "${dirname}/config-${version}" "${dirname}/config-${alt_version}" 
"/etc/kernels/kernel-config-${version}" ; do
+@@ -216,8 +224,8 @@ while [ "x$list" != "x" ] ; do
+   initramfs=`grep CONFIG_INITRAMFS_SOURCE= "${config}" | cut -f2 -d= | tr 
-d \"`
+   fi
+ 
+-  if test -n "${initrd}" ; then
+-gettext_printf "Found initrd image: %s\n" "${dirname}/${initrd}" >&2
++  if test -n "${initrd}" -o -n "${initrd_extra}" ; then
++gettext_printf "Found initrd image(s) in %s:%s\n" "${dirname}" 
"${initrd_extra} ${initrd}" >&2
+   elif test -z 

[arch-commits] Commit in grub/repos (16 files)

2013-07-28 Thread Tobias Powalowski
Date: Sunday, July 28, 2013 @ 09:40:29
  Author: tpowa
Revision: 191625

archrelease: copy trunk to testing-x86_64, testing-i686

Added:
  grub/repos/testing-i686/
  grub/repos/testing-i686/60_memtest86+
(from rev 191624, grub/trunk/60_memtest86+)
  grub/repos/testing-i686/PKGBUILD
(from rev 191624, grub/trunk/PKGBUILD)
  grub/repos/testing-i686/archlinux_grub_mkconfig_fixes.patch
(from rev 191624, grub/trunk/archlinux_grub_mkconfig_fixes.patch)
  grub/repos/testing-i686/grub-2.00-mkinitcpio-0.15.patch
(from rev 191624, grub/trunk/grub-2.00-mkinitcpio-0.15.patch)
  grub/repos/testing-i686/grub.cfg
(from rev 191624, grub/trunk/grub.cfg)
  grub/repos/testing-i686/grub.default
(from rev 191624, grub/trunk/grub.default)
  grub/repos/testing-i686/grub.install
(from rev 191624, grub/trunk/grub.install)
  grub/repos/testing-x86_64/
  grub/repos/testing-x86_64/60_memtest86+
(from rev 191624, grub/trunk/60_memtest86+)
  grub/repos/testing-x86_64/PKGBUILD
(from rev 191624, grub/trunk/PKGBUILD)
  grub/repos/testing-x86_64/archlinux_grub_mkconfig_fixes.patch
(from rev 191624, grub/trunk/archlinux_grub_mkconfig_fixes.patch)
  grub/repos/testing-x86_64/grub-2.00-mkinitcpio-0.15.patch
(from rev 191624, grub/trunk/grub-2.00-mkinitcpio-0.15.patch)
  grub/repos/testing-x86_64/grub.cfg
(from rev 191624, grub/trunk/grub.cfg)
  grub/repos/testing-x86_64/grub.default
(from rev 191624, grub/trunk/grub.default)
  grub/repos/testing-x86_64/grub.install
(from rev 191624, grub/trunk/grub.install)

+
 testing-i686/60_memtest86+ |   32 ++
 testing-i686/PKGBUILD  |  249 +++
 testing-i686/archlinux_grub_mkconfig_fixes.patch   |  143 ++
 testing-i686/grub-2.00-mkinitcpio-0.15.patch   |   11 
 testing-i686/grub.cfg  |  139 ++
 testing-i686/grub.default  |   47 +++
 testing-i686/grub.install  |   33 ++
 testing-x86_64/60_memtest86+   |   32 ++
 testing-x86_64/PKGBUILD|  249 +++
 testing-x86_64/archlinux_grub_mkconfig_fixes.patch |  143 ++
 testing-x86_64/grub-2.00-mkinitcpio-0.15.patch |   11 
 testing-x86_64/grub.cfg|  139 ++
 testing-x86_64/grub.default|   47 +++
 testing-x86_64/grub.install|   33 ++
 14 files changed, 1308 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 191624:191625 to see the changes.


[arch-commits] Commit in grub/repos (16 files)

2013-06-24 Thread Tobias Powalowski
Date: Monday, June 24, 2013 @ 19:25:32
  Author: tpowa
Revision: 188897

archrelease: copy trunk to testing-x86_64, testing-i686

Added:
  grub/repos/testing-i686/
  grub/repos/testing-i686/60_memtest86+
(from rev 188896, grub/trunk/60_memtest86+)
  grub/repos/testing-i686/PKGBUILD
(from rev 188896, grub/trunk/PKGBUILD)
  grub/repos/testing-i686/archlinux_grub_mkconfig_fixes.patch
(from rev 188896, grub/trunk/archlinux_grub_mkconfig_fixes.patch)
  grub/repos/testing-i686/grub.cfg
(from rev 188896, grub/trunk/grub.cfg)
  grub/repos/testing-i686/grub.default
(from rev 188896, grub/trunk/grub.default)
  grub/repos/testing-i686/grub.install
(from rev 188896, grub/trunk/grub.install)
  grub/repos/testing-i686/grub_bzr_export.sh
(from rev 188896, grub/trunk/grub_bzr_export.sh)
  grub/repos/testing-x86_64/
  grub/repos/testing-x86_64/60_memtest86+
(from rev 188896, grub/trunk/60_memtest86+)
  grub/repos/testing-x86_64/PKGBUILD
(from rev 188896, grub/trunk/PKGBUILD)
  grub/repos/testing-x86_64/archlinux_grub_mkconfig_fixes.patch
(from rev 188896, grub/trunk/archlinux_grub_mkconfig_fixes.patch)
  grub/repos/testing-x86_64/grub.cfg
(from rev 188896, grub/trunk/grub.cfg)
  grub/repos/testing-x86_64/grub.default
(from rev 188896, grub/trunk/grub.default)
  grub/repos/testing-x86_64/grub.install
(from rev 188896, grub/trunk/grub.install)
  grub/repos/testing-x86_64/grub_bzr_export.sh
(from rev 188896, grub/trunk/grub_bzr_export.sh)

+
 testing-i686/60_memtest86+ |   32 ++
 testing-i686/PKGBUILD  |  239 +++
 testing-i686/archlinux_grub_mkconfig_fixes.patch   |  143 +++
 testing-i686/grub.cfg  |  139 +++
 testing-i686/grub.default  |   47 +++
 testing-i686/grub.install  |   33 ++
 testing-i686/grub_bzr_export.sh|  113 
 testing-x86_64/60_memtest86+   |   32 ++
 testing-x86_64/PKGBUILD|  239 +++
 testing-x86_64/archlinux_grub_mkconfig_fixes.patch |  143 +++
 testing-x86_64/grub.cfg|  139 +++
 testing-x86_64/grub.default|   47 +++
 testing-x86_64/grub.install|   33 ++
 testing-x86_64/grub_bzr_export.sh  |  113 
 14 files changed, 1492 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 188896:188897 to see the changes.


[arch-commits] Commit in grub/repos (16 files)

2013-06-22 Thread Tobias Powalowski
Date: Saturday, June 22, 2013 @ 12:15:58
  Author: tpowa
Revision: 188836

archrelease: copy trunk to testing-x86_64, testing-i686

Deleted:
  grub/repos/testing-i686/60_memtest86+
  grub/repos/testing-i686/PKGBUILD
  grub/repos/testing-i686/archlinux_grub_mkconfig_fixes.patch
  grub/repos/testing-i686/grub-2.00-fix-docs.patch
  grub/repos/testing-i686/grub.cfg
  grub/repos/testing-i686/grub.default
  grub/repos/testing-i686/grub.install
  grub/repos/testing-i686/grub_bzr_export.sh
  grub/repos/testing-x86_64/60_memtest86+
  grub/repos/testing-x86_64/PKGBUILD
  grub/repos/testing-x86_64/archlinux_grub_mkconfig_fixes.patch
  grub/repos/testing-x86_64/grub-2.00-fix-docs.patch
  grub/repos/testing-x86_64/grub.cfg
  grub/repos/testing-x86_64/grub.default
  grub/repos/testing-x86_64/grub.install
  grub/repos/testing-x86_64/grub_bzr_export.sh

+
 testing-i686/60_memtest86+ |   32 --
 testing-i686/PKGBUILD  |  269 ---
 testing-i686/archlinux_grub_mkconfig_fixes.patch   |  143 --
 testing-i686/grub-2.00-fix-docs.patch  |   21 -
 testing-i686/grub.cfg  |  139 -
 testing-i686/grub.default  |   47 ---
 testing-i686/grub.install  |   33 --
 testing-i686/grub_bzr_export.sh|  113 ---
 testing-x86_64/60_memtest86+   |   32 --
 testing-x86_64/PKGBUILD|  269 ---
 testing-x86_64/archlinux_grub_mkconfig_fixes.patch |  143 --
 testing-x86_64/grub-2.00-fix-docs.patch|   21 -
 testing-x86_64/grub.cfg|  139 -
 testing-x86_64/grub.default|   47 ---
 testing-x86_64/grub.install|   33 --
 testing-x86_64/grub_bzr_export.sh  |  113 ---
 16 files changed, 1594 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 188835:188836 to see the changes.


[arch-commits] Commit in grub/repos (16 files)

2012-06-28 Thread Ronald van Haren
Date: Thursday, June 28, 2012 @ 13:53:11
  Author: ronald
Revision: 162711

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  grub/repos/testing-i686/
  grub/repos/testing-i686/20_memtest86+
(from rev 162710, grub/trunk/20_memtest86+)
  grub/repos/testing-i686/PKGBUILD
(from rev 162710, grub/trunk/PKGBUILD)
  grub/repos/testing-i686/archlinux_grub_mkconfig_fixes.patch
(from rev 162710, grub/trunk/archlinux_grub_mkconfig_fixes.patch)
  grub/repos/testing-i686/grub.cfg
(from rev 162710, grub/trunk/grub.cfg)
  grub/repos/testing-i686/grub.default
(from rev 162710, grub/trunk/grub.default)
  grub/repos/testing-i686/grub.install
(from rev 162710, grub/trunk/grub.install)
  grub/repos/testing-i686/grub_bzr_export.sh
(from rev 162710, grub/trunk/grub_bzr_export.sh)
  grub/repos/testing-x86_64/
  grub/repos/testing-x86_64/20_memtest86+
(from rev 162710, grub/trunk/20_memtest86+)
  grub/repos/testing-x86_64/PKGBUILD
(from rev 162710, grub/trunk/PKGBUILD)
  grub/repos/testing-x86_64/archlinux_grub_mkconfig_fixes.patch
(from rev 162710, grub/trunk/archlinux_grub_mkconfig_fixes.patch)
  grub/repos/testing-x86_64/grub.cfg
(from rev 162710, grub/trunk/grub.cfg)
  grub/repos/testing-x86_64/grub.default
(from rev 162710, grub/trunk/grub.default)
  grub/repos/testing-x86_64/grub.install
(from rev 162710, grub/trunk/grub.install)
  grub/repos/testing-x86_64/grub_bzr_export.sh
(from rev 162710, grub/trunk/grub_bzr_export.sh)

+
 testing-i686/20_memtest86+ |   29 ++
 testing-i686/PKGBUILD  |  249 +++
 testing-i686/archlinux_grub_mkconfig_fixes.patch   |  143 ++
 testing-i686/grub.cfg  |  139 ++
 testing-i686/grub.default  |   47 +++
 testing-i686/grub.install  |   33 ++
 testing-i686/grub_bzr_export.sh|  113 
 testing-x86_64/20_memtest86+   |   29 ++
 testing-x86_64/PKGBUILD|  249 +++
 testing-x86_64/archlinux_grub_mkconfig_fixes.patch |  143 ++
 testing-x86_64/grub.cfg|  139 ++
 testing-x86_64/grub.default|   47 +++
 testing-x86_64/grub.install|   33 ++
 testing-x86_64/grub_bzr_export.sh  |  113 
 14 files changed, 1506 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 162710:162711 to see the changes.