Displaying 4 results from an estimated 4 matches for "suffix_number".
2011 Feb 08
1
[PATCH][git-pull] MEMDISK: Process "mem=" parameter and apply to e820 ranges
...;mem=134217728"; same value) and alter the memory map
that MEMDISK returns in INT15h AXe820h by changing any type 1
(available) ranges above the "mem=" value to type 2 (reserved) and
splitting a type 1 that crosses this boundary if needed. This reuses
code from com32/lib/ and copies suffix_number() from
com32/lib/syslinux/load_linux.c to com32/libutil/suffix_number.c.
This has shown useful for an end user when using a particular legacy
DOS application in a machine with 1024MiB or more of RAM. Specifying
"mem=" without modifying MEMDISK was insufficient.
--
-Gene
2016 Mar 20
0
[PATCH 0/1] EFI image booting capabilities
...and let
the file name and description go first?
> +
> +#include <ctype.h>
> +#include <stdbool.h>
> +#include <stdlib.h>
> +#include <inttypes.h>
> +#include <string.h>
> +#include <minmax.h>
> +#include <errno.h>
> +#include <suffix_number.h>
> +#include <dprintf.h>
> +
> +#include <syslinux/align.h>
> +#include <syslinux/linux.h>
> +#include <syslinux/bootrm.h>
> +#include <syslinux/movebits.h>
> +#include <syslinux/firmware.h>
> +#include <syslinux/video.h>
> +...
2015 Feb 20
6
[PATCH 0/1] EFI image booting capabilities
...by Patrick Masotta (Serva) (c)2015
+ */
+
+/*
+ * load_efi.c
+ *
+ * Load an efi image
+ */
+
+#include <ctype.h>
+#include <stdbool.h>
+#include <stdlib.h>
+#include <inttypes.h>
+#include <string.h>
+#include <minmax.h>
+#include <errno.h>
+#include <suffix_number.h>
+#include <dprintf.h>
+
+#include <syslinux/align.h>
+#include <syslinux/linux.h>
+#include <syslinux/bootrm.h>
+#include <syslinux/movebits.h>
+#include <syslinux/firmware.h>
+#include <syslinux/video.h>
+
+
+
+int syslinux_boot_efi(void *kernel_buf,...
2015 Sep 24
0
[PATCH] com32/disk: add UEFI support
...yslinux/setup_data.o
+
+LIBPCI_OBJS = \
+ pci/cfgtype.o pci/scan.o pci/bios.o \
+ pci/readb.o pci/readw.o pci/readl.o \
+ pci/writeb.o pci/writew.o pci/writel.o
+
LIBOTHER_OBJS = \
atoi.o atol.o atoll.o calloc.o creat.o \
fgets.o fprintf.o fputc.o \
@@ -86,29 +135,7 @@ LIBOTHER_OBJS = \
\
suffix_number.o \
\
- getcwd.o fdopendir.o \
- \
- sys/line_input.o \
- sys/colortable.o sys/screensize.o \
- \
- sys/stdcon_read.o sys/stdcon_write.o sys/rawcon_read.o \
- sys/rawcon_write.o \
- sys/null_read.o sys/null_write.o sys/serial_write.o \
- \
- sys/xserial_write.o \
- \
- sys/ans...