diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-02-13 02:22:29 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-02-16 04:00:52 +0100 |
commit | d6650bf00632e5df056b10ff6bdc47d73fc170a2 (patch) | |
tree | e5563c8197d2849ceffffb12a19a3a0f03a29f47 /target | |
parent | ad4e267dd0e652d17d15696d6e3425627bfd8333 (diff) |
allow data partition on rpi5
Diffstat (limited to 'target')
-rw-r--r-- | target/aarch64/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/aarch64/Makefile b/target/aarch64/Makefile index 9c765aeb3..a461cf4d3 100644 --- a/target/aarch64/Makefile +++ b/target/aarch64/Makefile @@ -24,7 +24,7 @@ ifeq ($(ADK_TARGET_BOARD_BCM28XX),y) @echo "Use following command to install it on SD card:" @echo "sudo ./scripts/install.sh $(ADK_TARGET_SYSTEM) /dev/sdX $(FW_DIR)/$(ROOTFSTARBALL)" endif -ifeq ($(ADK_TARGET_SYSTEM_ROCKPI4_PLUS),y) +ifeq ($(ADK_TARGET_SYSTEM_ROCKPI4_PLUS)$(ADK_TARGET_SYSTEM_RASPBERRY_PI5),y) ifeq ($(ADK_RUNTIME_DATA_PARTITION),y) @echo "Use following command to install with a writable data partition" @echo "sudo ./scripts/install.sh -d 256 $(ADK_TARGET_SYSTEM) /dev/sdX $(FW_DIR)/$(ROOTFSTARBALL)" |