Displaying 5 results from an estimated 5 matches for "syslinux_ldlinuxc32".
2013 Jan 04
4
syslinux 5.00 does not build
...oftware/rpmbuild/BUILD/syslinux-5.00/libinstaller'
make: *** [installer] Error 2
error: Bad exit status from /var/tmp/rpm-tmp.48441 (%build)
Sure enough, syslinux-5.00/libinstaller/Makefile contains
ldlinuxc32_bin.c: ../com32/elflink/ldlinux/ldlinux.c32 bin2c.pl
$(PERL) bin2c.pl syslinux_ldlinuxc32 < $< > $@
However, there is no ../com32/elflink/ldlinux/ldlinux.c32 in the TAR
archive.
Did anybody ever check that syslinux 5.00 actually builds? Any
suggestions? Just comment out the rule in the Makefile?
Thanks.
2015 Nov 13
4
[PATCH 1/4] extlinux: simplification
...quot;/");
+ if (rv < 0 || !file) {
+ perror(program);
+ return 1;
+ }
+
+ fd = open(file, O_WRONLY | O_TRUNC | O_CREAT | O_SYNC,
+ S_IRUSR | S_IRGRP | S_IROTH);
+ if (fd < 0) {
+ perror(file);
+ free(file);
+ return 1;
+ }
+
+ rv = xpwrite(fd, (const char _force *)syslinux_ldlinuxc32,
+ syslinux_ldlinuxc32_len, 0);
+ if (rv != (int)syslinux_ldlinuxc32_len) {
+ fprintf(stderr, "%s: write failure on %s\n", program, file);
+ rv = 1;
+ } else
+ rv = 0;
+
+ close(fd);
+ free(file);
+
+ return rv;
+}
+
int ext2_fat_install_file(const char *path, int devfd,...
2016 Mar 05
2
build problems with 6.04-pre1
...BJ)/../bios/mbr/gptmbr.bin bin2c.pl
$(PERL) $(SRC)/bin2c.pl syslinux_gptmbr < $< > $@
installer: $(BINFILES)
-ldlinuxc32_bin.c: $(OBJ)/../com32/elflink/ldlinux/ldlinux.c32 bin2c.pl
+ldlinuxc32_bin.c: $(OBJ)/../bios/com32/elflink/ldlinux/ldlinux.c32 bin2c.pl
$(PERL) $(SRC)/bin2c.pl syslinux_ldlinuxc32 < $< > $@
+
tidy:
rm -f $(BINFILES)
--- syslinux-6.04-pre1-BROKEN/extlinux/Makefile.ORIG 2016-03-04 17:18:08.042337985 +0100
+++ syslinux-6.04-pre1-BROKEN/extlinux/Makefile 2016-03-04 17:18:39.170418875 +0100
@@ -17,7 +17,7 @@
include $(MAKEDIR)/syslinux.mk
OPTFLAGS = -g -Os
-IN...
2014 Dec 24
14
[PATCH 0/8] extlinux: support unmounted ext2/3/4 filesystem
Hello syslinux,
Merry Christmas! These patches will make extlinux work with umounted
ext2/3/4 filesystem, for example:
$ extlinux -i /dev/sdXN
or
$ extlinux -i file_block
Also it can work with something like:
$ extlinux /dev/sdXN --reset-adv
or
$ extlinux file_block --reset-adv
We don't use a new option (I planed to use "-d" but it is already in
use), it will check whether the
2015 Jan 02
13
[PATCH 0/9] linux/syslinux: support ext2/3/4 device
Hello,
Happy New Year!
These patches make syslinux/linux support ext2/3/4, and it doesn't
require the root privilege, I'd like to add a separate e2fs/syslinux, if
that is more appropriate, it should be easy to do that.
I put these patches on github so that you can easily get them in case
you'd like to test them. (The repo's name is sys_tmp, which avoids
confusing others, I will