mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-09-15 11:02:58 +00:00
Combine per-device firmware ZIPs into a single unified flasher (#3070)
* Add combined firmware ZIP creation and update flashing script for device selection * Refactor firmware flashing scripts and update README for improved device selection and actions * Remove outdated flash script for PortaPack Mayhem * Add write permissions to release jobs in nightly and stable release workflows * Rename HackRF firmware files for consistency in nightly and stable release workflows * Refactor release workflows to streamline asset preparation and upload process * Fix file paths for HackRF firmware in nightly and stable release workflows * Updated labels * Refactor mayhem_flasher.bat for improved clarity * Added reset after flash Updated the flashing script to include error handling and improved user prompts. * Remove --reset from DFU as it is known to cause issues
This commit is contained in:
@@ -72,7 +72,7 @@ jobs:
|
|||||||
unzip world_map.zip -d sdcard/ADSB
|
unzip world_map.zip -d sdcard/ADSB
|
||||||
- name: Prepare Firmware ZIP
|
- name: Prepare Firmware ZIP
|
||||||
run: |
|
run: |
|
||||||
cp build/hackrf/firmware/hackrf_usb/hackrf_usb.dfu flashing/utils/hackrf_usb.dfu && cp build/hackrf/firmware/hackrf_usb/hackrf_usb.bin flashing/utils/hackrf_usb.bin
|
mkdir -p flashing/firmware && cp build/hackrf/firmware/hackrf_usb/hackrf_usb.dfu flashing/firmware/hackrf_usb.dfu && cp build/hackrf/firmware/hackrf_usb/hackrf_usb.bin flashing/firmware/hackrf_usb.bin
|
||||||
- name: Create Firmware ZIP
|
- name: Create Firmware ZIP
|
||||||
run: |
|
run: |
|
||||||
zip -j firmware.zip build/firmware/portapack-mayhem-firmware.bin && cd flashing && zip -r ../firmware.zip *
|
zip -j firmware.zip build/firmware/portapack-mayhem-firmware.bin && cd flashing && zip -r ../firmware.zip *
|
||||||
@@ -103,6 +103,8 @@ jobs:
|
|||||||
release:
|
release:
|
||||||
needs: build
|
needs: build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- name: Get current date
|
- name: Get current date
|
||||||
id: date
|
id: date
|
||||||
@@ -129,14 +131,42 @@ jobs:
|
|||||||
echo EOF
|
echo EOF
|
||||||
} >> "$GITHUB_OUTPUT"
|
} >> "$GITHUB_OUTPUT"
|
||||||
id: changelog
|
id: changelog
|
||||||
|
# Combine all 3 device firmware bins into a single zip with device selector bat
|
||||||
|
- name: Create Combined Firmware ZIP
|
||||||
|
run: |
|
||||||
|
mkdir -p firmware_combined
|
||||||
|
unzip artifacts/firmware-default/firmware.zip -d firmware_combined
|
||||||
|
mv firmware_combined/portapack-mayhem-firmware.bin firmware_combined/firmware/firmware_hackrf.bin
|
||||||
|
unzip -j artifacts/firmware-portarf/firmware.zip portapack-mayhem-firmware.bin -d firmware_combined/firmware
|
||||||
|
mv firmware_combined/firmware/portapack-mayhem-firmware.bin firmware_combined/firmware/firmware_portarf.bin
|
||||||
|
unzip -j artifacts/firmware-hpro/firmware.zip portapack-mayhem-firmware.bin -d firmware_combined/firmware
|
||||||
|
mv firmware_combined/firmware/portapack-mayhem-firmware.bin firmware_combined/firmware/firmware_hpro.bin
|
||||||
|
unzip -j artifacts/firmware-hpro/firmware.zip firmware/hackrf_usb.dfu firmware/hackrf_usb.bin -d firmware_combined_hpro
|
||||||
|
mv firmware_combined_hpro/hackrf_usb.dfu firmware_combined/firmware/hackrf_hpro_usb.dfu
|
||||||
|
mv firmware_combined_hpro/hackrf_usb.bin firmware_combined/firmware/hackrf_hpro_usb.bin
|
||||||
|
cd firmware_combined && zip -r ../firmware_all_devices.zip . && cd ..
|
||||||
|
- name: Prepare release assets
|
||||||
|
run: |
|
||||||
|
VER="${{ steps.version_date.outputs.date }}"
|
||||||
|
mkdir -p release_assets
|
||||||
|
# OCI tar assets
|
||||||
|
cp artifacts/oci-tar-default/portapack-mayhem_OCI.ppfw.tar "release_assets/OCI_hackrf_mayhem_nightly_${VER}.ppfw.tar"
|
||||||
|
cp artifacts/oci-tar-portarf/portapack-mayhem_OCI.ppfw.tar "release_assets/OCI_portarf_mayhem_nightly_${VER}.ppfw.tar"
|
||||||
|
cp artifacts/oci-tar-hpro/portapack-mayhem_OCI.ppfw.tar "release_assets/OCI_hpro_mayhem_nightly_${VER}.ppfw.tar"
|
||||||
|
# Combined firmware
|
||||||
|
cp firmware_all_devices.zip "release_assets/FIRMWARE_mayhem_nightly_${VER}.zip"
|
||||||
|
# SD card assets
|
||||||
|
cp artifacts/sdcard-default/sdcard.zip "release_assets/COPY_TO_SDCARD_hackrf_mayhem_nightly_${VER}.zip"
|
||||||
|
cp artifacts/sdcard-no-map-default/sdcard-no-map.zip "release_assets/COPY_TO_SDCARD_hackrf_mayhem_nightly_${VER}-no-world-map.zip"
|
||||||
|
cp artifacts/sdcard-portarf/sdcard.zip "release_assets/COPY_TO_SDCARD_portarf_mayhem_nightly_${VER}.zip"
|
||||||
|
cp artifacts/sdcard-no-map-portarf/sdcard-no-map.zip "release_assets/COPY_TO_SDCARD_portarf_mayhem_nightly_${VER}-no-world-map.zip"
|
||||||
|
cp artifacts/sdcard-hpro/sdcard.zip "release_assets/COPY_TO_SDCARD_hpro_mayhem_nightly_${VER}.zip"
|
||||||
|
cp artifacts/sdcard-no-map-hpro/sdcard-no-map.zip "release_assets/COPY_TO_SDCARD_hpro_mayhem_nightly_${VER}-no-world-map.zip"
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
id: create_release
|
uses: softprops/action-gh-release@v2
|
||||||
uses: actions/create-release@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
with:
|
||||||
tag_name: nightly-tag-${{ steps.date.outputs.date }}
|
tag_name: nightly-tag-${{ steps.date.outputs.date }}
|
||||||
release_name: Nightly Release - ${{ steps.date.outputs.date }}
|
name: Nightly Release - ${{ steps.date.outputs.date }}
|
||||||
body: |
|
body: |
|
||||||
**Nightly release - ${{ steps.date.outputs.date }}**
|
**Nightly release - ${{ steps.date.outputs.date }}**
|
||||||
This build is the latest and greatest, although may not be the most stable as this is a nightly release.
|
This build is the latest and greatest, although may not be the most stable as this is a nightly release.
|
||||||
@@ -145,114 +175,4 @@ jobs:
|
|||||||
${{ steps.changelog.outputs.content }}
|
${{ steps.changelog.outputs.content }}
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: true
|
prerelease: true
|
||||||
# Default device assets
|
files: release_assets/*
|
||||||
- name: Upload Default Firmware TAR Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/oci-tar-default/portapack-mayhem_OCI.ppfw.tar
|
|
||||||
asset_name: OCI_hackrf_mayhem_nightly_${{ steps.version_date.outputs.date }}.ppfw.tar
|
|
||||||
asset_content_type: application/x-tar
|
|
||||||
- name: Upload Default Firmware Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/firmware-default/firmware.zip
|
|
||||||
asset_name: FIRMWARE_hackrf_mayhem_nightly_${{ steps.version_date.outputs.date }}.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
- name: Upload Default SD Card Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/sdcard-default/sdcard.zip
|
|
||||||
asset_name: COPY_TO_SDCARD_hackrf_mayhem_nightly_${{ steps.version_date.outputs.date }}.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
- name: Upload Default SD Card Asset - No Map
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/sdcard-no-map-default/sdcard-no-map.zip
|
|
||||||
asset_name: COPY_TO_SDCARD_hackrf_mayhem_nightly_${{ steps.version_date.outputs.date }}-no-world-map.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
# PortaRF device assets
|
|
||||||
- name: Upload PortaRF Firmware TAR Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/oci-tar-portarf/portapack-mayhem_OCI.ppfw.tar
|
|
||||||
asset_name: OCI_portarf_mayhem_nightly_${{ steps.version_date.outputs.date }}.ppfw.tar
|
|
||||||
asset_content_type: application/x-tar
|
|
||||||
- name: Upload PortaRF Firmware Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/firmware-portarf/firmware.zip
|
|
||||||
asset_name: FIRMWARE_portarf_mayhem_nightly_${{ steps.version_date.outputs.date }}.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
- name: Upload PortaRF SD Card Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/sdcard-portarf/sdcard.zip
|
|
||||||
asset_name: COPY_TO_SDCARD_portarf_mayhem_nightly_${{ steps.version_date.outputs.date }}.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
- name: Upload PortaRF SD Card Asset - No Map
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/sdcard-no-map-portarf/sdcard-no-map.zip
|
|
||||||
asset_name: COPY_TO_SDCARD_portarf_mayhem_nightly_${{ steps.version_date.outputs.date }}-no-world-map.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
# HPro device assets
|
|
||||||
- name: Upload HPro Firmware TAR Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/oci-tar-hpro/portapack-mayhem_OCI.ppfw.tar
|
|
||||||
asset_name: OCI_hpro_mayhem_nightly_${{ steps.version_date.outputs.date }}.ppfw.tar
|
|
||||||
asset_content_type: application/x-tar
|
|
||||||
- name: Upload HPro Firmware Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/firmware-hpro/firmware.zip
|
|
||||||
asset_name: FIRMWARE_hpro_mayhem_nightly_${{ steps.version_date.outputs.date }}.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
- name: Upload HPro SD Card Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/sdcard-hpro/sdcard.zip
|
|
||||||
asset_name: COPY_TO_SDCARD_hpro_mayhem_nightly_${{ steps.version_date.outputs.date }}.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
- name: Upload HPro SD Card Asset - No Map
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/sdcard-no-map-hpro/sdcard-no-map.zip
|
|
||||||
asset_name: COPY_TO_SDCARD_hpro_mayhem_nightly_${{ steps.version_date.outputs.date }}-no-world-map.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ jobs:
|
|||||||
unzip world_map.zip -d sdcard/ADSB
|
unzip world_map.zip -d sdcard/ADSB
|
||||||
- name: Prepare Firmware ZIP
|
- name: Prepare Firmware ZIP
|
||||||
run: |
|
run: |
|
||||||
cp build/hackrf/firmware/hackrf_usb/hackrf_usb.dfu flashing/utils/hackrf_usb.dfu && cp build/hackrf/firmware/hackrf_usb/hackrf_usb.bin flashing/utils/hackrf_usb.bin
|
mkdir -p flashing/firmware && cp build/hackrf/firmware/hackrf_usb/hackrf_usb.dfu flashing/firmware/hackrf_usb.dfu && cp build/hackrf/firmware/hackrf_usb/hackrf_usb.bin flashing/firmware/hackrf_usb.bin
|
||||||
- name: Create Firmware ZIP
|
- name: Create Firmware ZIP
|
||||||
run: |
|
run: |
|
||||||
zip -j firmware.zip build/firmware/portapack-mayhem-firmware.bin && cd flashing && zip -r ../firmware.zip *
|
zip -j firmware.zip build/firmware/portapack-mayhem-firmware.bin && cd flashing && zip -r ../firmware.zip *
|
||||||
@@ -86,6 +86,8 @@ jobs:
|
|||||||
release:
|
release:
|
||||||
needs: build
|
needs: build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- name: Get current date
|
- name: Get current date
|
||||||
id: date
|
id: date
|
||||||
@@ -115,14 +117,42 @@ jobs:
|
|||||||
echo EOF
|
echo EOF
|
||||||
} >> "$GITHUB_OUTPUT"
|
} >> "$GITHUB_OUTPUT"
|
||||||
id: changelog
|
id: changelog
|
||||||
|
# Combine all 3 device firmware bins into a single zip with device selector bat
|
||||||
|
- name: Create Combined Firmware ZIP
|
||||||
|
run: |
|
||||||
|
mkdir -p firmware_combined
|
||||||
|
unzip artifacts/firmware-default/firmware.zip -d firmware_combined
|
||||||
|
mv firmware_combined/portapack-mayhem-firmware.bin firmware_combined/firmware/firmware_hackrf.bin
|
||||||
|
unzip -j artifacts/firmware-portarf/firmware.zip portapack-mayhem-firmware.bin -d firmware_combined/firmware
|
||||||
|
mv firmware_combined/firmware/portapack-mayhem-firmware.bin firmware_combined/firmware/firmware_portarf.bin
|
||||||
|
unzip -j artifacts/firmware-hpro/firmware.zip portapack-mayhem-firmware.bin -d firmware_combined/firmware
|
||||||
|
mv firmware_combined/firmware/portapack-mayhem-firmware.bin firmware_combined/firmware/firmware_hpro.bin
|
||||||
|
unzip -j artifacts/firmware-hpro/firmware.zip firmware/hackrf_usb.dfu firmware/hackrf_usb.bin -d firmware_combined_hpro
|
||||||
|
mv firmware_combined_hpro/hackrf_usb.dfu firmware_combined/firmware/hackrf_hpro_usb.dfu
|
||||||
|
mv firmware_combined_hpro/hackrf_usb.bin firmware_combined/firmware/hackrf_hpro_usb.bin
|
||||||
|
cd firmware_combined && zip -r ../firmware_all_devices.zip . && cd ..
|
||||||
|
- name: Prepare release assets
|
||||||
|
run: |
|
||||||
|
VER="${{ steps.version.outputs.version }}"
|
||||||
|
mkdir -p release_assets
|
||||||
|
# OCI tar assets
|
||||||
|
cp artifacts/oci-tar-default/portapack-mayhem_OCI.ppfw.tar "release_assets/OCI_hackrf_mayhem_${VER}.ppfw.tar"
|
||||||
|
cp artifacts/oci-tar-portarf/portapack-mayhem_OCI.ppfw.tar "release_assets/OCI_portarf_mayhem_${VER}.ppfw.tar"
|
||||||
|
cp artifacts/oci-tar-hpro/portapack-mayhem_OCI.ppfw.tar "release_assets/OCI_hpro_mayhem_${VER}.ppfw.tar"
|
||||||
|
# Combined firmware
|
||||||
|
cp firmware_all_devices.zip "release_assets/FIRMWARE_mayhem_${VER}.zip"
|
||||||
|
# SD card assets
|
||||||
|
cp artifacts/sdcard-default/sdcard.zip "release_assets/COPY_TO_SDCARD_hackrf_mayhem_${VER}.zip"
|
||||||
|
cp artifacts/sdcard-no-map-default/sdcard-no-map.zip "release_assets/COPY_TO_SDCARD_hackrf_mayhem_${VER}-no-world-map.zip"
|
||||||
|
cp artifacts/sdcard-portarf/sdcard.zip "release_assets/COPY_TO_SDCARD_portarf_mayhem_${VER}.zip"
|
||||||
|
cp artifacts/sdcard-no-map-portarf/sdcard-no-map.zip "release_assets/COPY_TO_SDCARD_portarf_mayhem_${VER}-no-world-map.zip"
|
||||||
|
cp artifacts/sdcard-hpro/sdcard.zip "release_assets/COPY_TO_SDCARD_hpro_mayhem_${VER}.zip"
|
||||||
|
cp artifacts/sdcard-no-map-hpro/sdcard-no-map.zip "release_assets/COPY_TO_SDCARD_hpro_mayhem_${VER}-no-world-map.zip"
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
id: create_release
|
uses: softprops/action-gh-release@v2
|
||||||
uses: actions/create-release@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ steps.version.outputs.version }}
|
tag_name: ${{ steps.version.outputs.version }}
|
||||||
release_name: Mayhem firmware ${{ steps.version.outputs.version }}
|
name: Mayhem firmware ${{ steps.version.outputs.version }}
|
||||||
body: |
|
body: |
|
||||||
**Stable release - ${{ steps.version.outputs.version }}**
|
**Stable release - ${{ steps.version.outputs.version }}**
|
||||||
This is a fork of the [Havoc](https://github.com/furrtek/portapack-havoc/) firmware, which itself was a fork of the [PortaPack](https://github.com/sharebrained/portapack-hackrf) firmware, an add-on for the [HackRF](http://greatscottgadgets.com/hackrf/). Please check the [readme](https://github.com/portapack-mayhem/mayhem-firmware/blob/master/README.md) for details.
|
This is a fork of the [Havoc](https://github.com/furrtek/portapack-havoc/) firmware, which itself was a fork of the [PortaPack](https://github.com/sharebrained/portapack-hackrf) firmware, an add-on for the [HackRF](http://greatscottgadgets.com/hackrf/). Please check the [readme](https://github.com/portapack-mayhem/mayhem-firmware/blob/master/README.md) for details.
|
||||||
@@ -141,114 +171,4 @@ jobs:
|
|||||||
For certain functionality, like external apps, the world map, GPS simulator, and others you need to uncompress (using [7-zip](https://www.7-zip.org/download.html)) the files from `mayhem_vX.Y.Z_COPY_TO_SDCARD.zip` to a FAT32 formatted MicroSD card.
|
For certain functionality, like external apps, the world map, GPS simulator, and others you need to uncompress (using [7-zip](https://www.7-zip.org/download.html)) the files from `mayhem_vX.Y.Z_COPY_TO_SDCARD.zip` to a FAT32 formatted MicroSD card.
|
||||||
draft: true
|
draft: true
|
||||||
prerelease: false
|
prerelease: false
|
||||||
# Default device assets
|
files: release_assets/*
|
||||||
- name: Upload Default Firmware TAR Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/oci-tar-default/portapack-mayhem_OCI.ppfw.tar
|
|
||||||
asset_name: OCI_hackrf_mayhem_${{ steps.version.outputs.version }}.ppfw.tar
|
|
||||||
asset_content_type: application/x-tar
|
|
||||||
- name: Upload Default Firmware Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/firmware-default/firmware.zip
|
|
||||||
asset_name: FIRMWARE_hackrf_mayhem_${{ steps.version.outputs.version }}.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
- name: Upload Default SD Card Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/sdcard-default/sdcard.zip
|
|
||||||
asset_name: COPY_TO_SDCARD_hackrf_mayhem_${{ steps.version.outputs.version }}.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
- name: Upload Default SD Card Asset - No Map
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/sdcard-no-map-default/sdcard-no-map.zip
|
|
||||||
asset_name: COPY_TO_SDCARD_hackrf_mayhem_${{ steps.version.outputs.version }}-no-world-map.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
# PortaRF device assets
|
|
||||||
- name: Upload PortaRF Firmware TAR Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/oci-tar-portarf/portapack-mayhem_OCI.ppfw.tar
|
|
||||||
asset_name: OCI_portarf_mayhem_${{ steps.version.outputs.version }}.ppfw.tar
|
|
||||||
asset_content_type: application/x-tar
|
|
||||||
- name: Upload PortaRF Firmware Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/firmware-portarf/firmware.zip
|
|
||||||
asset_name: FIRMWARE_portarf_mayhem_${{ steps.version.outputs.version }}.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
- name: Upload PortaRF SD Card Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/sdcard-portarf/sdcard.zip
|
|
||||||
asset_name: COPY_TO_SDCARD_portarf_mayhem_${{ steps.version.outputs.version }}.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
- name: Upload PortaRF SD Card Asset - No Map
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/sdcard-no-map-portarf/sdcard-no-map.zip
|
|
||||||
asset_name: COPY_TO_SDCARD_portarf_mayhem_${{ steps.version.outputs.version }}-no-world-map.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
# HPro device assets
|
|
||||||
- name: Upload HPro Firmware TAR Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/oci-tar-hpro/portapack-mayhem_OCI.ppfw.tar
|
|
||||||
asset_name: OCI_hpro_mayhem_${{ steps.version.outputs.version }}.ppfw.tar
|
|
||||||
asset_content_type: application/x-tar
|
|
||||||
- name: Upload HPro Firmware Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/firmware-hpro/firmware.zip
|
|
||||||
asset_name: FIRMWARE_hpro_mayhem_${{ steps.version.outputs.version }}.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
- name: Upload HPro SD Card Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/sdcard-hpro/sdcard.zip
|
|
||||||
asset_name: COPY_TO_SDCARD_hpro_mayhem_${{ steps.version.outputs.version }}.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
- name: Upload HPro SD Card Asset - No Map
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: artifacts/sdcard-no-map-hpro/sdcard-no-map.zip
|
|
||||||
asset_name: COPY_TO_SDCARD_hpro_mayhem_${{ steps.version.outputs.version }}-no-world-map.zip
|
|
||||||
asset_content_type: application/zip
|
|
||||||
|
|||||||
+2
-2
@@ -1,3 +1,3 @@
|
|||||||
Plug HackRF+Portapack, set it in HackRF mode, launch flash_portapack_mayhem.bat
|
Run mayhem_flasher.bat and follow the prompts to select your device and action (flash Mayhem, DFU unbrick, or restore factory firmware).
|
||||||
|
|
||||||
Read https://github.com/portapack-mayhem/mayhem-firmware/wiki/Update-firmware for more detailed information
|
Read https://github.com/portapack-mayhem/mayhem-firmware/wiki/Update-firmware for more detailed information.
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
@echo off
|
|
||||||
|
|
||||||
echo *** Run HackRF firmware in RAM via LPC DFU ***
|
|
||||||
echo.
|
|
||||||
echo This is used to "unbrick" your HackRF, if you are no longer able to use
|
|
||||||
echo HackRF tools to flash or operate your HackRF.
|
|
||||||
echo.
|
|
||||||
echo Connect your HackRF One to a USB port on your computer.
|
|
||||||
echo.
|
|
||||||
echo Hold down both the DFU and RESET buttons on the HackRF.
|
|
||||||
echo Then release the RESET button (closest to the edge).
|
|
||||||
echo Then release the DFU button.
|
|
||||||
echo.
|
|
||||||
pause
|
|
||||||
|
|
||||||
echo.
|
|
||||||
"utils/dfu-util-static.exe" --device 1fc9:000c --download "utils/hackrf_usb.dfu" --reset
|
|
||||||
echo.
|
|
||||||
pause
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
@echo off
|
|
||||||
|
|
||||||
echo *** Re-flash the HackRF with PortaPack firmware ***
|
|
||||||
echo.
|
|
||||||
echo Connect your HackRF One to a USB port on your computer.
|
|
||||||
echo.
|
|
||||||
echo If using a PortaPack, put the PortaPack in HackRF mode by selecting
|
|
||||||
echo the "HackRF" option from the main menu.
|
|
||||||
echo.
|
|
||||||
pause
|
|
||||||
|
|
||||||
echo.
|
|
||||||
|
|
||||||
REM Check if the firmware file exists
|
|
||||||
if not exist portapack-mayhem-firmware.bin (
|
|
||||||
echo The firmware file "portapack-mayhem-firmware.bin" does not exist.
|
|
||||||
echo Please ensure that you have downloaded the latest release from:
|
|
||||||
echo https://github.com/portapack-mayhem/mayhem-firmware/releases/
|
|
||||||
echo.
|
|
||||||
pause
|
|
||||||
exit /b
|
|
||||||
)
|
|
||||||
|
|
||||||
"utils/hackrf_spiflash.exe" -w portapack-mayhem-firmware.bin
|
|
||||||
echo.
|
|
||||||
echo "If your device never boot after flashing, please refer to won't boot article"
|
|
||||||
echo.
|
|
||||||
echo "click-to-open url: https://github.com/portapack-mayhem/mayhem-firmware/wiki/Won%%27t-boot"
|
|
||||||
echo "or"
|
|
||||||
echo "copy-and-paste url: https://github.com/portapack-mayhem/mayhem-firmware/wiki/Won't-boot"
|
|
||||||
echo.
|
|
||||||
pause
|
|
||||||
@@ -0,0 +1,160 @@
|
|||||||
|
@echo off
|
||||||
|
|
||||||
|
echo =========================================================
|
||||||
|
echo PortaPack Mayhem - Device Flasher
|
||||||
|
echo =========================================================
|
||||||
|
echo.
|
||||||
|
echo Connect your device to a USB port on your computer.
|
||||||
|
echo.
|
||||||
|
|
||||||
|
REM ── Step 1: Select device ─────────────────────────────────
|
||||||
|
echo What is your device?
|
||||||
|
echo.
|
||||||
|
echo 1. HackRF One / PortaPack
|
||||||
|
echo 2. PortaRF
|
||||||
|
echo 3. HackRF Pro / PortaPack
|
||||||
|
echo.
|
||||||
|
set /p DEVICE_CHOICE="Enter your choice (1, 2 or 3): "
|
||||||
|
|
||||||
|
if "%DEVICE_CHOICE%"=="1" set DEVICE_NAME=HackRF One / PortaPack
|
||||||
|
if "%DEVICE_CHOICE%"=="2" set DEVICE_NAME=PortaRF
|
||||||
|
if "%DEVICE_CHOICE%"=="3" set DEVICE_NAME=HackRF Pro / PortaPack
|
||||||
|
|
||||||
|
if not defined DEVICE_NAME (
|
||||||
|
echo.
|
||||||
|
echo Invalid choice. Please run the script again and enter 1, 2, or 3.
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo Device: %DEVICE_NAME%
|
||||||
|
echo.
|
||||||
|
|
||||||
|
REM ── Step 2: Select action ──────────────────────────────────
|
||||||
|
echo What would you like to do?
|
||||||
|
echo.
|
||||||
|
echo 1. Flash Mayhem firmware
|
||||||
|
echo 2. Flash via DFU (unbrick - run HackRF firmware from RAM)
|
||||||
|
echo 3. Flash factory HackRF firmware (HackRF only - removes PortaPack support)
|
||||||
|
echo.
|
||||||
|
set /p ACTION_CHOICE="Enter your choice (1, 2 or 3): "
|
||||||
|
|
||||||
|
if "%ACTION_CHOICE%"=="1" goto :flash_mayhem
|
||||||
|
if "%ACTION_CHOICE%"=="2" goto :flash_dfu
|
||||||
|
if "%ACTION_CHOICE%"=="3" goto :flash_factory
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo Invalid choice. Please run the script again and enter 1, 2, or 3.
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
|
||||||
|
REM ── Action 1: Flash Mayhem ─────────────────────────────────
|
||||||
|
:flash_mayhem
|
||||||
|
echo.
|
||||||
|
if "%DEVICE_CHOICE%"=="1" set FIRMWARE=firmware\firmware_hackrf.bin
|
||||||
|
if "%DEVICE_CHOICE%"=="2" set FIRMWARE=firmware\firmware_portarf.bin
|
||||||
|
if "%DEVICE_CHOICE%"=="3" set FIRMWARE=firmware\firmware_hpro.bin
|
||||||
|
|
||||||
|
if "%DEVICE_CHOICE%"=="1" (
|
||||||
|
echo If your device has a PortaPack attached, switch it to HackRF mode first by
|
||||||
|
echo selecting the "HackRF" option from the main menu.
|
||||||
|
echo.
|
||||||
|
)
|
||||||
|
echo Firmware: %FIRMWARE%
|
||||||
|
echo.
|
||||||
|
|
||||||
|
if not exist %FIRMWARE% (
|
||||||
|
echo ERROR: The firmware file "%FIRMWARE%" was not found.
|
||||||
|
echo Please ensure you have downloaded the latest release from:
|
||||||
|
echo https://github.com/portapack-mayhem/mayhem-firmware/releases/
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
|
||||||
|
pause
|
||||||
|
echo.
|
||||||
|
"utils/hackrf_spiflash.exe" -R -w %FIRMWARE%
|
||||||
|
echo.
|
||||||
|
echo If your device does not boot after flashing, see the troubleshooting wiki:
|
||||||
|
echo https://github.com/portapack-mayhem/mayhem-firmware/wiki/Won%27t-boot
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
|
||||||
|
REM ── Action 2: DFU unbrick ──────────────────────────────────
|
||||||
|
:flash_dfu
|
||||||
|
echo.
|
||||||
|
echo *** Load HackRF firmware into RAM via LPC DFU ***
|
||||||
|
echo.
|
||||||
|
echo Use this to unbrick your device if you can no longer use HackRF tools
|
||||||
|
echo to flash or communicate with it.
|
||||||
|
echo.
|
||||||
|
echo Before pressing any key, put your device into DFU mode:
|
||||||
|
echo 1. Hold down both the DFU and RESET buttons.
|
||||||
|
echo 2. Release the RESET button first (the one closest to the edge).
|
||||||
|
echo 3. Then release the DFU button.
|
||||||
|
echo.
|
||||||
|
|
||||||
|
if "%DEVICE_CHOICE%"=="3" (
|
||||||
|
set DFU_FILE=firmware\hackrf_hpro_usb.dfu
|
||||||
|
) else (
|
||||||
|
set DFU_FILE=firmware\hackrf_usb.dfu
|
||||||
|
)
|
||||||
|
|
||||||
|
if not exist "%DFU_FILE%" (
|
||||||
|
echo ERROR: "%DFU_FILE%" was not found.
|
||||||
|
echo Please ensure you have downloaded the latest release from:
|
||||||
|
echo https://github.com/portapack-mayhem/mayhem-firmware/releases/
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
|
||||||
|
pause
|
||||||
|
echo.
|
||||||
|
"utils/dfu-util-static.exe" --device 1fc9:000c --download "%DFU_FILE%"
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
|
||||||
|
REM ── Action 3: Flash factory HackRF firmware ────────────────
|
||||||
|
:flash_factory
|
||||||
|
echo.
|
||||||
|
echo *** Restore factory HackRF firmware ***
|
||||||
|
echo.
|
||||||
|
echo This will remove Mayhem and restore the original HackRF firmware.
|
||||||
|
echo PortaPack functionality will no longer be available after this.
|
||||||
|
echo.
|
||||||
|
|
||||||
|
if "%DEVICE_CHOICE%"=="3" (
|
||||||
|
set FACTORY_BIN=firmware\hackrf_hpro_usb.bin
|
||||||
|
) else (
|
||||||
|
set FACTORY_BIN=firmware\hackrf_usb.bin
|
||||||
|
)
|
||||||
|
|
||||||
|
if not exist "%FACTORY_BIN%" (
|
||||||
|
echo ERROR: "%FACTORY_BIN%" was not found.
|
||||||
|
echo Please ensure you have downloaded the latest release from:
|
||||||
|
echo https://github.com/portapack-mayhem/mayhem-firmware/releases/
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
|
||||||
|
pause
|
||||||
|
echo.
|
||||||
|
"utils/hackrf_spiflash.exe" -R -w "%FACTORY_BIN%"
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
@echo off
|
|
||||||
|
|
||||||
echo *** Re-flash the HackRF with HackRF firmware ***
|
|
||||||
echo.
|
|
||||||
echo Connect your HackRF One to a USB port on your computer.
|
|
||||||
echo.
|
|
||||||
echo If using a PortaPack, put the PortaPack in HackRF mode by selecting
|
|
||||||
echo the "HackRF" option from the main menu.
|
|
||||||
echo.
|
|
||||||
pause
|
|
||||||
|
|
||||||
echo.
|
|
||||||
"utils/hackrf_spiflash.exe" -w "utils/hackrf_usb.bin"
|
|
||||||
echo.
|
|
||||||
pause
|
|
||||||
Reference in New Issue
Block a user