projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
47b9174
)
tizen: limit boot to MMC0 and MMC1 devices
author
Marek Szyprowski
<m.szyprowski@samsung.com>
Thu, 3 Dec 2020 10:57:48 +0000
(11:57 +0100)
committer
Jaehoon Chung
<jh80.chung@samsung.com>
Tue, 17 Oct 2023 04:19:27 +0000
(13:19 +0900)
Other types of boot are not supported on Tizen, so disable generating
scripts and envs for them.
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Change-Id: Ibe41e9ff8e60aa6949f4a082276083adde33e187
include/samsung/tizen_amlogic.h
patch
|
blob
|
history
diff --git
a/include/samsung/tizen_amlogic.h
b/include/samsung/tizen_amlogic.h
index
444214a
..
b00ee42
100644
(file)
--- a/
include/samsung/tizen_amlogic.h
+++ b/
include/samsung/tizen_amlogic.h
@@
-105,4
+105,10
@@
#define CONFIG_TIZEN
+/* limit boot to mmc0 and mmc1 */
+#undef BOOT_TARGET_DEVICES
+#define BOOT_TARGET_DEVICES(func) \
+ func(MMC, mmc, 0) \
+ func(MMC, mmc, 1)
+
#endif /* __CONFIG_TIZEN_AMLOGIC_H */