Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
imcase authored Apr 23, 2024
1 parent 84b254a commit 34efcab
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ gpg --import public.gpg
gpg --import private.asc
```

Next, you'll want to generate the PPA. Edit the file to "makeppa.sh" replace the variables at the top with your own information. Then, run it with the FOLDER_PATH as a parameter:
Next, you'll want to generate the PPA. Edit the file to "makeppa.sh" replace the variables at the top with your own information. Then, run it with the FOLDER_NAME (e.g. u0_6_0) as a parameter:
``` shell
./makeppa.sh FOLDER_PATH
./makeppa.sh FOLDER_NAME
```

You'll need to add your debian packages to the **ppa** folder, which is what is actually included in the archive.
After adding or updating files, run opy **updateppa.sh** with the FOLDER_PATH to your PPA and update your PPA by running:
After adding or updating files, run opy **updateppa.sh** with the FOLDER_NAME to your PPA and update your PPA by running:
``` shell
./updateppa.sh FOLDER_PATH
./updateppa.sh FOLDER_NAME
```

## Add the ppa to the device.
Expand All @@ -41,3 +41,12 @@ curl -s --compressed "https://tibbotech.github.io/ltpp3g2_ppa/ppa/KEY.gpg" | sud
sudo curl -sL -o /etc/apt/sources.list.d/my_list_file.list https://raw.githubusercontent.com/tibbotech/ltpp3g2_ppa/main/u0_6_0/my_list_file.list
sudo apt update -y
```
However, please note that should the FOLDER_PATH change from u0_6_0 to for example u_0_7_0, then also change only the following line
from:
```shell
sudo curl -sL -o /etc/apt/sources.list.d/my_list_file.list https://raw.githubusercontent.com/tibbotech/ltpp3g2_ppa/main/u0_6_0/my_list_file.list
```
to:
```shell
sudo curl -sL -o /etc/apt/sources.list.d/my_list_file.list https://raw.githubusercontent.com/tibbotech/ltpp3g2_ppa/main/u0_7_0/my_list_file.list
```

0 comments on commit 34efcab

Please sign in to comment.