Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add empty fpi_device_cros_fp_init() #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,26 @@

</div>

## Developing Fingerprint Driver for Chromebooks
### Setup
Install meson and some dependencies. Run
```bash
meson setup \
--prefix /usr \
--libexecdir lib \
--sbindir bin \
--buildtype plain \
--auto-features enabled \
--wrap-mode nodownload
mesonbuild
cd mesonbuild
```
### Install
```
# In `mesonbuild`
sudo meson install
```

## History

**LibFPrint** was originally developed as part of an
Expand Down
5 changes: 5 additions & 0 deletions libfprint/drivers/cros_fp.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ static const FpIdEntry id_table[] = {
{ .vid = 0, .pid = 0, .driver_data = 0 },
};

static void
fpi_device_cros_fp_init(FpiDeviceCrosFp *klass)
{
}

static void
fpi_device_cros_fp_class_init (FpiDeviceCrosFpClass *klass)
{
Expand Down