Subversion Repositories HelenOS

Rev

Rev 421 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 421 Rev 422
Line -... Line 1...
-
 
1
#
1
# Open Firmware
2
# Open Firmware
-
 
3
#
2
OFW=no
4
OFW=no
3
 
5
 
4
ifeq ($(ARCH),ppc32)
6
ifeq ($(ARCH),ppc32)
5
OFW=yes
7
OFW=yes
6
endif
8
endif
7
 
9
 
8
ifeq ($(ARCH),sparc64)
10
ifeq ($(ARCH),sparc64)
9
OFW=yes
11
OFW=yes
10
endif
12
endif
11
 
13
 
-
 
14
#
-
 
15
# Advanced Configuration and Power Interface (ACPI)
-
 
16
#
-
 
17
ACPI=no
-
 
18
 
-
 
19
ifeq ($(ARCH),ia32)
-
 
20
ACPI=yes
-
 
21
endif
-
 
22
 
-
 
23
ifeq ($(ARCH),amd64)
-
 
24
ACPI=yes
-
 
25
endif
-
 
26
 
-
 
27
ifeq ($(ARCH),ia64)
-
 
28
#ACPI=yes
-
 
29
endif
-
 
30
 
-
 
31
 
12
ifeq ($(OFW),yes)
32
ifeq ($(OFW),yes)
13
genarch_sources+=src/genarch/firmware/ofw/ofw.c
33
genarch_sources+=src/genarch/firmware/ofw/ofw.c
14
endif
34
endif
-
 
35
 
-
 
36
ifeq ($(ACPI),yes)
-
 
37
genarch_sources+=src/genarch/firmware/acpi/acpi.c \
-
 
38
		 src/genarch/firmware/acpi/madt.c
-
 
39
endif