lfn
serial
ticket/834-toolchain-update
topic/msim-upgrade
topic/simplify-dev-export
|
Last change
on this file since 807d2d4 was 807d2d4, checked in by Jakub Jermar <jakub@…>, 20 years ago |
|
Move ACPI code to genarch.
Enable it for ia32, amd64 and ia64.
For now, ia64 support is commented out.
|
-
Property mode
set to
100644
|
|
File size:
464 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+=src/genarch/firmware/ofw/ofw.c
|
|---|
| 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
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.