From 34efcab3af9a407539c0bac3205be8689f881f63 Mon Sep 17 00:00:00 2001 From: "N. Hien Tran" <64760013+imcase@users.noreply.github.com> Date: Tue, 23 Apr 2024 12:13:28 +0800 Subject: [PATCH] Update README.md --- README.md | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4586c11..a75f469 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 +```