From 3727229222f23d151a4991ef3db451df6362ce83 Mon Sep 17 00:00:00 2001 From: Ricardo Martincoski Date: Sun, 27 Nov 2022 10:07:38 -0300 Subject: [PATCH] package/rpi-userland: fix typo for BR2_aarch64 Commit "59adb53c4c package/rpi-userland: add support for aarch64" introduced a typo in the condition that shows a comment in menuconfig. Fix the typo: BR2_arch64 -> BR2_aarch64 Cc: Mahyar Koshkouei Cc: Tim Gover Cc: Thomas Petazzoni Signed-off-by: Ricardo Martincoski Signed-off-by: Peter Korsgaard --- package/rpi-userland/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/rpi-userland/Config.in b/package/rpi-userland/Config.in index cfb472808b..4219bdb9c4 100644 --- a/package/rpi-userland/Config.in +++ b/package/rpi-userland/Config.in @@ -40,6 +40,6 @@ config BR2_PACKAGE_RPI_USERLAND_HELLO endif comment "rpi-userland needs a toolchain w/ C++, threads, dynamic library" - depends on BR2_arm || BR2_arch64 + depends on BR2_arm || BR2_aarch64 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ BR2_STATIC_LIBS