浏览代码

boot/at91bootstrap3: move BR2_TARGET_AT91BOOTSTRAP3_NEEDS_PYTHON3

As spotted by Eugen, BR2_TARGET_AT91BOOTSTRAP3_NEEDS_PYTHON3 currently
is outside the at91bootstrap section, because it was inccorectly added
after the 'endif' statement rather than before, which makes the
menuconfig layout weird.

Move it around.

Reported-by: Eugen Hristev <eugen.hristev@microchip.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Yann E. MORIN 4 年之前
父节点
当前提交
a86318a79f
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      boot/at91bootstrap3/Config.in

+ 2 - 2
boot/at91bootstrap3/Config.in

@@ -100,8 +100,6 @@ config BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_CONFIG_FILE
 	help
 	help
 	  Path to the at91bootstrap3 configuration file
 	  Path to the at91bootstrap3 configuration file
 
 
-endif # BR2_TARGET_AT91BOOTSTRAP3
-
 config BR2_TARGET_AT91BOOTSTRAP3_NEEDS_PYTHON3
 config BR2_TARGET_AT91BOOTSTRAP3_NEEDS_PYTHON3
 	bool "needs host-python3"
 	bool "needs host-python3"
 	help
 	help
@@ -109,3 +107,5 @@ config BR2_TARGET_AT91BOOTSTRAP3_NEEDS_PYTHON3
 	  Python 3.x to be available on the host. This is needed in
 	  Python 3.x to be available on the host. This is needed in
 	  some at91bootstrap configurations to use NAND/PMECC Python
 	  some at91bootstrap configurations to use NAND/PMECC Python
 	  scripts.
 	  scripts.
+
+endif # BR2_TARGET_AT91BOOTSTRAP3