lfn
serial
ticket/834-toolchain-update
topic/msim-upgrade
topic/simplify-dev-export
Last change
on this file since d90ca68 was 169c408, checked in by Jakub Jermar <jakub@…>, 20 years ago |
Move src/ and include/ to generic.
|
-
Property mode
set to
100644
|
File size:
488 bytes
|
Line | |
---|
1 | #
|
---|
2 | # Open Firmware
|
---|
3 | #
|
---|
4 | OFW=no
|
---|
5 |
|
---|
6 | ifeq ($(ARCH),ppc32)
|
---|
7 | OFW=yes
|
---|
8 | endif
|
---|
9 |
|
---|
10 | ifeq ($(ARCH),sparc64)
|
---|
11 | OFW=yes
|
---|
12 | endif
|
---|
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 |
|
---|
32 | ifeq ($(OFW),yes)
|
---|
33 | genarch_sources+=generic/src/genarch/firmware/ofw/ofw.c
|
---|
34 | endif
|
---|
35 |
|
---|
36 | ifeq ($(ACPI),yes)
|
---|
37 | genarch_sources+=generic/src/genarch/firmware/acpi/acpi.c \
|
---|
38 | generic/src/genarch/firmware/acpi/madt.c
|
---|
39 | endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.