diff options
Diffstat (limited to 'board/gumstix')
-rw-r--r-- | board/gumstix/duovero/Kconfig | 23 | ||||
-rw-r--r-- | board/gumstix/pepper/Kconfig | 23 |
2 files changed, 46 insertions, 0 deletions
diff --git a/board/gumstix/duovero/Kconfig b/board/gumstix/duovero/Kconfig new file mode 100644 index 0000000..d1b5c66 --- /dev/null +++ b/board/gumstix/duovero/Kconfig @@ -0,0 +1,23 @@ +if TARGET_DUOVERO + +config SYS_CPU + string + default "armv7" + +config SYS_BOARD + string + default "duovero" + +config SYS_VENDOR + string + default "gumstix" + +config SYS_SOC + string + default "omap4" + +config SYS_CONFIG_NAME + string + default "duovero" + +endif diff --git a/board/gumstix/pepper/Kconfig b/board/gumstix/pepper/Kconfig new file mode 100644 index 0000000..290b428 --- /dev/null +++ b/board/gumstix/pepper/Kconfig @@ -0,0 +1,23 @@ +if TARGET_PEPPER + +config SYS_CPU + string + default "armv7" + +config SYS_BOARD + string + default "pepper" + +config SYS_VENDOR + string + default "gumstix" + +config SYS_SOC + string + default "am33xx" + +config SYS_CONFIG_NAME + string + default "pepper" + +endif |