Hello all,
Past few days I was working on porting the isohybrid perl script to c.
(-> https://fedorahosted.org/fedora-engineering-services/ticket/15)
The first patch towards the same is attached with this mail. And the same could
also be accessed
from: http://pjp.dgplug.org/tools/syslinux-3.86-isohybrid.patch
I would really appreciate it if somebody could have a look at it and let me know
the feedback.
Thank you.
---
Regards
-P J P
PS: Please don't send me html/attachment/Fwd mails
Your Mail works best with the New Yahoo Optimized IE8. Get it NOW!
http://downloads.yahoo.com/in/internetexplorer/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: syslinux-3.86-isohybrid.patch
Type: application/octet-stream
Size: 29071 bytes
Desc: not available
URL:
<http://www.zytor.com/pipermail/syslinux/attachments/20100412/428b453f/attachment.obj>
Hello all,
Past few days I was working on porting the isohybrid Perl script to c.
(-> https://fedorahosted.org/fedora-engineering-services/ticket/15)
The first patch towards the same could be accessed
from: http://pjp.dgplug.org/tools/syslinux-3.86-isohybrid.patch
I would really appreciate it if somebody could have a look at it and let me know
the feedback.
Thank you.
---
Regards
-Prasad
PS: Please don't send me html/attachment/Fwd mails
Your Mail works best with the New Yahoo Optimized IE8. Get it NOW!
http://downloads.yahoo.com/in/internetexplorer/
Op 20100413 om 09:23 schreef Geert Stappers:> Op 20100413 om 08:27 schreef Geert Stappers: > > > > The Makefile target will look something like > > > > isohybrid: isohybrid.c $(ISOHDPFX) > > $(CC) $(UMAKEDEPS) $(CFLAGS) -o $@ isohybrid.c > > for f in $(ISOHDPFX) ; do cat $$f >> $@ ; done > > > > That is way too simple, it leaves out the > print "*\n"; > from the original bin2hex.plTry: isohybrid: isohybrid.c.in $(ISOHDPFX) bin2hex.pl cp -f isohybrid.c.in isohybrid.c for f in $(ISOHDPFX) ; do $(PERL) bin2hex.pl < $$f >> isohybrid.c ; done $(CC) $(UMAKEDEPS) $(CFLAGS) -o $@ isohybrid.c> The important part is that if any of the ISOHDPFX files > change, then must isohybrid be rebuild.Stappers