Skip to content

Commit

Permalink
Merge pull request #91 from Jayy001/Eeems-patch-1
Browse files Browse the repository at this point in the history
Unify examples, only create new build/release if something changed that would require it
  • Loading branch information
Jayy001 committed Jun 26, 2024
2 parents 70fce66 + 4a05c97 commit aa19883
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 8 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,29 @@ on:
pull_request:
branches:
- main
paths:
- requirements.txt
- requirements.remote.txt
- '*.py'
- data/**
- codexctl/**
- scripts/**
- github-make-executable.sh
- Makefile
- .github/workflows/main.yml
push:
branches:
- main
paths:
- requirements.txt
- requirements.remote.txt
- '*.py'
- data/**
- codexctl/**
- scripts/**
- github-make-executable.sh
- Makefile
- .github/workflows/main.yml
workflow_dispatch:

defaults:
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ codexctl download toltec # Downloads latest version that has full support for to
codexctl download 3.0.4.1305 --rm1 # Downloads 3.0.4.1305 firmware file for remarkable 1
codexctl status # Prints current & previous version (can only be used when running on device itself)
codexctl list # Lists all available versions
python codexctl.py restore # Restores previous version
python codexctl.py --verbose # Enables logging
python codexctl.py --backup # Exports all files to local directory
python codexctl.py --backup -l root -r FM --no-recursion --no-overwrite # Exports all files from FM directory to root folder on localhost
python codexctl.py extract 3.8.0.1944_reMarkable2-7eGpAv7sYB.signed # Extracts contents to filesystem named "extracted"
python codexctl.py mount extracted /opt/remarkable # Mounts extracted filesystem to /opt/remarkable
python codexctl.py ls 3.8.0.1944_reMarkable2-7eGpAv7sYB.signed / # Lists the root directory of the update image
python codexctl.py cat 3.8.0.1944_reMarkable2-7eGpAv7sYB.signed /etc/version # Outputs the contents of /etc/version from the update image
codexctl restore # Restores previous version
codexctl --verbose # Enables logging
codexctl --backup # Exports all files to local directory
codexctl --backup -l root -r FM --no-recursion --no-overwrite # Exports all files from FM directory to root folder on localhost
codexctl extract 3.8.0.1944_reMarkable2-7eGpAv7sYB.signed # Extracts contents to filesystem named "extracted"
codexctl mount extracted /opt/remarkable # Mounts extracted filesystem to /opt/remarkable
codexctl ls 3.8.0.1944_reMarkable2-7eGpAv7sYB.signed / # Lists the root directory of the update image
codexctl cat 3.8.0.1944_reMarkable2-7eGpAv7sYB.signed /etc/version # Outputs the contents of /etc/version from the update image
```

0 comments on commit aa19883

Please sign in to comment.