diff options
Diffstat (limited to 'target/device')
-rw-r--r-- | target/device/Config.in | 5 | ||||
-rw-r--r-- | target/device/Makefile.in | 1 | ||||
-rw-r--r-- | target/device/generic/Config.in | 5 | ||||
-rw-r--r-- | target/device/generic/access_point/Config.in | 6 | ||||
-rw-r--r-- | target/device/generic/firewall/Config.in | 6 |
5 files changed, 23 insertions, 0 deletions
diff --git a/target/device/Config.in b/target/device/Config.in new file mode 100644 index 000000000..92be4b73d --- /dev/null +++ b/target/device/Config.in @@ -0,0 +1,5 @@ +menu "Board Support Options" + +source "target/device/generic/Config.in" + +endmenu diff --git a/target/device/Makefile.in b/target/device/Makefile.in new file mode 100644 index 000000000..87a680115 --- /dev/null +++ b/target/device/Makefile.in @@ -0,0 +1 @@ +-include target/device/*/Makefile.in diff --git a/target/device/generic/Config.in b/target/device/generic/Config.in new file mode 100644 index 000000000..29127691f --- /dev/null +++ b/target/device/generic/Config.in @@ -0,0 +1,5 @@ +comment "Generic Device Support" + +source "target/device/generic/access_point/Config.in" +source "target/device/generic/firewall/Config.in" + diff --git a/target/device/generic/access_point/Config.in b/target/device/generic/access_point/Config.in new file mode 100644 index 000000000..b0166d2f6 --- /dev/null +++ b/target/device/generic/access_point/Config.in @@ -0,0 +1,6 @@ +config BR2_TARGET_GENERIC_ACCESS_POINT + bool "Generic wireless access point" + default n + help + Board support for a generic wireless access point. + diff --git a/target/device/generic/firewall/Config.in b/target/device/generic/firewall/Config.in new file mode 100644 index 000000000..d20681b15 --- /dev/null +++ b/target/device/generic/firewall/Config.in @@ -0,0 +1,6 @@ +config BR2_TARGET_GENERIC_ACCESS_POINT + bool "Generic firewall" + default n + help + Board support for a generic firewalling router. + |