From 14799fb2ef51ccfbee34fcb8b290bf3441a3791a Mon Sep 17 00:00:00 2001 From: Marco Vanotti Date: Tue, 19 Mar 2019 23:50:58 -0700 Subject: docs, pkg/vcs, sys/fuchsia: update fuchsia urls Recently the fuchsia team decided to merge all their subrepos into one big git repo. This meant that the "zircon" repo doesn't exist anymore. Instead almost everything is under the fuchsia repo. This change updates all the reference I could find in the code that point to the zircon and docs repo to make them point to the new fuchsia repo. --- docs/fuchsia/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/fuchsia') diff --git a/docs/fuchsia/README.md b/docs/fuchsia/README.md index 3c06cf704..d3e75b1ce 100644 --- a/docs/fuchsia/README.md +++ b/docs/fuchsia/README.md @@ -1,8 +1,8 @@ # Fuchsia support For information about checking out and building Fuchsia see -[Getting Started](https://fuchsia.googlesource.com/docs/+/master/getting_started.md) -and [Soure Code](https://fuchsia.googlesource.com/docs/+/master/development/source_code/README.md). +[Getting Started](https://fuchsia.googlesource.com/fuchsia/+/master/docs/getting_started.md) +and [Soure Code](https://fuchsia.googlesource.com/fuchsia/+/master/docs/development/source_code/README.md). Image needs to be configured with sshd support: ``` fx set x64 --packages garnet/packages/products/sshd @@ -16,7 +16,7 @@ fx set arm64 --packages garnet/packages/products/sshd fx full-build ``` -Syscall descriptions live in the `sys/fuchsia` folder. To update a syscall, you need to modify the `.txt` file that contains it, make sure your new definition matches the one in zircon's [syscalls.abigen](https://fuchsia.googlesource.com/zircon/+/HEAD/system/public/zircon/syscalls.abigen) file. **If the syscall was used in `executor/common_fuchsia.h`, you need to update the usages there as well**. FIDL definitions do not need manual updating because they are extracted automatically with the commands below. +Syscall descriptions live in the `sys/fuchsia` folder. To update a syscall, you need to modify the `.txt` file that contains it, make sure your new definition matches the one in zircon's [syscalls.abigen](https://fuchsia.googlesource.com/fuchsia/+/master/zircon/system/public/zircon/syscalls.abigen) file. **If the syscall was used in `executor/common_fuchsia.h`, you need to update the usages there as well**. FIDL definitions do not need manual updating because they are extracted automatically with the commands below. Once you updated the syscalls definitions, everything can be regenerated by running: -- cgit mrf-deployment