device/generic/common
Revision | 9668827da362f3ab8dad9902ee77e255825bffa6 (tree) |
---|---|
Time | 2017-09-05 17:09:59 |
Author | Chih-Wei Huang <cwhuang@linu...> |
Commiter | Chih-Wei Huang |
Define variables for mksquashfsimage.sh
Now we use AOSP's mksquashfsimage.sh to create system.sfs.
It contains the squashfs directly.
Note this effectively disables read-write support of ntfs/vfat.
@@ -10,7 +10,10 @@ BOARD_HAVE_BLUETOOTH_LINUX := true | ||
10 | 10 | |
11 | 11 | BOARD_USE_LEGACY_UI := true |
12 | 12 | |
13 | -BOARD_SYSTEMIMAGE_PARTITION_SIZE = $(if $(MKSQUASHFS),0,1610612736) | |
13 | +BOARD_SYSTEMIMAGE_PARTITION_SIZE := 1610612736 | |
14 | +BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE := squashfs | |
15 | +BOARD_SYSTEMIMAGE_SQUASHFS_COMPRESSOR := gzip | |
16 | +#TARGET_USERIMAGES_SPARSE_SQUASHFS_DISABLED := true | |
14 | 17 | |
15 | 18 | # customize the malloced address to be 16-byte aligned |
16 | 19 | BOARD_MALLOC_ALIGNMENT := 16 |