Skip to content

Commit

Permalink
Merge pull request #12 from hiking90/main
Browse files Browse the repository at this point in the history
Add more docuemtns related to Binder IPC
  • Loading branch information
hiking90 authored Feb 25, 2024
2 parents eb8ff3f + 2a30945 commit 9bfffda
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/enable-binder-for-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,9 @@ CONFIG_ANDROID_BINDER_IPC=y
CONFIG_ANDROID_BINDERFS=y
```

## Other documents related to Binder IPC
- Linux kernel's Binder Document: https://www.kernel.org/doc/html/latest/admin-guide/binderfs.html
- Anbox Docuemt: https://wiki.archlinux.org/title/Anbox#Mounting_binderfs


Let's examine methods to activate Binder IPC in some representative Linux distributions.
12 changes: 11 additions & 1 deletion src/hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,14 @@ fn main() -> std::result::Result<(), Box<dyn std::error::Error>> {
│   ├── hello_client.rs
│   └── hello_service.rs
└── lib.rs
```
```

## Run Hello Service and Client
* Run **hello_service**
```
$ cargo run --bin hello_service
```
* Run **hello_client**
```
$ cargo run --bin hello_client
```

0 comments on commit 9bfffda

Please sign in to comment.