Re: Switching to git?

2007-12-17 Thread willem

Markus Elfring wrote:
I do object. Personally, I believe that git is inferior to other modern 
version control systems, thus I don't want to move. If we do, I prefer to go 
with something better.



Which features are you missing?
http://en.wikipedia.org/wiki/Comparison_of_revision_control_software

Which management software do you prefer at the moment?

Regards,
Markus



___
Grub-devel mailing list
Grub-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/grub-devel

  
There are so many version control systems under active development, so 
it is hard to

choose the best one.


___
Grub-devel mailing list
Grub-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/grub-devel


Re: Switching to git?

2007-12-17 Thread willem

Otavio Salvador wrote:

Yoshinori K. Okuji [EMAIL PROTECTED] writes:

  

On Saturday 15 December 2007 11:54, Robert Millan wrote:


So it seems nobody objected.  What do we need to proceed?
  
I do object. Personally, I believe that git is inferior to other modern 
version control systems, thus I don't want to move. If we do, I prefer to go 
with something better.



Please cite the ones you think are superior so we all can discuss it.

  

Sun did choose Mercurial


___
Grub-devel mailing list
Grub-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/grub-devel


Re: Switching to git?

2007-12-07 Thread willem

Otavio Salvador wrote:

willem [EMAIL PROTECTED] writes:

  

Otavio Salvador wrote:


Pavel Roskin [EMAIL PROTECTED] writes:

  
  

Other GNU projects have switched to git.  Savannah supports git.  The
list of the GNU projects using git is pretty impressive:
http://git.sv.gnu.org/gitweb/

I think GNU GRUB would be a welcome addition.



+1. I brought this up to discussion some time ago here but hadn't much
feedback. I hope we can move forward this time :-D

  
  

I did look at git.
I agree , git is better than svn.



It's much better and makes the integration work much easier to the
team too.

People can start to provide GIT trees, instead of patches, for review
and once it has been accepted, and paper work done, a single git merge
does the magic :-)

  

OOH you are very clever  :-)


___
Grub-devel mailing list
Grub-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/grub-devel


Re: Switching to git?

2007-12-06 Thread willem

Otavio Salvador wrote:

Pavel Roskin [EMAIL PROTECTED] writes:

  

Other GNU projects have switched to git.  Savannah supports git.  The
list of the GNU projects using git is pretty impressive:
http://git.sv.gnu.org/gitweb/

I think GNU GRUB would be a welcome addition.



+1. I brought this up to discussion some time ago here but hadn't much
feedback. I hope we can move forward this time :-D

  

I did look at git.
I agree , git is better than svn.

regards


___
Grub-devel mailing list
Grub-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/grub-devel


grub2 i386

2007-10-20 Thread willem

hello,

With an editor I did remove the entry console from grub.cfg on my floppy.
Now I can boot grub2 from the floppy.

So in the grub2 templates the entry console must be removed.

regards.


___
Grub-devel mailing list
Grub-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/grub-devel


grub2 i386

2007-10-19 Thread willem

hello,

the next script solved my problem partially.

#!/bin/bash
#This will create a GRUB2 boot floppy that supports GPT system.
#Make sure you have updated /boot/grub completely to ensure proper 
floppy creation

#last updated for grub2 1.95

grub-mkimage -d /boot/grub -v -o /boot/grub/core.img ls ext2 gpt pc 
linux _linux boot chain configfile fshelp help

mke2fs /dev/fd0
mount -o loop -t ext2 /dev/fd0 /mnt/
mkdir -p /mnt/boot/grub
cp /boot/grub/boot.img /boot/grub/core.img /boot/grub/*.mod /mnt/boot/grub
cp -f /boot/grub/grub.cfg /mnt/boot/grub
grub-mkdevicemap -m /boot/grub/device.map
grub-setup -d /mnt/boot/grub -v -r '(fd0)' -m /boot/grub/device.map '(fd0)'
umount /mnt/

If I then boot from the floppy then the system hangs.

I have the following grub.cfg :

#
# DO NOT EDIT THIS FILE
#
# It is automaticaly generated by ././update-grub using templates
# from /usr/local/etc/grub.d and settings from /usr/local/etc/default/grub
#

### BEGIN /usr/local/etc/grub.d/00_header ###
set default=0
set timeout=5
set root=(hd0,1)
terminal console
### END /usr/local/etc/grub.d/00_header ###

### BEGIN /usr/local/etc/grub.d/10_hurd ###
### END /usr/local/etc/grub.d/10_hurd ###

### BEGIN /usr/local/etc/grub.d/10_linux ###
menuentry  GNU/Linux, linux 2.6.22-14-generic {
   linux(hd0,1)/boot/vmlinuz-2.6.22-14-generic root=/dev/sda1 ro
   initrd(hd0,1)/boot/initrd.img-2.6.22-14-generic
}
menuentry  GNU/Linux, linux 2.6.22-14-generic (single-user mode) {
   linux(hd0,1)/boot/vmlinuz-2.6.22-14-generic root=/dev/sda1 ro 
single

   initrd(hd0,1)/boot/initrd.img-2.6.22-14-generic
}
menuentry  GNU/Linux, linux 2.6.22-13-generic {
   linux(hd0,1)/boot/vmlinuz-2.6.22-13-generic root=/dev/sda1 ro
   initrd(hd0,1)/boot/initrd.img-2.6.22-13-generic
}
menuentry  GNU/Linux, linux 2.6.22-13-generic (single-user mode) {
   linux(hd0,1)/boot/vmlinuz-2.6.22-13-generic root=/dev/sda1 ro 
single

   initrd(hd0,1)/boot/initrd.img-2.6.22-13-generic
}
menuentry  GNU/Linux, linux 2.6.22-12-generic {
   linux(hd0,1)/boot/vmlinuz-2.6.22-12-generic root=/dev/sda1 ro
   initrd(hd0,1)/boot/initrd.img-2.6.22-12-generic
}
menuentry  GNU/Linux, linux 2.6.22-12-generic (single-user mode) {
   linux(hd0,1)/boot/vmlinuz-2.6.22-12-generic root=/dev/sda1 ro 
single

   initrd(hd0,1)/boot/initrd.img-2.6.22-12-generic
}
### END /usr/local/etc/grub.d/10_linux ###

If I remove grub.cfg and I enter the commands manual then I can boot.


The Problem is in line 12 of grub.cfg which is automatically generated.
The commands terminal console seem not to be implemented yet.

or does my script is missing a required module ?

regards



___
Grub-devel mailing list
Grub-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/grub-devel


grub2 i386

2007-10-18 Thread willem

hello,
i checked out grub2 from cvs and compiled it.
I tried update-grub , but it failed because it cannot find the path to 
device hda.

In the latest kernels this name is changed to sda.

how can i change that in grub2 ?

regards


___
Grub-devel mailing list
Grub-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/grub-devel