dropped ashmem in the debian and scripts folder

This commit is contained in:
Rahammetoela 2024-10-02 09:50:11 -03:00
parent 966ca69a08
commit 4dfdec531d
No known key found for this signature in database
GPG Key ID: ACD083CB585C9AA9
4 changed files with 4 additions and 13 deletions

4
debian/control vendored
View File

@ -16,7 +16,7 @@ Package: anbox-modules-dkms
Architecture: all
Depends:
${misc:Depends},
Description: Android kernel driver (binder, ashmem) in DKMS format.
Description: Android kernel driver (binder) in DKMS format.
.
This package contains a out-of-tree version of the core Android
kernel functionalities binder and ashmem.
kernel functionality binder.

7
debian/dkms vendored
View File

@ -1,10 +1,7 @@
PACKAGE_NAME="anbox"
PACKAGE_VERSION="1"
CLEAN="make -C ashmem clean && make -C binder clean"
MAKE[0]="'make' -j$parallel_jobs -C ashmem KERNEL_SRC=$kernel_source_dir && make -j$parallel_jobs -C binder KERNEL_SRC=$kernel_source_dir"
BUILT_MODULE_NAME[0]="ashmem_linux"
BUILT_MODULE_LOCATION[0]="ashmem"
DEST_MODULE_LOCATION[0]="/updates"
CLEAN="make -C binder clean"
MAKE[0]="ake -j$parallel_jobs -C binder KERNEL_SRC=$kernel_source_dir"
BUILT_MODULE_NAME[1]="binder_linux"
BUILT_MODULE_LOCATION[1]="binder"
DEST_MODULE_LOCATION[1]="/updates"

1
debian/install vendored
View File

@ -1,3 +1,2 @@
ashmem usr/src/anbox-1
binder usr/src/anbox-1
anbox.conf /etc/modules-load.d/

View File

@ -24,11 +24,6 @@ make prepare CC=${CC} HOSTCC=${CC}
make scripts CC=${CC} HOSTCC=${CC}
)
(
cd ashmem || exit 1
make KERNEL_SRC="../${src_dir}" CC=${CC} HOSTCC=${CC}
)
(
cd binder || exit 1
make KERNEL_SRC="../${src_dir}" CC=${CC} HOSTCC=${CC}