Package Details: grub-git 2.12.rc1.r106.g7c8ae7dcb-1

Git Clone URL: https://aur.archlinux.org/grub-git.git (read-only, click to copy)
Package Base: grub-git
Description: GNU GRand Unified Bootloader (2)
Upstream URL: https://www.gnu.org/software/grub/
Licenses: GPL3
Conflicts: grub
Provides: grub
Submitter: ka2107
Maintainer: WoefulDerelict
Last Packager: WoefulDerelict
Votes: 17
Popularity: 0.001853
First Submitted: 2013-10-22 18:55 (UTC)
Last Updated: 2023-12-18 22:58 (UTC)

Dependencies (21)

Required by (309)

Sources (7)

Latest Comments

« First ‹ Previous 1 .. 11 12 13 14 15 16 17 18 Next › Last »

altkrall commented on 2011-07-31 12:31 (UTC)

I found the problem: the bzr protocol isn't good. Use http: http://bzr.savannah.gnu.org/r/grub/branches/experimental/ http://bzr.savannah.gnu.org/r/grub/trunk/grub/ instead bzr://bzr.savannah.gnu.org/grub/branches/experimental/ bzr://bzr.savannah.gnu.org/grub/trunk/grub/

altkrall commented on 2011-07-30 09:51 (UTC)

I always get the error after a certain time downloading: bzr: ERROR: Connection closed: Unexpected end of message. Please check connectivity and permissions, and report a bug if problems persist.

cedeel commented on 2011-06-11 13:18 (UTC)

Broken again. rm -r "${srcdir}/${_bzrmod}_build" || true Broke the script for me, had to comment the line. cp -r "${srcdir}/${_bzrmod} ${srcdir}/${_bzrmod}_build" should be cp -r "${srcdir}/${_bzrmod}" "${srcdir}/${_bzrmod}_build"

<deleted-account> commented on 2011-04-19 07:50 (UTC)

@kurisutian: Patch updated. Next time please post it in pastebin.com and not inline in comments. I had to manually make the changes and re-create the patch.

<deleted-account> commented on 2011-04-18 21:32 (UTC)

Also the new version with the fix that allows to boot from btrfs should be available within the next few minutes according to phcoder. Je just needs to review the changes and will merge it to the trunk!

<deleted-account> commented on 2011-04-18 20:28 (UTC)

Can you update the version. Also I talked to one of the grub2 developers and her said that the archlinux_grub2_mkconfig_fixes.patch should look something like that: === modified file 'util/grub.d/10_linux.in' --- util/grub.d/10_linux.in 2011-04-13 11:57:26 +0000 +++ util/grub.d/10_linux.in 2011-04-18 19:41:38 +0000 @@ -48,7 +48,7 @@ || uses_abstraction "${GRUB_DEVICE}" lvm; then LINUX_ROOT_DEVICE=${GRUB_DEVICE} else - LINUX_ROOT_DEVICE=UUID=${GRUB_DEVICE_UUID} + LINUX_ROOT_DEVICE=/dev/disk/by-uuid/${GRUB_DEVICE_UUID} fi if [ "x`${grub_probe} --device ${GRUB_DEVICE} --target=fs 2>/dev/null || true`" = xbtrfs ]; then @@ -121,11 +121,11 @@ case x`uname -m` in xi?86 | xx86_64) - list=`for i in /boot/vmlinuz-* /vmlinuz-* /boot/kernel-* ; do + list=`for i in /boot/vmlinuz* /vmlinuz* /boot/kernel-* ; do if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi done` ;; *) - list=`for i in /boot/vmlinuz-* /boot/vmlinux-* /vmlinuz-* /vmlinux-* /boot/kernel-* ; do + list=`for i in /boot/vmlinuz* /boot/vmlinux* /vmlinuz* /vmlinux* /boot/kernel-* ; do if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi done` ;; esac @@ -148,7 +148,8 @@ "initrd.img-${alt_version}" "initrd-${alt_version}.img" \ "initrd-${alt_version}" "initramfs-${alt_version}.img" \ "initramfs-genkernel-${version}" \ - "initramfs-genkernel-${alt_version}"; do + "initramfs-genkernel-${alt_version}" \ + "${basename/vmlinuz/kernel}.img"; do if test -e "${dirname}/${i}" ; then initrd="$i" break Maybe you can update that one again! Thanks!

<deleted-account> commented on 2011-04-12 07:42 (UTC)

grub2 bzr mainline/trunk rev 3210 onwards BTRFS is supported. No need for butter branch.

<deleted-account> commented on 2011-04-10 12:52 (UTC)

I did totally miss that option.... sorry.... ^^

<deleted-account> commented on 2011-04-10 10:06 (UTC)

@kurisutian: For that use bzr experimental branch. Uncomment '# pkgname=grub2-bios-bzr-exp' in the PKGBUILD and makepkg will build the experimental branch, which contain btrfs plus other fixes which are not yet committed in to bzr mainline/trunk. Note that btrfs booting is still considered experimental and use it with caution. Please report any issues to bug-grub or grub-devel mailing list, not here. I don't use btrfs so i cant help you there.

<deleted-account> commented on 2011-04-10 09:46 (UTC)

Thank you.... it worked right away..... unfortunately it does not have btrfs booting capabilities... would it be possible to include those from here: http://bzr.sv.gnu.org/r/grub/branches/butter/ I'm not to good with the PKGBUILD creation otherwise I would have adjusted it myself. ;-) Thank you!