Add x86_32 requirement to AHCI and ACPI drivers

This commit is contained in:
Norman Feske 2012-03-16 14:53:56 +01:00
parent cca4b7b43c
commit db8058c16f
3 changed files with 10 additions and 5 deletions

View File

@ -1,7 +1,11 @@
if {![have_spec x86_32]} {
puts "\nThe AHCI driver supports the x86_32 architecture only\n"
exit 0
}
#
# Build
#
set build_components {
core init drivers/timer drivers/pci drivers/acpi
drivers/ahci test/ahci

View File

@ -1,5 +1,5 @@
TARGET = acpi_drv
REQUIRES = x86
REQUIRES = x86_32
SRC_CC = main.cc acpi.cc
LIBS = cxx env server process

View File

@ -1,4 +1,5 @@
TARGET = ahci_drv
SRC_CC = main.cc
LIBS = cxx env server signal
TARGET = ahci_drv
REQUIRES = x86_32
SRC_CC = main.cc
LIBS = cxx env server signal