Skip to content

Commit

Permalink
Update links to refer to the new repo (#11)
Browse files Browse the repository at this point in the history
Co-authored-by: Ben Hillis <[email protected]>
  • Loading branch information
benhillis and Ben Hillis authored Oct 3, 2024
1 parent 6531c77 commit fce6530
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/trigger-vso-pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def main(pipeline_id: str, token: str, commit: str, cancel: str, organization: s

build = {
'definition': {'id': pipeline_id},
'templateParameters': {'OssSubmoduleCommit': commit, 'OssSubmoduleRemote': 'https://github.com/microsoft/hvlite'}
'templateParameters': {'OssSubmoduleCommit': commit}
}
build = client.queue_build(build, project=project)
print(f'Scheduled build: {build.id}. Url: {organization}/{project}/_build/results?buildId={build.id}&view=results', file=sys.stderr)
Expand Down
6 changes: 3 additions & 3 deletions Guide/src/fuzzing/writing.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ Some examples of in-tree fuzzers:
* More complex device example: [ide/fuzz/fuzz_ide.rs][fuzz_ide_url]
* Abstraction over unsafe example: [ide/fuzz/fuzz_scsi_buffer.rs][fuzz_scsi_buffer_url]

[fuzz_battery_url]: https://github.com/microsoft/hvlite/blob/main/vm/devices/chipset/fuzz/fuzz_battery.rs
[fuzz_ide_url]: https://github.com/microsoft/hvlite/blob/main/vm/devices/storage/ide/fuzz/fuzz_ide.rs
[fuzz_scsi_buffer_url]: https://github.com/microsoft/hvlite/blob/main/vm/devices/storage/scsi_buffers/fuzz/fuzz_scsi_buffers.rs
[fuzz_battery_url]: https://github.com/microsoft/openvmm/blob/main/vm/devices/chipset/fuzz/fuzz_battery.rs
[fuzz_ide_url]: https://github.com/microsoft/openvmm/blob/main/vm/devices/storage/ide/fuzz/fuzz_ide.rs
[fuzz_scsi_buffer_url]: https://github.com/microsoft/openvmm/blob/main/vm/devices/storage/scsi_buffers/fuzz/fuzz_scsi_buffers.rs

Once you're ready to take a stab at writing your own fuzzer, spinning up a new
fuzzer is as easy as running:
Expand Down
2 changes: 1 addition & 1 deletion Guide/src/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ If you haven't already installed `git`, you can download it
[here](https://git-scm.com/downloads).

```powershell
PS> git clone https://github.com/microsoft/hvlite.git
PS> git clone https://github.com/microsoft/openvmm.git
```

## Next Steps
Expand Down
2 changes: 1 addition & 1 deletion Guide/src/getting_started_wsl.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ WSL> curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
**access said clone from Linux. This will cause issues.**

```bash
WSL> git clone https://github.com/microsoft/hvlite.git
WSL> git clone https://github.com/microsoft/openvmm.git
```

## [WSL] Other dependencies
Expand Down
2 changes: 1 addition & 1 deletion Guide/src/process/conventions.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ are some default lints that we've decided to disabled project wide, and other
non-default lints which we've explicitly opted into.

See
[`.cargo/config.toml`](https://github.com/microsoft/hvlite?path=/.cargo/config.toml)
[`.cargo/config.toml`](https://github.com/microsoft/openvmm?path=/.cargo/config.toml)
for a list of globally enabled/disabled lints, along with justification as to
why certain lints have been enabled/disabled.

Expand Down
2 changes: 1 addition & 1 deletion Guide/src/vmgstool.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ allow certain "files" to be encrypted as the scenario requires it.

Github actions in the OpenVMM repo build VmgsTool binaries for Linux and Windows.
You can easily pull the latest binaries: click on the latest run in
[OpenVMM CI](https://github.com/microsoft/HvLite/actions/workflows/openvmm-ci.yaml)
[OpenVMM CI](https://github.com/microsoft/openvmm/actions/workflows/openvmm-ci.yaml)
, and under "Artifacts" , you'll see them listed
(there should be artifacts titled `*-vmgstool` with different flavors the binaries were built with).

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OpenVMM

[![Build Status](https://github.com/microsoft/HvLite/actions/workflows/openvmm-ci.yaml/badge.svg?branch=main)](https://github.com/microsoft/HvLite/actions/workflows/openvmm-ci.yaml)
[![Build Status](https://github.com/microsoft/openvmm/actions/workflows/openvmm-ci.yaml/badge.svg?branch=main)](https://github.com/microsoft/openvmm/actions/workflows/openvmm-ci.yaml)

OpenVMM is a new VMM for Windows and Linux, written in Rust.

Expand Down
2 changes: 1 addition & 1 deletion flowey/flowey_lib_common/src/git_checkout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub enum RepoSource<C = VarNotClaimed> {
/// resource at the pipeline level. See the docs for this type for more
/// information.
AdoResource(AdoResourcesRepositoryId),
/// (GitHub Only) Checkout a repo described by the given repository "{owner}/{name}" (e.g. "microsoft/HvLite") .
/// (GitHub Only) Checkout a repo described by the given repository "{owner}/{name}" (e.g. "microsoft/openvmm") .
GithubRepo { owner: String, name: String },
/// (GitHub Only) Checkout the repo containing the pipeline.
GithubSelf,
Expand Down

0 comments on commit fce6530

Please sign in to comment.