-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated tweak-enable-debug-menu to be toggleable through configurator
- Loading branch information
Showing
8 changed files
with
14 additions
and
7 deletions.
There are no files selected for viewing
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,5 +1,4 @@ | ||
**/ipk/*.ipk | ||
*.ipk | ||
**/ipk/tmp | ||
**/ipk/data/* | ||
*/libs | ||
*/obj |
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 @@ | ||
data/* |
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 @@ | ||
data/opt/etc/preload.d/ |
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,5 +1,5 @@ | ||
Package: tweak-enable-debug-menu | ||
Version: 0.1.0 | ||
Version: 0.1.1 | ||
Maintainer: Joonas Trussmann <[email protected]> | ||
Description: Enable DJI debug menu on Goggles | ||
Architecture: armv7-3.2 | ||
|
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,3 +1,5 @@ | ||
#!/system/bin/sh | ||
|
||
modmanager enable diy_glasses enable_debug_menu | ||
#modmanager enable diy_glasses enable_debug_menu | ||
#we use dinit instead as this makes it configurator friendly out of the box | ||
/opt/bin/dinitctl -u enable goggle-osd-dji |
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,4 +1,5 @@ | ||
#!/system/bin/sh | ||
|
||
modmanager disable diy_glasses enable_debug_menu | ||
|
||
#modmanager disable diy_glasses enable_debug_menu | ||
#we use dinit instead as this makes it configurator friendly out of the box | ||
/opt/bin/dinitctl -u disable goggle-osd-dji || true |
3 changes: 3 additions & 0 deletions
3
tweak-enable-debug-menu/ipk/data/opt/etc/dinit.d/tweak-enable-debug-menu
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,3 @@ | ||
type = scripted | ||
command = modmanager enable diy_glasses enable_debug_menu | ||
stop-command = modmanager disable diy_glasses enable_debug_menu |