├── BoardConfig.mk ├── README.md ├── compatibility_matrix.xml ├── config.mk ├── extract-files.sh ├── mslgrootfs ├── Android.mk ├── losetup.sh ├── start-rootfs.sh └── tar-rootfs.sh ├── mslgservice ├── Android.mk └── mslgservice.rc ├── proprietary-files.txt ├── sepolicy ├── attributes ├── file_contexts ├── hal_mslgkeeper.te ├── hwservice_contexts ├── init.te ├── mslg_app.te ├── mslg_init.te ├── mslg_rootfs_file.te ├── mslgd.te ├── platform_app.te ├── property.te ├── property_contexts ├── seapp_contexts ├── system_app.te ├── system_server.te ├── untrusted_app_30.te └── vendor_init.te └── setup-makefiles.sh /BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/BoardConfig.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/README.md -------------------------------------------------------------------------------- /compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/compatibility_matrix.xml -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/config.mk -------------------------------------------------------------------------------- /extract-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/extract-files.sh -------------------------------------------------------------------------------- /mslgrootfs/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/mslgrootfs/Android.mk -------------------------------------------------------------------------------- /mslgrootfs/losetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/mslgrootfs/losetup.sh -------------------------------------------------------------------------------- /mslgrootfs/start-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/mslgrootfs/start-rootfs.sh -------------------------------------------------------------------------------- /mslgrootfs/tar-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/mslgrootfs/tar-rootfs.sh -------------------------------------------------------------------------------- /mslgservice/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/mslgservice/Android.mk -------------------------------------------------------------------------------- /mslgservice/mslgservice.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/mslgservice/mslgservice.rc -------------------------------------------------------------------------------- /proprietary-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/proprietary-files.txt -------------------------------------------------------------------------------- /sepolicy/attributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/attributes -------------------------------------------------------------------------------- /sepolicy/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/file_contexts -------------------------------------------------------------------------------- /sepolicy/hal_mslgkeeper.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/hal_mslgkeeper.te -------------------------------------------------------------------------------- /sepolicy/hwservice_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/hwservice_contexts -------------------------------------------------------------------------------- /sepolicy/init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/init.te -------------------------------------------------------------------------------- /sepolicy/mslg_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/mslg_app.te -------------------------------------------------------------------------------- /sepolicy/mslg_init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/mslg_init.te -------------------------------------------------------------------------------- /sepolicy/mslg_rootfs_file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/mslg_rootfs_file.te -------------------------------------------------------------------------------- /sepolicy/mslgd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/mslgd.te -------------------------------------------------------------------------------- /sepolicy/platform_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/platform_app.te -------------------------------------------------------------------------------- /sepolicy/property.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/property.te -------------------------------------------------------------------------------- /sepolicy/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/property_contexts -------------------------------------------------------------------------------- /sepolicy/seapp_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/seapp_contexts -------------------------------------------------------------------------------- /sepolicy/system_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/system_app.te -------------------------------------------------------------------------------- /sepolicy/system_server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/system_server.te -------------------------------------------------------------------------------- /sepolicy/untrusted_app_30.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/untrusted_app_30.te -------------------------------------------------------------------------------- /sepolicy/vendor_init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/sepolicy/vendor_init.te -------------------------------------------------------------------------------- /setup-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuutao/android_device_xiaomi_wps/HEAD/setup-makefiles.sh --------------------------------------------------------------------------------