Skip to content

Commit b134c5b

Browse files
authored
Merge branch 'main' into bump-strum
2 parents c00bfaf + 0dadb6b commit b134c5b

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/ValidatePullRequest.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ name: Validate Pull Request
55
on:
66
pull_request:
77
branches: [main, "release/**"]
8+
paths-ignore:
9+
- '**.md'
10+
- '**.txt'
811
merge_group:
912

1013
permissions:

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<div align="center">
1+
<div style="display: grid; place-items: center;">
22
<h1>Hyperlight</h1>
3-
<img src="https://github.com/hyperlight-dev/hyperlight/blob/main/docs/assets/hl-tentative-logo.png" width="150px" />
3+
<img src="https://raw.githubusercontent.com/hyperlight-dev/hyperlight/refs/heads/main/docs/assets/hyperlight-logo.png" width="150px" alt="hyperlight logo"/>
44
<p>
55
<strong>Hyperlight is a lightweight Virtual Machine Manager (VMM) designed to be embedded within applications. It enables safe execution of untrusted code within <i>micro virtual machines</i> with very low latency and minimal overhead.
66
</strong>
@@ -157,7 +157,7 @@ For examples of guest applications, see the [./src/tests/c_guests](./src/tests/c
157157
- [src/tests/c_guests](./src/tests/c_guests) - This directory contains two Hyperlight Guest programs written in C, which are intended to be launched within partitions as "guests".
158158

159159
- Tests:
160-
- [src/hyperlight-testing](./src/hyperlight_testing/) - Shared testing code for Hyperlight projects build int Rust.
160+
- [src/hyperlight-testing](./src/hyperlight_testing) - Shared testing code for Hyperlight projects build int Rust.
161161

162162
## Try it yourself!
163163

@@ -220,9 +220,9 @@ If all worked as expected, you should the following message in your console:
220220
Hello, World! I am executing inside of a VM :)
221221
```
222222

223-
If you get the error `Error: NoHypervisorFound` and KVM or mshv is set up then this may be a permissions issue. In bash you can use `ls -l /dev/kvm` or `ls -l /dev/mshv` to check which groups that owns the device and then `groups` to make sure your user is a member of that group.
223+
If you get the error `Error: NoHypervisorFound` and KVM or mshv is set up then this may be a permissions issue. In bash, you can use `ls -l /dev/kvm` or `ls -l /dev/mshv` to check which group owns that device and then `groups` to make sure your user is a member of that group.
224224

225-
For more details on how to verify that KVM is correctly installed and permissions are correct, follow the guide [here](https://help.ubuntu.com/community/KVM/Installation)).
225+
For more details on how to verify that KVM is correctly installed and permissions are correct, follow the guide [here](https://help.ubuntu.com/community/KVM/Installation).
226226

227227
## Contributing to Hyperlight
228228

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)