diff options
author | Viacheslav Bocharov <adeep@lexina.in> | 2024-02-27 09:54:04 +0300 |
---|---|---|
committer | Neil Armstrong <neil.armstrong@linaro.org> | 2024-04-04 18:48:46 +0200 |
commit | 8c63d433c28e2d1d4100d14bed0d7fcffef36e4e (patch) | |
tree | 9a2af89a06f76172e593e88cfaeb9c4014d369c8 | |
parent | cdfcc37428e06f4730ab9a17cc084eeb7676ea1a (diff) |
board: amlogic: jethubj100: fix common config header
Fix JetHub board sequence to read correct gpio for rescue button
Signed-off-by: Viacheslav Bocharov <adeep@lexina.in>
Link: https://lore.kernel.org/r/20240227065551.580199-2-adeep@lexina.in
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
-rw-r--r-- | include/configs/jethub.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/jethub.h b/include/configs/jethub.h index e22db4991de..2c44bfc853e 100644 --- a/include/configs/jethub.h +++ b/include/configs/jethub.h @@ -11,7 +11,7 @@ #if defined(CONFIG_MESON_AXG) #define BOOTENV_DEV_RESCUE(devtypeu, devtypel, instance) \ "bootcmd_rescue=" \ - "if gpio input 10; then " \ + "if gpio input periphs-banks10; then " \ "run bootcmd_mmc0; " \ "run bootcmd_usb0;" \ "fi;\0" |