Skip to content

Commit f57c397

Browse files
committed
.
1 parent 2528206 commit f57c397

File tree

6 files changed

+25
-0
lines changed

6 files changed

+25
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Install
22

33
* [jailbreak](https://www.mobileread.com/forums/forumdisplay.php?f=150) and install [KUAL](https://www.mobileread.com/forums/showthread.php?t=203326)
4+
* install [kterm](https://github.com/bfabiszewski/kterm/releases)
45
* copy this directory to `extensions`.

chroot.shell.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
3+
. "$(dirname "$0")"/lib.sh
4+
5+
[ -f "$ROOTFS_LOCK" ] || mount_rootfs_all
6+
7+
do_chroot /bin/sh

install.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
3+
. "$(dirname "$0")"/lib.sh
4+
5+
install_rootfs

lib.sh

100644100755
File mode changed.

resize.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
3+
. "$(dirname "$0")"/lib.sh
4+
5+
[ -f "$ROOTFS_LOCK" ] && umount_rootfs_all
6+
7+
resize_rootfs_interactive

umount.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
3+
. "$(dirname "$0")"/lib.sh
4+
5+
umount_rootfs_all

0 commit comments

Comments
 (0)