├── .gitignore ├── 5.4.195 ├── README.md └── binder │ ├── Kconfig │ ├── Makefile │ ├── binder.c │ ├── binder_alloc.c │ ├── binder_alloc.h │ ├── binder_alloc_selftest.c │ ├── binder_hack.h │ ├── binder_internal.h │ ├── binder_trace.h │ ├── binderfs.c │ ├── deps.c │ ├── dkms.conf │ ├── idr.c │ ├── linux │ ├── fdtable.h │ ├── idr.h │ └── xarray.h │ ├── patches │ └── alinux3-5.10.diff │ └── uapi │ └── linux │ └── android │ ├── binder.h │ └── binderfs.h ├── 99-redroid.rules ├── LICENSE ├── Makefile ├── README.md ├── README_zh.md ├── ashmem ├── Kconfig ├── Makefile ├── TODO ├── ashmem.c ├── ashmem.h ├── deps.c ├── deps.h ├── dkms.conf ├── ion │ ├── Kconfig │ ├── Makefile │ ├── ion.c │ ├── ion.h │ ├── ion_cma_heap.c │ ├── ion_heap.c │ ├── ion_page_pool.c │ └── ion_system_heap.c ├── uapi │ ├── ashmem.h │ ├── ion.h │ └── vsoc_shm.h └── vsoc.c ├── binder ├── Kconfig ├── Makefile ├── binder.c ├── binder_alloc.c ├── binder_alloc.h ├── binder_alloc_selftest.c ├── binder_internal.h ├── binder_trace.h ├── binderfs.c ├── deps.c ├── dkms.conf ├── idr.c ├── linux │ ├── fdtable.h │ ├── idr.h │ └── xarray.h └── uapi │ └── linux │ └── android │ ├── binder.h │ └── binderfs.h ├── deploy └── k8s │ ├── base │ ├── daemonset.yaml │ └── kustomization.yaml │ └── overlays │ ├── amazonlinux2 │ └── kustomization.yaml │ ├── ubuntu1604 │ └── kustomization.yaml │ ├── ubuntu1804 │ └── kustomization.yaml │ └── ubuntu2004 │ └── kustomization.yaml ├── redroid.conf └── test └── test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /5.4.195/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/README.md -------------------------------------------------------------------------------- /5.4.195/binder/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/Kconfig -------------------------------------------------------------------------------- /5.4.195/binder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/Makefile -------------------------------------------------------------------------------- /5.4.195/binder/binder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/binder.c -------------------------------------------------------------------------------- /5.4.195/binder/binder_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/binder_alloc.c -------------------------------------------------------------------------------- /5.4.195/binder/binder_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/binder_alloc.h -------------------------------------------------------------------------------- /5.4.195/binder/binder_alloc_selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/binder_alloc_selftest.c -------------------------------------------------------------------------------- /5.4.195/binder/binder_hack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/binder_hack.h -------------------------------------------------------------------------------- /5.4.195/binder/binder_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/binder_internal.h -------------------------------------------------------------------------------- /5.4.195/binder/binder_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/binder_trace.h -------------------------------------------------------------------------------- /5.4.195/binder/binderfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/binderfs.c -------------------------------------------------------------------------------- /5.4.195/binder/deps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/deps.c -------------------------------------------------------------------------------- /5.4.195/binder/dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/dkms.conf -------------------------------------------------------------------------------- /5.4.195/binder/idr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/idr.c -------------------------------------------------------------------------------- /5.4.195/binder/linux/fdtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/linux/fdtable.h -------------------------------------------------------------------------------- /5.4.195/binder/linux/idr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/linux/idr.h -------------------------------------------------------------------------------- /5.4.195/binder/linux/xarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/linux/xarray.h -------------------------------------------------------------------------------- /5.4.195/binder/patches/alinux3-5.10.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/patches/alinux3-5.10.diff -------------------------------------------------------------------------------- /5.4.195/binder/uapi/linux/android/binder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/uapi/linux/android/binder.h -------------------------------------------------------------------------------- /5.4.195/binder/uapi/linux/android/binderfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/5.4.195/binder/uapi/linux/android/binderfs.h -------------------------------------------------------------------------------- /99-redroid.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/99-redroid.rules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- 1 | [English](./README.md) | 简体中文 2 | # ReDroid Kernel Modules 3 | TODO :) 4 | -------------------------------------------------------------------------------- /ashmem/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/Kconfig -------------------------------------------------------------------------------- /ashmem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/Makefile -------------------------------------------------------------------------------- /ashmem/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/TODO -------------------------------------------------------------------------------- /ashmem/ashmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/ashmem.c -------------------------------------------------------------------------------- /ashmem/ashmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/ashmem.h -------------------------------------------------------------------------------- /ashmem/deps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/deps.c -------------------------------------------------------------------------------- /ashmem/deps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/deps.h -------------------------------------------------------------------------------- /ashmem/dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/dkms.conf -------------------------------------------------------------------------------- /ashmem/ion/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/ion/Kconfig -------------------------------------------------------------------------------- /ashmem/ion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/ion/Makefile -------------------------------------------------------------------------------- /ashmem/ion/ion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/ion/ion.c -------------------------------------------------------------------------------- /ashmem/ion/ion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/ion/ion.h -------------------------------------------------------------------------------- /ashmem/ion/ion_cma_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/ion/ion_cma_heap.c -------------------------------------------------------------------------------- /ashmem/ion/ion_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/ion/ion_heap.c -------------------------------------------------------------------------------- /ashmem/ion/ion_page_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/ion/ion_page_pool.c -------------------------------------------------------------------------------- /ashmem/ion/ion_system_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/ion/ion_system_heap.c -------------------------------------------------------------------------------- /ashmem/uapi/ashmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/uapi/ashmem.h -------------------------------------------------------------------------------- /ashmem/uapi/ion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/uapi/ion.h -------------------------------------------------------------------------------- /ashmem/uapi/vsoc_shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/uapi/vsoc_shm.h -------------------------------------------------------------------------------- /ashmem/vsoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/ashmem/vsoc.c -------------------------------------------------------------------------------- /binder/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/Kconfig -------------------------------------------------------------------------------- /binder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/Makefile -------------------------------------------------------------------------------- /binder/binder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/binder.c -------------------------------------------------------------------------------- /binder/binder_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/binder_alloc.c -------------------------------------------------------------------------------- /binder/binder_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/binder_alloc.h -------------------------------------------------------------------------------- /binder/binder_alloc_selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/binder_alloc_selftest.c -------------------------------------------------------------------------------- /binder/binder_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/binder_internal.h -------------------------------------------------------------------------------- /binder/binder_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/binder_trace.h -------------------------------------------------------------------------------- /binder/binderfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/binderfs.c -------------------------------------------------------------------------------- /binder/deps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/deps.c -------------------------------------------------------------------------------- /binder/dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/dkms.conf -------------------------------------------------------------------------------- /binder/idr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/idr.c -------------------------------------------------------------------------------- /binder/linux/fdtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/linux/fdtable.h -------------------------------------------------------------------------------- /binder/linux/idr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/linux/idr.h -------------------------------------------------------------------------------- /binder/linux/xarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/linux/xarray.h -------------------------------------------------------------------------------- /binder/uapi/linux/android/binder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/uapi/linux/android/binder.h -------------------------------------------------------------------------------- /binder/uapi/linux/android/binderfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/binder/uapi/linux/android/binderfs.h -------------------------------------------------------------------------------- /deploy/k8s/base/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/deploy/k8s/base/daemonset.yaml -------------------------------------------------------------------------------- /deploy/k8s/base/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - daemonset.yaml 3 | -------------------------------------------------------------------------------- /deploy/k8s/overlays/amazonlinux2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/deploy/k8s/overlays/amazonlinux2/kustomization.yaml -------------------------------------------------------------------------------- /deploy/k8s/overlays/ubuntu1604/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/deploy/k8s/overlays/ubuntu1604/kustomization.yaml -------------------------------------------------------------------------------- /deploy/k8s/overlays/ubuntu1804/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/deploy/k8s/overlays/ubuntu1804/kustomization.yaml -------------------------------------------------------------------------------- /deploy/k8s/overlays/ubuntu2004/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/deploy/k8s/overlays/ubuntu2004/kustomization.yaml -------------------------------------------------------------------------------- /redroid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/redroid.conf -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remote-android/redroid-modules/HEAD/test/test.c --------------------------------------------------------------------------------