-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- mount partitions to the empty folders on system partition - add executable permissions to scripts in repo - increase system partition size to accomodate bigger GApps (nano works) - use .gitkeep files
- Loading branch information
1 parent
9a24d81
commit 088055f
Showing
12 changed files
with
47 additions
and
89 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
gapps/ | ||
images/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Modify your variables here to corretly reference your directory and subdir | ||
|
||
Root="$(dirname "$(realpath "$0")")" | ||
|
||
MiscRoot="$Root/misc" | ||
|
||
GAppsRoot="$Root/gapps" | ||
GAppsOutputFolder="$GAppsRoot/output" | ||
GAppsExtractFolder="$GAppsRoot/extract" | ||
GAppsTmpFolder="$GAppsRoot/tmp" | ||
|
||
ImagesRoot="$Root/images" | ||
MountPointSystem="/mnt/system" | ||
|
||
InstallPartition="$MountPointSystem" | ||
InstallDir="$InstallPartition/system" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
|
||
. ./VARIABLES.sh | ||
. ./VARIABLES | ||
|
||
rm -rf $GAppsOutputFolder | ||
rm -rf $GAppsTmpFolder | ||
|
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
#!/bin/bash | ||
|
||
. ./VARIABLES.sh | ||
. ./VARIABLES | ||
|
||
echo "Unmounting product.img" | ||
umount $MountPointProduct | ||
umount $MountPointSystem/product | ||
|
||
echo "Unmounting system_ext.img" | ||
umount $MountPointSystemExt | ||
umount $MountPointSystem/system_ext | ||
|
||
echo "Unmounting vendor.img" | ||
umount $MountPointSystem/vendor | ||
|
||
echo "Unmounting system.img" | ||
umount $MountPointSystem | ||
|
||
echo "Unmounting vendor.img" | ||
umount $MountPointVendor | ||
|
||
echo "!! Unmounting completed !!" |