File: building.txt

package info (click to toggle)
syslinux 3%3A6.03%2Bdfsg-5%2Bdeb8u2
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 41,276 kB
  • sloc: ansic: 358,748; asm: 9,608; pascal: 4,809; perl: 3,894; makefile: 2,488; sh: 324; python: 266; xml: 39
file content (40 lines) | stat: -rw-r--r-- 1,205 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
			Building Syslinux

From Syslinux 6.0 onwards there is support for three different
firmware backends, BIOS, 32-bit EFI and 64-bit EFI. To allow users the
flexibility to build only the firmware they need the Syslinux make
infrastructure has become more complex.

The Syslinux make infrastructure understands the following syntax,

	make [firmware[,firwmware]] [target[,target]]

If no firmware is specified then any targets will be applied to all
three firmware backends. If no target is specified then the 'all'
target is implicitly built.

For example, to build the installers for BIOS, 32-bit EFI and 64-bit
EFI type,

	make installer

TO build the BIOS and 64-bit EFI installers type,

	make bios efi64 installer

To delete all object files and build the installer for 32-bit EFI
type,

	make efi32 spotless installer


      ++++ THE OBJECT DIRECTORY ++++

A custom top-level object directory can be specified on the make
command-line by using the O= variable, e.g.

	make O=/tmp/syslinux-obj efi32

will build the 32-bit object files under /tmp/syslinux-obj/efi32. If
no object directory is specified then object files will be written to
an 'obj' directory in the top-level of the Syslinux source.