This repository has been archived by the owner on May 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
57 additions
and
144 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
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
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 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,12 @@ | ||
/bootloader vfat /dev/block/by-name/bootloader flags=display="Bootloader";backup=1;flashimg=1 | ||
/env emmc /dev/block/by-name/env flags=display="U-Boot env";backup=1;flashimg=1 | ||
/boot emmc /dev/block/by-name/boot flags=backup=1;flashimg=1 | ||
/system ext4 /dev/block/by-name/system flags=backup=1;flashimg=1 | ||
/data ext4 /dev/block/by-name/UDISK flags=backup=1;wipeingui;wipeduringfactoryreset;encryptable=/dev/block/by-name/metadata | ||
/misc emmc /dev/block/by-name/misc flags=backup=1;flashimg=1 | ||
/recovery emmc /dev/block/by-name/recovery flags=backup=1;flashimg=1 | ||
/cache ext4 /dev/block/by-name/cache flags=backup=1;wipeingui;wipeduringfactoryreset | ||
/external_sd vfat /dev/block/mmcblk1p1 | ||
/external_sd vfat /dev/block/mmcblk1 | ||
/external_sd vfat /dev/block/mmcblk0p1 | ||
/external_sd vfat /dev/block/mmcblk0 |
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,34 @@ | ||
LOCAL_PATH := device/ONDA/octopus-ibt | ||
|
||
TARGET_USERIMAGES_USE_EXT4 := true | ||
BOARD_HAS_LARGE_FILESYSTEM := true | ||
BOARD_BOOTIMAGE_PARTITION_SIZE := 16384000 | ||
BOARD_RECOVERYIMAGE_PARTITION_SIZE := 32768000 | ||
BOARD_SYSTEMIMAGE_PARTITION_SIZE := 1048576000 | ||
BOARD_USERDATAIMAGE_PARTITION_SIZE := 2097152000 | ||
BOARD_CACHEIMAGE_PARTITION_SIZE := 786432000 | ||
BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4 | ||
BOARD_FLASH_BLOCK_SIZE := 131072 | ||
|
||
RECOVERY_SDCARD_ON_DATA := true | ||
TARGET_RECOVERY_FSTAB := $(LOCAL_PATH)/recovery/twrp.fstab | ||
|
||
TW_SCREEN_BLANK_ON_BOOT := true | ||
TW_EXTRA_LANGUAGES := true | ||
TW_THEME := landscape_hdpi | ||
LOCAL_RESOLUTION := 1280x720 | ||
TARGET_SCREEN_WIDTH := 1280 | ||
TARGET_SCREEN_HEIGHT := 720 | ||
TW_SCREEN_BLANK_ON_BOOT := true | ||
BOARD_SUPPRESS_SECURE_ERASE := true | ||
TW_DEFAULT_EXTERNAL_STORAGE := false | ||
TW_INCLUDE_FB2PNG := true | ||
TW_INCLUDE_FUSE_EXFAT := true | ||
TWRP_INCLUDE_LOGCAT := true | ||
TW_INCLUDE_CRYPTO := true | ||
TW_INCLUDE_NANO := true | ||
TW_INCLUDE_SUPERSU := true | ||
TW_DEFAULT_LANGUAGE := zh-CN | ||
TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID := true | ||
TARGET_USE_CUSTOM_LUN_FILE_PATH := "/sys/class/android_usb/android0/f_mass_storage/lun/file" | ||
TWHAVE_SELINUX := true |