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

Fix/dvkm deploy #273

Merged
merged 3 commits into from
Mar 5, 2024
Merged
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
13 changes: 9 additions & 4 deletions deploy/intellabs/kafl/roles/examples/tasks/dvkm.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
- name: Install required packages
ansible.builtin.apt:
# required for lddtree
name: pax-utils
name:
- pax-utils
- flex
- bison
- libelf-dev
- libssl-dev
become: true

- name: Clone required submodules
# noqa: command-instead-of-module
ansible.builtin.command: >-
"git submodule update --init --depth 200
git submodule update --init --depth 200
--jobs {{ ansible_processor_nproc }}
{{ dvkm_sub_path }}
{{ linux_agent_sub_path }}"
# noqa: command-instead-of-module
{{ linux_agent_sub_path }}
args:
chdir: "{{ examples_root }}"
2 changes: 1 addition & 1 deletion docs/source/tutorials/linux/dvkm/workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ To set up the required dependencies, navigate to the kAFL directory and execute

```shell
$ cd kAFL
(venv) $ make deploy -- --tags examples,examples-dvkm
(venv) $ make deploy -- --tags examples,examples-linux-dvkm
```

Now, switch to the `📂 linux-user/dvkm` directory to compile the target and its dependencies:
Expand Down
Loading