diff options
-rw-r--r-- | BoardConfig.mk | 1 | ||||
-rw-r--r-- | device.mk | 2 | ||||
-rw-r--r-- | fstab.tuna | 6 | ||||
-rwxr-xr-x | init.tuna.rc | 9 | ||||
-rw-r--r-- | media_codecs.xml | 1 |
5 files changed, 15 insertions, 4 deletions
diff --git a/BoardConfig.mk b/BoardConfig.mk index 1e6d96a..45f1bab 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -59,6 +59,7 @@ TARGET_RECOVERY_UI_LIB := librecovery_ui_tuna TARGET_RECOVERY_UPDATER_LIBS += librecovery_updater_tuna TARGET_RELEASETOOLS_EXTENSIONS := device/samsung/tuna +TARGET_RECOVERY_FSTAB = device/samsung/tuna/fstab.tuna TARGET_USERIMAGES_USE_EXT4 := true BOARD_SYSTEMIMAGE_PARTITION_SIZE := 685768704 BOARD_USERDATAIMAGE_PARTITION_SIZE := 14539537408 @@ -102,8 +102,6 @@ PRODUCT_DEFAULT_PROPERTY_OVERRIDES += \ # NFC PRODUCT_PACKAGES += \ - libnfc \ - libnfc_jni \ Nfc \ Tag @@ -8,4 +8,10 @@ /dev/block/platform/omap/omap_hsmmc.0/by-name/efs /factory ext4 ro wait /dev/block/platform/omap/omap_hsmmc.0/by-name/cache /cache ext4 noatime,nosuid,nodev,nomblk_io_submit,errors=panic wait,check /dev/block/platform/omap/omap_hsmmc.0/by-name/userdata /data ext4 noatime,nosuid,nodev,nomblk_io_submit,errors=panic wait,check,encryptable=/dev/block/platform/omap/omap_hsmmc.0/by-name/metadata +/dev/block/platform/omap/omap_hsmmc.0/by-name/misc /misc emmc defaults defaults +/dev/block/platform/omap/omap_hsmmc.0/by-name/boot /boot emmc defaults defaults +/dev/block/platform/omap/omap_hsmmc.0/by-name/recovery /recovery emmc defaults defaults +/dev/block/platform/omap/omap_hsmmc.0/by-name/sbl /sbl emmc defaults defaults +/dev/block/platform/omap/omap_hsmmc.0/by-name/xloader /xloader emmc defaults defaults +/dev/block/platform/omap/omap_hsmmc.0/by-name/radio /radio emmc defaults defaults diff --git a/init.tuna.rc b/init.tuna.rc index c5016d5..c171667 100755 --- a/init.tuna.rc +++ b/init.tuna.rc @@ -193,7 +193,7 @@ service dhcpcd_p2p /system/bin/dhcpcd -aABKL disabled oneshot -service dhcpcd_bnep0 /system/bin/dhcpcd -ABKL +service dhcpcd_bt-pan /system/bin/dhcpcd -ABKL class main disabled oneshot @@ -213,7 +213,12 @@ service iprenew_p2p /system/bin/dhcpcd -n disabled oneshot -service iprenew_bnep0 /system/bin/dhcpcd -n +service iprenew_bt-pan /system/bin/dhcpcd -n + class main + disabled + oneshot + +service iprenew_eth0 /system/bin/dhcpcd -n class main disabled oneshot diff --git a/media_codecs.xml b/media_codecs.xml index 87d02de..1f41a31 100644 --- a/media_codecs.xml +++ b/media_codecs.xml @@ -117,5 +117,6 @@ Only the three quirks included above are recognized at this point: <MediaCodec name="OMX.google.amrwb.encoder" type="audio/amr-wb" /> <MediaCodec name="OMX.google.aac.encoder" type="audio/mp4a-latm" /> <MediaCodec name="OMX.google.flac.encoder" type="audio/flac" /> + <MediaCodec name="OMX.google.vpx.encoder" type="video/x-vnd.on2.vp8" /> </Encoders> </MediaCodecs> |