summaryrefslogtreecommitdiff
path: root/sys/arch/amd64
diff options
context:
space:
mode:
authorsigsegv7 <ian@osmora.org>2023-11-13 09:55:23 -0500
committersigsegv7 <ian@osmora.org>2023-11-13 14:46:52 -0500
commit6ce74b29ca71799cc8bf873e93f7f741d868ab0f (patch)
treee251b72cdc234f47d95cc428c95638441e863326 /sys/arch/amd64
parentf53ac3212fe8f07c99aef348e754aa8ab00081dc (diff)
project-wide: Update project name
Update project name to avoid conflicts with the name of Amazon's new 'Vega' Smart Device Operating System. Signed-off-by: sigsegv7 <ian@osmora.org>
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r--sys/arch/amd64/cpu.c6
-rw-r--r--sys/arch/amd64/gdt.c4
-rw-r--r--sys/arch/amd64/idt.c4
-rw-r--r--sys/arch/amd64/ioapic.c6
-rw-r--r--sys/arch/amd64/lapic.c8
-rw-r--r--sys/arch/amd64/machdep.c4
-rw-r--r--sys/arch/amd64/pmap.c4
-rw-r--r--sys/arch/amd64/spectre.S6
-rw-r--r--sys/arch/amd64/spectre.c6
-rw-r--r--sys/arch/amd64/trap.S6
-rw-r--r--sys/arch/amd64/trap.c4
11 files changed, 29 insertions, 29 deletions
diff --git a/sys/arch/amd64/cpu.c b/sys/arch/amd64/cpu.c
index 04e573e..81118e1 100644
--- a/sys/arch/amd64/cpu.c
+++ b/sys/arch/amd64/cpu.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -10,7 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. Neither the name of VegaOS nor the names of its
+ * 3. Neither the name of Hyra nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
@@ -30,7 +30,7 @@
#include <machine/cpu.h>
#include <sys/cdefs.h>
-__KERNEL_META("$Vega$: cpu.c, Ian Marco Moffett, "
+__KERNEL_META("$Hyra$: cpu.c, Ian Marco Moffett, "
"AMD64 CPU abstraction module");
static struct cpu_info bsp_info;
diff --git a/sys/arch/amd64/gdt.c b/sys/arch/amd64/gdt.c
index b1f3220..209e2f7 100644
--- a/sys/arch/amd64/gdt.c
+++ b/sys/arch/amd64/gdt.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -10,7 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. Neither the name of VegaOS nor the names of its
+ * 3. Neither the name of Hyra nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
diff --git a/sys/arch/amd64/idt.c b/sys/arch/amd64/idt.c
index 05ec7cb..9f177e0 100644
--- a/sys/arch/amd64/idt.c
+++ b/sys/arch/amd64/idt.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -10,7 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. Neither the name of VegaOS nor the names of its
+ * 3. Neither the name of Hyra nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
diff --git a/sys/arch/amd64/ioapic.c b/sys/arch/amd64/ioapic.c
index 6c283ac..443142c 100644
--- a/sys/arch/amd64/ioapic.c
+++ b/sys/arch/amd64/ioapic.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -10,7 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. Neither the name of VegaOS nor the names of its
+ * 3. Neither the name of Hyra nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
@@ -36,7 +36,7 @@
#include <sys/syslog.h>
__MODULE_NAME("ioapic");
-__KERNEL_META("$Vega$: ioapic.c, Ian Marco Moffett, "
+__KERNEL_META("$Hyra$: ioapic.c, Ian Marco Moffett, "
"I/O APIC driver");
#define IOAPIC_BASE_OFF(off) ((void *)((uintptr_t)ioapic_base + off))
diff --git a/sys/arch/amd64/lapic.c b/sys/arch/amd64/lapic.c
index af219d2..412e5cc 100644
--- a/sys/arch/amd64/lapic.c
+++ b/sys/arch/amd64/lapic.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -10,7 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. Neither the name of VegaOS nor the names of its
+ * 3. Neither the name of Hyra nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
@@ -40,7 +40,7 @@
#include <dev/timer/hpet.h>
__MODULE_NAME("lapic");
-__KERNEL_META("$Vega$: lapic.c, Ian Marco Moffett, "
+__KERNEL_META("$Hyra$: lapic.c, Ian Marco Moffett, "
"Local APIC driver");
/*
@@ -265,7 +265,7 @@ lapic_init(void)
if (!lapic_check_support()) {
/*
- * VegaOS currently depends on the existance
+ * Hyra currently depends on the existance
* of a Local APIC.
*/
panic("This machine does not support LAPIC!\n");
diff --git a/sys/arch/amd64/machdep.c b/sys/arch/amd64/machdep.c
index edff4f2..f5281aa 100644
--- a/sys/arch/amd64/machdep.c
+++ b/sys/arch/amd64/machdep.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -10,7 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. Neither the name of VegaOS nor the names of its
+ * 3. Neither the name of Hyra nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
diff --git a/sys/arch/amd64/pmap.c b/sys/arch/amd64/pmap.c
index 92d559f..afbdbda 100644
--- a/sys/arch/amd64/pmap.c
+++ b/sys/arch/amd64/pmap.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -10,7 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. Neither the name of VegaOS nor the names of its
+ * 3. Neither the name of Hyra nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
diff --git a/sys/arch/amd64/spectre.S b/sys/arch/amd64/spectre.S
index f93c67e..f293ab0 100644
--- a/sys/arch/amd64/spectre.S
+++ b/sys/arch/amd64/spectre.S
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -10,7 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. Neither the name of VegaOS nor the names of its
+ * 3. Neither the name of Hyra nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
@@ -29,7 +29,7 @@
#include <sys/cdefs.h>
-__KERNEL_META "$Vega$: spectre.S, Ian Marco Moffett, \
+__KERNEL_META "$Hyra$: spectre.S, Ian Marco Moffett, \
Spectre mitigation detection"
.text
diff --git a/sys/arch/amd64/spectre.c b/sys/arch/amd64/spectre.c
index 00b0237..a0be8fc 100644
--- a/sys/arch/amd64/spectre.c
+++ b/sys/arch/amd64/spectre.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -10,7 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. Neither the name of VegaOS nor the names of its
+ * 3. Neither the name of Hyra nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
@@ -34,7 +34,7 @@
#include <sys/types.h>
__MODULE_NAME("spectre");
-__KERNEL_META("$Vega$: spectre.c, Ian Marco Moffett, "
+__KERNEL_META("$Hyra$: spectre.c, Ian Marco Moffett, "
"Spectre mitigation support");
#if __SPECTRE_MITIGATION == 1
diff --git a/sys/arch/amd64/trap.S b/sys/arch/amd64/trap.S
index 8c428de..b63e087 100644
--- a/sys/arch/amd64/trap.S
+++ b/sys/arch/amd64/trap.S
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -10,7 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. Neither the name of VegaOS nor the names of its
+ * 3. Neither the name of Hyra nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
@@ -31,7 +31,7 @@
#include <machine/trap.h>
#include <sys/cdefs.h>
-__KERNEL_META "$Vega$: trap.S, Ian Marco Moffett, \
+__KERNEL_META "$Hyra$: trap.S, Ian Marco Moffett, \
Trap handling routines"
.text
diff --git a/sys/arch/amd64/trap.c b/sys/arch/amd64/trap.c
index af61d0f..fa0a68e 100644
--- a/sys/arch/amd64/trap.c
+++ b/sys/arch/amd64/trap.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -10,7 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. Neither the name of VegaOS nor the names of its
+ * 3. Neither the name of Hyra nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*