Re: [PATCH] eltorito cdrom boot

2008-02-03 Thread Bean
Committed. -- Bean ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: [PATCH] eltorito cdrom boot

2008-02-02 Thread Robert Millan
On Sun, Feb 03, 2008 at 01:16:50AM +0800, Bean wrote: > On Feb 3, 2008 12:33 AM, Robert Millan <[EMAIL PROTECTED]> wrote: > > On Sat, Feb 02, 2008 at 10:19:55PM +0800, Bean wrote: > > > > > > any objection for this patch ? i would like to commit it soon. > > > > Looks fine to me. Just a minor comm

Re: [PATCH] eltorito cdrom boot

2008-02-02 Thread Bean
On Feb 3, 2008 12:33 AM, Robert Millan <[EMAIL PROTECTED]> wrote: > On Sat, Feb 02, 2008 at 10:19:55PM +0800, Bean wrote: > > > > any objection for this patch ? i would like to commit it soon. > > Looks fine to me. Just a minor comment: > > > +#define GRUB_BIOSDISK_MACHINE_CDROM_START 0xe0 > > +#d

Re: [PATCH] eltorito cdrom boot

2008-02-02 Thread Robert Millan
On Sat, Feb 02, 2008 at 10:19:55PM +0800, Bean wrote: > > any objection for this patch ? i would like to commit it soon. Looks fine to me. Just a minor comment: > +#define GRUB_BIOSDISK_MACHINE_CDROM_START 0xe0 > +#define GRUB_BIOSDISK_MACHINE_CDROM_END 0xf0 could you make this tab-indented?

Re: [PATCH] eltorito cdrom boot

2008-02-02 Thread Bean
On Jan 31, 2008 8:43 PM, Bean <[EMAIL PROTECTED]> wrote: > 2008-01-31 Bean <[EMAIL PROTECTED]> > > * conf/i386-pc.rmk (pkglib_IMAGES): Add cdboot.img. > (cdboot_img_SOURCES): New variable. > (cdboot_img_ASFLAGS): New variable. > (cdboot_img_LDFLAGS): New variable.

Re: [PATCH] eltorito cdrom boot

2008-01-31 Thread Bean
On Jan 31, 2008 8:47 PM, Robert Millan <[EMAIL PROTECTED]> wrote: > On Thu, Jan 31, 2008 at 12:09:06PM +0100, Robert Millan wrote: > > > > Typo (i396). > > > > Do we really want to mix linux boot with eltorito boot? Is much core from > > original lnxboot reused by eltorito boot? > > I meant `code'

Re: [PATCH] eltorito cdrom boot

2008-01-31 Thread Robert Millan
On Thu, Jan 31, 2008 at 12:09:06PM +0100, Robert Millan wrote: > > Typo (i396). > > Do we really want to mix linux boot with eltorito boot? Is much core from > original lnxboot reused by eltorito boot? I meant `code' of course. -- Robert Millan I know my rights; I want my phone call! What

Re: [PATCH] eltorito cdrom boot

2008-01-31 Thread Bean
Hi, ok, this is the new patch, the cdboot function is implemented in separate file cdboot.S. To create a eltorito boot file, use: cat cdboot.img core.img > grub2cd.bin 2008-01-31 Bean <[EMAIL PROTECTED]> * conf/i386-pc.rmk (pkglib_IMAGES): Add cdboot.img. (cdboot_img_SOURCES):

Re: [PATCH] eltorito cdrom boot

2008-01-31 Thread Yoshinori K. Okuji
On Thursday 31 January 2008 12:09, Robert Millan wrote: > On Thu, Jan 31, 2008 at 04:38:15PM +0800, Bean wrote: > > Changes in this new version: > > > > Fix a bug in lnxboot. > > Use macro for magic values. > > Try 3 times when reading from cdrom. > > > > 2008-01-31 Bean <[EMAIL PROTECTED]> > > >

Re: [PATCH] eltorito cdrom boot

2008-01-31 Thread Robert Millan
On Thu, Jan 31, 2008 at 04:38:15PM +0800, Bean wrote: > Changes in this new version: > > Fix a bug in lnxboot. > Use macro for magic values. > Try 3 times when reading from cdrom. > > 2008-01-31 Bean <[EMAIL PROTECTED]> > > * boot/i396/pc/lnxboot.S (data_start): Add cdrom boot support.

Re: [PATCH] eltorito cdrom boot

2008-01-31 Thread Bean
Changes in this new version: Fix a bug in lnxboot. Use macro for magic values. Try 3 times when reading from cdrom. 2008-01-31 Bean <[EMAIL PROTECTED]> * boot/i396/pc/lnxboot.S (data_start): Add cdrom boot support. * disk/i386/pc/biosdisk.c (cd_start): New variable.

Re: [PATCH] eltorito cdrom boot

2008-01-30 Thread Bean
This new patch merge the cdboot function into lnxboot, now you can use g2ldr as eltorito boot file ! mkdir cdroot cat lnxboot.img core.img > cdroot/g2ldr mkisofs -R -no-emul-boot -boot-info-table --boot-load-size 4 -b g2ldr -o aa.iso cdroot diff --git a/boot/i386/pc/lnxboot.S b/boot/i386/pc/lnxb

Re: [PATCH] eltorito cdrom boot

2008-01-29 Thread Marco Gerards
Bean <[EMAIL PROTECTED]> writes: Hi Bean! > This patch enable grub2 to read files from cdrom using int13 service. Wow, you are active! :-) > To create bootable cdrom: > > mkdir cdroot > cat cdboot.img core.img > cdroot/grub2cd.bin > mkisofs -R -no-emul-boot -boot-info-table --boot-load-size 4 -

Re: [PATCH] eltorito cdrom boot

2008-01-29 Thread Robert Millan
On Wed, Jan 30, 2008 at 03:22:58AM +0800, Bean wrote: > Hi, > > This patch enable grub2 to read files from cdrom using int13 service. > > [...] > + * Copyright (C) 1994-2002 H. Peter Anvin > [...] > + > +/* > + Most of this file was originally "isolinux.asm" from SYSLINUX package. > + It has be

[PATCH] eltorito cdrom boot

2008-01-29 Thread Bean
Hi, This patch enable grub2 to read files from cdrom using int13 service. To create bootable cdrom: mkdir cdroot cat cdboot.img core.img > cdroot/grub2cd.bin mkisofs -R -no-emul-boot -boot-info-table --boot-load-size 4 -b grub2cd.bin -o aa.iso cdroot diff --git a/boot/i386/pc/cdboot.S b/boot/i