diff options
author | Tom Rini <trini@konsulko.com> | 2015-06-12 20:52:29 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-06-15 10:57:28 -0400 |
commit | 08520bf5e4da36ec4a190e7234cac3e7641dc6d5 (patch) | |
tree | 51649d92d6961232df22ec53881a48294d4e8423 /include/configs/omap5_uevm.h | |
parent | 6ce8932494043246667979b3efacdee5e4ec5dfd (diff) |
omap5: Exclude more environment from SPL builds
In the cases where we make use of environment in SPL we do not need
these defaults compiled in and available. These are taking up space
that in some cases now prevent linking, so drop.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/configs/omap5_uevm.h')
-rw-r--r-- | include/configs/omap5_uevm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/omap5_uevm.h b/include/configs/omap5_uevm.h index 4215156063..cb12c6c2ac 100644 --- a/include/configs/omap5_uevm.h +++ b/include/configs/omap5_uevm.h @@ -12,10 +12,12 @@ #ifndef __CONFIG_OMAP5_EVM_H #define __CONFIG_OMAP5_EVM_H +#ifndef CONFIG_SPL_BUILD /* Define the default GPT table for eMMC */ #define PARTS_DEFAULT \ "uuid_disk=${uuid_gpt_disk};" \ "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}" +#endif #include <configs/ti_omap5_common.h> |