aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorDan Robertson <danlrobertson89@gmail.com>2019-02-11 14:46:26 +0000
committerDmitry Vyukov <dvyukov@google.com>2019-02-11 18:10:35 +0100
commit13f1d0047ae34d1cd02d89c52a1bd6a0a02b497e (patch)
tree051270db74e561b3c95d3f8d6a42d8220576e332 /pkg
parentd3fd6fda2435a12f77c302203912f1011b847c5a (diff)
sys/linux: add NDISC packet formats to vnet.txt
Add the basic NDISC (RFC 4861) packet formats to sys/linux/vnet.txt.
Diffstat (limited to 'pkg')
-rw-r--r--pkg/build/akaros.go4
-rw-r--r--pkg/build/fuchsia.go2
-rw-r--r--pkg/vcs/vcs_test.go14
3 files changed, 10 insertions, 10 deletions
diff --git a/pkg/build/akaros.go b/pkg/build/akaros.go
index 60750028f..cbc46326c 100644
--- a/pkg/build/akaros.go
+++ b/pkg/build/akaros.go
@@ -86,8 +86,8 @@ bash
return fmt.Errorf("failed to write image file: %v", err)
}
for src, dst := range map[string]string{
- ".config": "kernel.config",
- "key": "key",
+ ".config": "kernel.config",
+ "key": "key",
"obj/kern/akaros-kernel": "kernel",
"obj/kern/akaros-kernel-64b": "obj/akaros-kernel-64b",
} {
diff --git a/pkg/build/fuchsia.go b/pkg/build/fuchsia.go
index 1f30887b0..bb8b624a9 100644
--- a/pkg/build/fuchsia.go
+++ b/pkg/build/fuchsia.go
@@ -28,7 +28,7 @@ func (fu fuchsia) build(targetArch, vmType, kernelDir, outputDir, compiler, user
}
for src, dst := range map[string]string{
"out/" + arch + "/obj/build/images/fvm.blk": "image",
- ".ssh/pkey": "key",
+ ".ssh/pkey": "key",
"out/build-zircon/build-" + arch + "/zircon.elf": "obj/zircon.elf",
"out/build-zircon/build-" + arch + "/multiboot.bin": "kernel",
"out/" + arch + "/fuchsia.zbi": "initrd",
diff --git a/pkg/vcs/vcs_test.go b/pkg/vcs/vcs_test.go
index 9e90090a4..41d682aab 100644
--- a/pkg/vcs/vcs_test.go
+++ b/pkg/vcs/vcs_test.go
@@ -31,13 +31,13 @@ func TestCheckRepoAddress(t *testing.T) {
"https://anonscm.debian.org/git/kernel/linux.git": true,
"git://kernel.ubuntu.com/ubuntu/ubuntu-zesty.git": true,
"http://host.xz:123/path/to/repo.git/": true,
- "": false,
- "foobar": false,
- "linux-next": false,
- "foo://kernel.ubuntu.com/ubuntu/ubuntu-zesty.git": false,
- "git://kernel/ubuntu.git": false,
- "git://kernel.com/ubuntu": false,
- "gitgit://kernel.ubuntu.com/ubuntu/ubuntu-zesty.git": false,
+ "": false,
+ "foobar": false,
+ "linux-next": false,
+ "foo://kernel.ubuntu.com/ubuntu/ubuntu-zesty.git": false,
+ "git://kernel/ubuntu.git": false,
+ "git://kernel.com/ubuntu": false,
+ "gitgit://kernel.ubuntu.com/ubuntu/ubuntu-zesty.git": false,
})
}