From 469b68b0d38ca658be48c89464f9dc5ffd8a4b56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20T=C3=B6rnblom?= Date: Sat, 6 Apr 2024 00:02:22 +0200 Subject: [PATCH] accommodate for sdk api change --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7497fe2..6989437 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PS5_HOST ?= ps5 PS5_PORT ?= 9021 ifdef PS5_PAYLOAD_SDK - include $(PS5_PAYLOAD_SDK)/make/x86_64-ps5-payload.inc + include $(PS5_PAYLOAD_SDK)/make/toolchain.mk else $(error PS5_PAYLOAD_SDK is undefined) endif @@ -40,5 +40,5 @@ clean: rm -f *.o $(ELF) test: $(ELF) - $(PS5_PAYLOAD_DEPLOY) -h $(PS5_HOST) -p $(PS5_PORT) $^ + $(PS5_DEPLOY) -h $(PS5_HOST) -p $(PS5_PORT) $^