8681 loader: bios loader should check the smap while loading the modules
[unleashed.git] / usr / src / boot / sys / boot / i386 / libi386 / Makefile
blobee95aa3c61a27e3c97644d0ab0c91723e91cfc0c
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
13 # Copyright 2015 Toomas Soome <tsoome@me.com>
14 # Copyright 2016 RackTop Systems.
17 include $(SRC)/Makefile.master
19 CFLAGS= -O2 -I../../../../include -I../../..
20 CFLAGS += -DLOADER_ZFS_SUPPORT
21 CPPFLAGS= -DSTAND
23 all: libi386.a
25 clean: clobber
26 clobber:
27 $(RM) machine x86 $(OBJS) libi386.a
29 AS= $(GNU_ROOT)/bin/gas
30 CC= $(GCC_ROOT)/bin/gcc
31 OBJCOPY= $(GNU_ROOT)/bin/gobjcopy
32 AS_FLAGS=--32
33 ASFLAGS=-m32
34 AS_CPPFLAGS=
35 COMPILE.s = $(AS) $(AS_FLAGS)
37 SRCS= biosacpi.c bioscd.c biosdisk.c biosmem.c biospnp.c \
38 biospci.c biossmap.c bootinfo.c bootinfo32.c bootinfo64.c \
39 comconsole.c devicename.c elf32_freebsd.c \
40 elf64_freebsd.c multiboot.c multiboot_tramp.S \
41 i386_copy.c i386_module.c nullconsole.c pxe.c pxetramp.s \
42 smbios.c time.c vidconsole.c amd64_tramp.S spinconsole.c linux.c \
43 relocater_tramp.S
44 OBJS= biosacpi.o bioscd.o biosdisk.o biosmem.o biospnp.o \
45 biospci.o biossmap.o bootinfo.o bootinfo32.o bootinfo64.o \
46 comconsole.o devicename.o elf32_freebsd.o \
47 elf64_freebsd.o multiboot.o multiboot_tramp.o \
48 i386_copy.o i386_module.o nullconsole.o pxe.o pxetramp.o \
49 smbios.o time.o vidconsole.o amd64_tramp.o spinconsole.o linux.o \
50 relocater_tramp.o
52 LIBZFS= ../../zfs
53 SRCS += $(LIBZFS)/devicename_stubs.c
54 OBJS += devicename_stubs.o
56 BOOT_COMCONSOLE_PORT= 0x3f8
57 CFLAGS += -DCOMPORT=${BOOT_COMCONSOLE_PORT}
59 BOOT_COMCONSOLE_SPEED= 9600
60 CFLAGS += -DCOMSPEED=${BOOT_COMCONSOLE_SPEED}
62 # Make the disk code more talkative
63 # CFLAGS+= -DDISK_DEBUG
65 # Export serial numbers, UUID, and asset tag from loader.
66 CFLAGS += -DSMBIOS_SERIAL_NUMBERS
67 # Use little-endian UUID format as defined in SMBIOS 2.6.
68 CFLAGS += -DSMBIOS_LITTLE_ENDIAN_UUID
69 # Use network-endian UUID format for backward compatibility.
70 #CFLAGS += -DSMBIOS_NETWORK_ENDIAN_UUID
72 # Include simple terminal emulation (cons25-compatible)
73 CFLAGS += -DTERM_EMU
75 # XXX: make alloca() useable
76 CFLAGS += -Dalloca=__builtin_alloca
78 CFLAGS += -I$(SRC)/common/ficl -I../../ficl \
79 -I../../common -I../common \
80 -I../btx/lib \
81 -I$(SRC)/uts/intel/sys/acpi \
82 -I../../.. -I.
83 # the location of libstand
84 CFLAGS += -I../../../../lib/libstand/
86 # Handle FreeBSD specific %b and %D printf format specifiers
87 #FORMAT_EXTENSIONS=-D__printf__=__freebsd_kprintf__
88 #CFLAGS += ${FORMAT_EXTENSIONS}
90 CLEANFILES += machine x86
92 # XXX: clang integrated-as doesn't grok .codeNN directives yet
93 # CFLAGS.amd64_tramp.S= ${CLANG_NO_IAS}
94 # CFLAGS.multiboot_tramp.S= ${CLANG_NO_IAS}
95 # CFLAGS += ${CFLAGS.${.IMPSRC:T}}
97 include ../Makefile.inc
99 # For multiboot2.h, must be last, to avoid conflicts
100 CPPFLAGS += -I$(SRC)/uts/common
102 machine:
103 $(RM) machine
104 $(SYMLINK) ../../../i386/include machine
106 x86:
107 $(RM) x86
108 $(SYMLINK) ../../../x86/include x86
110 $(OBJS): machine x86
112 libi386.a: $(OBJS)
113 $(AR) $(ARFLAGS) $@ $(OBJS)
115 %.o: $(LIBZFS)/%.c
116 $(COMPILE.c) -o $@ $<