Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
removing double l from auxilliary
This patch changes only strings, no program code.

Reported-by: Ady <ady-sf@hotmail.com>
Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
  • Loading branch information
stappersg authored and geneC committed Jun 7, 2016
1 parent 1a74985 commit b53066d
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion NEWS
Expand Up @@ -768,7 +768,7 @@ Changes in 3.61:
memory regions in the e820 map.

Changes in 3.60:
* Support for "auxilliary data vector", a small amount of
* Support for "auxiliary data vector", a small amount of
writable storage. Currently only supported for EXTLINUX,
but the infrastructure is there for the other derivatives,
assuming a suitable storage location can be found.
Expand Down
2 changes: 1 addition & 1 deletion com32/elflink/ldlinux/adv.c
Expand Up @@ -28,7 +28,7 @@
/*
* syslinux/adv.c
*
* Access the syslinux auxilliary data vector
* Access the syslinux auxiliary data vector
*/

#include <syslinux/adv.h>
Expand Down
2 changes: 1 addition & 1 deletion com32/elflink/ldlinux/getadv.c
Expand Up @@ -28,7 +28,7 @@
/*
* syslinux/getadv.c
*
* Get a data item from the auxilliary data vector. Returns a pointer
* Get a data item from the auxiliary data vector. Returns a pointer
* and sets *size on success; NULL on failure.
*/

Expand Down
2 changes: 1 addition & 1 deletion com32/elflink/ldlinux/setadv.c
Expand Up @@ -29,7 +29,7 @@
/*
* syslinux/setadv.c
*
* (Over)write a data item in the auxilliary data vector. To
* (Over)write a data item in the auxiliary data vector. To
* delete an item, set its length to zero.
*
* Return 0 on success, -1 on error, and set errno.
Expand Down
2 changes: 1 addition & 1 deletion com32/include/sys/elfcommon.h
Expand Up @@ -162,7 +162,7 @@
#define DT_EXTRATAGIDX(tag) ((Elf32_Word)-((Elf32_Sword) (tag) <<1>>1)-1)
#define DT_EXTRANUM 3

/* Auxilliary table entries */
/* Auxiliary table entries */
#define AT_NULL 0 /* end of vector */
#define AT_IGNORE 1 /* entry should be ignored */
#define AT_EXECFD 2 /* file descriptor of program */
Expand Down
4 changes: 2 additions & 2 deletions com32/mboot/mboot.c
Expand Up @@ -223,13 +223,13 @@ int main(int argc, char *argv[])
mbinfo.flags |= MB_INFO_CMDLINE;
}

/* Map auxilliary images */
/* Map auxiliary images */
if (nmodules > 1) {
if (map_modules(modules + 1, nmodules - 1))
return 1;
}

/* Add auxilliary information */
/* Add auxiliary information */
mboot_make_memmap();
mboot_apm();
mboot_syslinux_info();
Expand Down
2 changes: 1 addition & 1 deletion core/i386/syslinux.ld
Expand Up @@ -207,7 +207,7 @@ SECTIONS
xfer_buf_seg = core_xfer_buf >> 4;

/*
* The auxilliary data segment is used by the 16-bit code
* The auxiliary data segment is used by the 16-bit code
* for items that don't need to live in the bottom 64K.
*/

Expand Down
2 changes: 1 addition & 1 deletion doc/extlinux.txt
Expand Up @@ -48,7 +48,7 @@ slight modifications.

5. EXTLINUX now has "boot-once" support. The boot-once information is
stored in an on-disk datastructure, part of extlinux.sys, called
the "Auxillary Data Vector". The Auxilliary Data Vector is also
the "Auxillary Data Vector". The Auxiliary Data Vector is also
available to COM32 modules that want to store small amounts of
information.

Expand Down
2 changes: 1 addition & 1 deletion efi/adv.c
Expand Up @@ -283,7 +283,7 @@ int efi_adv_write(void)
}

if (err == -2)
efi_printerr(L"%s: cannot write auxilliary data (need --update)?\n",
efi_printerr(L"%s: cannot write auxiliary data (need --update)?\n",
file);
else if (err == -1)
efi_perror(L"efi_adv_write:");
Expand Down
2 changes: 1 addition & 1 deletion libinstaller/advio.c
Expand Up @@ -150,7 +150,7 @@ int write_adv(const char *path, const char *cfg)
}

if (err == -2)
fprintf(stderr, "%s: cannot write auxilliary data (need --update)?\n",
fprintf(stderr, "%s: cannot write auxiliary data (need --update)?\n",
file);
else if (err == -1)
perror(file);
Expand Down
2 changes: 1 addition & 1 deletion libinstaller/setadv.c
Expand Up @@ -14,7 +14,7 @@
/*
* setadv.c
*
* (Over)write a data item in the auxilliary data vector. To
* (Over)write a data item in the auxiliary data vector. To
* delete an item, set its length to zero.
*
* Return 0 on success, -1 on error, and set errno.
Expand Down
2 changes: 1 addition & 1 deletion libinstaller/syslxopt.c
Expand Up @@ -112,7 +112,7 @@ void __attribute__ ((noreturn)) usage(int rv, enum syslinux_mode mode)
" --raid -r Fall back to the next device on boot failure\n"
" --once=... %s Execute a command once upon boot\n"
" --clear-once -O Clear the boot-once command\n"
" --reset-adv Reset auxilliary data\n",
" --reset-adv Reset auxiliary data\n",
mode == MODE_SYSLINUX ? " " : "-o");
/*
* Have to chop this roughly in half for the DOS installer due
Expand Down
2 changes: 1 addition & 1 deletion syslinux.spec.in
Expand Up @@ -231,7 +231,7 @@ fi

* Fri Apr 13 2001 H. Peter Anvin <hpa@zytor.com>
- Upgrade to 1.61
- Install auxilliary programs in /usr/lib/syslinux
- Install auxiliary programs in /usr/lib/syslinux

* Sat Feb 10 2001 Matt Wilson <msw@redhat.com>
- 1.52
Expand Down

0 comments on commit b53066d

Please sign in to comment.