From 36f5123102b1ec695f07ab166871e39fd277c22b Mon Sep 17 00:00:00 2001 From: David Date: Fri, 27 Nov 2020 16:56:29 +0100 Subject: [PATCH] README.md: Update Seedvault example Update Seedvault example (manifest + patch). Tested and working on sunfish. --- README.md | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b527566c..6ef5f9eb 100644 --- a/README.md +++ b/README.md @@ -295,25 +295,32 @@ There is also an option to add prebuilt applications to the AOSP build tree usin repo = "https://github.com/RattlesnakeOS/example_prebuilts" ``` -##### Manifest Customizations +##### Example for Manifest Customizations: Seedvault It's also possible to add remotes and projects to the AOSP build manifest file. These will get added to the manifest and get pulled into the AOSP build tree as part of normal build process. ```toml -# to add a remote line to manifest like this: +# to add a remote line to manifest like this: [[custom-manifest-remotes]] - name = "rattlesnakeos" - fetch = "https://github.com/RattlesnakeOS/" + name = "seedvault-app" + fetch = "https://github.com/seedvault-app/" revision = "master" -# to add a project line to manifest like this: +# to add a project line to manifest like this: # you can also add modules here that you want to include into the build process -# in this example it is adding a really great backup app (https://github.com/stevesoltys/backup) +# in this example it is adding a really great backup app (https://github.com/seedvault-app/seedvault) [[custom-manifest-projects]] - path = "packages/apps/Backup" - name = "backup" - remote = "rattlesnakeos" - modules = [ "Backup" ] + path = "packages/apps/Seedvault" + name = "seedvault" + remote = "seedvault-app" + modules = [ "Seedvault" ] ``` +In this special example further changes to the source code are needed to ensure that the Seevault app can be used. This can be either achieved by a [patch](https://github.com/davze/ros-patches/blob/11/0007-set-seedvault-as-dftl-bkp-provider.patch) or you can do it manually by selecting Seedvault as backup provider via adb: + +``` +# adb shell bmgr enable true +# adb shell bmgr transport com.stevesoltys.seedvault.transport.ConfigurableBackupTransport +``` + #### Can I change the boot animation? It is possible to change the boot animation using patches, there is an example repo [here](https://github.com/RattlesnakeOS/example_patch_shellscript).