diff --git a/libports/run/lwip.run b/libports/run/lwip.run
index 76e304f457..dcbd3c4a55 100644
--- a/libports/run/lwip.run
+++ b/libports/run/lwip.run
@@ -35,6 +35,8 @@ set build_components {
}
lappend_if [have_spec omap4] build_components drivers/usb
+lappend_if [have_spec acpi] build_components drivers/acpi
+lappend_if [have_spec pci] build_components drivers/pci/device_pd
build $build_components
@@ -87,9 +89,23 @@ append_if [expr ![have_spec omap4]] config {
}
-append_if [have_spec pci] config {
+append_if [have_spec acpi] config {
+
+
+
+
+
+
+
+
+
+
+
+ }
+
+append_if [expr ![have_spec acpi] && [have_spec pci]] config {
-
+
}
@@ -110,9 +126,11 @@ set boot_modules {
}
# platform-specific modules
+lappend_if [have_spec acpi] boot_modules acpi_drv
lappend_if [have_spec pci] boot_modules pci_drv
lappend_if [have_spec omap4] boot_modules usb_drv
lappend_if [expr ![have_spec omap4]] boot_modules nic_drv
+lappend_if [have_spec nova] boot_modules pci_device_pd
build_boot_image $boot_modules