
From: Stephen Warren swarren@nvidia.com
This is extremely likely to be used from the boot.scr that Tegra's default bootcmd locates and executes.
Signed-off-by: Stephen Warren swarren@nvidia.com --- include/configs/tegra20-common-post.h | 5 +++++ include/configs/tegra20-common.h | 1 + 2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/include/configs/tegra20-common-post.h b/include/configs/tegra20-common-post.h index 42f270f..b7bbc0c 100644 --- a/include/configs/tegra20-common-post.h +++ b/include/configs/tegra20-common-post.h @@ -209,6 +209,11 @@ #undef CONFIG_CMD_USB #endif
+/* remove partuuid command support */ +#ifdef CONFIG_CMD_PARTUUID +#undef CONFIG_CMD_PARTUUID +#endif + #endif /* CONFIG_SPL_BUILD */
#endif /* __TEGRA20_COMMON_POST_H */ diff --git a/include/configs/tegra20-common.h b/include/configs/tegra20-common.h index c9e8b6b..c76eea4 100644 --- a/include/configs/tegra20-common.h +++ b/include/configs/tegra20-common.h @@ -113,6 +113,7 @@
/* include default commands */ #include <config_cmd_default.h> +#define CONFIG_CMD_PARTUUID
/* remove unused commands */ #undef CONFIG_CMD_FLASH /* flinfo, erase, protect */