Infineon: Add cyw20829 platform, shared slot feature, json memory map, psoc6 xip
diff --git a/boot/cypress/scripts/github_pr_cleaner.py b/boot/cypress/scripts/github_pr_cleaner.py
new file mode 100644
index 0000000..be26c07
--- /dev/null
+++ b/boot/cypress/scripts/github_pr_cleaner.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+
+import shutil
+from os import remove
+from sys import argv
+
+shutil.rmtree('../cppcheck')
+shutil.rmtree('../coverity')
+remove('../../../.gitlab-ci.yml')
+remove('../BlinkyApp/BlinkyApp_CM4_Debug.launch')
+remove('../MCUBootApp/MCUBootApp_CM0P_Debug.launch')
+remove('../MCUBootApp/MCUBootApp_CYW20829_Debug.launch')
+remove('../cy_flash_pal/flash_cyw208xx/flashmap/cyw20829_xip_swap_single_psvp.json')
+remove('../cy_flash_pal/flash_cyw208xx/flashmap/cyw20829_xip_swap_multi2_psvp.json')
+remove('../cy_flash_pal/flash_cyw208xx/flashmap/cyw20829_xip_overwrite_single_psvp.json')
+remove('../cy_flash_pal/flash_cyw208xx/flashmap/cyw20829_xip_overwrite_multi2_psvp.json')
+remove('./cppcheck-htmlreport.py')
+remove('./rbc_policy_and_cert_revision_modify.py')
+remove('../platforms/CYW20829/cyw20829_psvp.h')
+remove(argv[0])
+
+print('Cleanup complete')