diff options
author | Ian Moffett <ian@osmora.org> | 2024-01-01 14:43:55 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-01-01 14:43:55 -0500 |
commit | 6a43636fc0be60fcb9b6761981480f2bb9da41f8 (patch) | |
tree | ff50bc02e9026a503ae75f9d6466cd15e7e21cee /sys/arch | |
parent | bef918966be6f46fb52f11eeb587f20e0c4677e6 (diff) |
project-wide: Make copyright year a range
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/amd64/cpu.c | 2 | ||||
-rw-r--r-- | sys/arch/amd64/amd64/gdt.c | 2 | ||||
-rw-r--r-- | sys/arch/amd64/amd64/idt.c | 2 | ||||
-rw-r--r-- | sys/arch/amd64/amd64/ioapic.c | 2 | ||||
-rw-r--r-- | sys/arch/amd64/amd64/lapic.c | 2 | ||||
-rw-r--r-- | sys/arch/amd64/amd64/lapic_timer.S | 2 | ||||
-rw-r--r-- | sys/arch/amd64/amd64/machdep.c | 2 | ||||
-rw-r--r-- | sys/arch/amd64/amd64/pmap.c | 2 | ||||
-rw-r--r-- | sys/arch/amd64/amd64/spectre.S | 2 | ||||
-rw-r--r-- | sys/arch/amd64/amd64/spectre.c | 2 | ||||
-rw-r--r-- | sys/arch/amd64/amd64/trap.S | 2 | ||||
-rw-r--r-- | sys/arch/amd64/amd64/trap.c | 2 | ||||
-rw-r--r-- | sys/arch/amd64/amd64/tss.S | 2 | ||||
-rw-r--r-- | sys/arch/amd64/amd64/tss.c | 2 | ||||
-rw-r--r-- | sys/arch/amd64/isa/i8254.c | 2 |
15 files changed, 15 insertions, 15 deletions
diff --git a/sys/arch/amd64/amd64/cpu.c b/sys/arch/amd64/amd64/cpu.c index ad82a32..8763b51 100644 --- a/sys/arch/amd64/amd64/cpu.c +++ b/sys/arch/amd64/amd64/cpu.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/arch/amd64/amd64/gdt.c b/sys/arch/amd64/amd64/gdt.c index 095e1d9..f48e27a 100644 --- a/sys/arch/amd64/amd64/gdt.c +++ b/sys/arch/amd64/amd64/gdt.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/arch/amd64/amd64/idt.c b/sys/arch/amd64/amd64/idt.c index 89aa80f..03a2af0 100644 --- a/sys/arch/amd64/amd64/idt.c +++ b/sys/arch/amd64/amd64/idt.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/arch/amd64/amd64/ioapic.c b/sys/arch/amd64/amd64/ioapic.c index 0c12080..b4d5f51 100644 --- a/sys/arch/amd64/amd64/ioapic.c +++ b/sys/arch/amd64/amd64/ioapic.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/arch/amd64/amd64/lapic.c b/sys/arch/amd64/amd64/lapic.c index 26a82e2..50d518c 100644 --- a/sys/arch/amd64/amd64/lapic.c +++ b/sys/arch/amd64/amd64/lapic.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/arch/amd64/amd64/lapic_timer.S b/sys/arch/amd64/amd64/lapic_timer.S index 97193f1..abfd9e0 100644 --- a/sys/arch/amd64/amd64/lapic_timer.S +++ b/sys/arch/amd64/amd64/lapic_timer.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/arch/amd64/amd64/machdep.c b/sys/arch/amd64/amd64/machdep.c index 9658664..1000ebf 100644 --- a/sys/arch/amd64/amd64/machdep.c +++ b/sys/arch/amd64/amd64/machdep.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/arch/amd64/amd64/pmap.c b/sys/arch/amd64/amd64/pmap.c index 579a29b..1da1f99 100644 --- a/sys/arch/amd64/amd64/pmap.c +++ b/sys/arch/amd64/amd64/pmap.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/arch/amd64/amd64/spectre.S b/sys/arch/amd64/amd64/spectre.S index fb4c968..6163f05 100644 --- a/sys/arch/amd64/amd64/spectre.S +++ b/sys/arch/amd64/amd64/spectre.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/arch/amd64/amd64/spectre.c b/sys/arch/amd64/amd64/spectre.c index b80245a..b276bba 100644 --- a/sys/arch/amd64/amd64/spectre.c +++ b/sys/arch/amd64/amd64/spectre.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/arch/amd64/amd64/trap.S b/sys/arch/amd64/amd64/trap.S index bdfaab5..5a77955 100644 --- a/sys/arch/amd64/amd64/trap.S +++ b/sys/arch/amd64/amd64/trap.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/arch/amd64/amd64/trap.c b/sys/arch/amd64/amd64/trap.c index c3c2e8f..44482b7 100644 --- a/sys/arch/amd64/amd64/trap.c +++ b/sys/arch/amd64/amd64/trap.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/arch/amd64/amd64/tss.S b/sys/arch/amd64/amd64/tss.S index 7b7fa67..8cff06b 100644 --- a/sys/arch/amd64/amd64/tss.S +++ b/sys/arch/amd64/amd64/tss.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/arch/amd64/amd64/tss.c b/sys/arch/amd64/amd64/tss.c index 0d894b5..8bd7deb 100644 --- a/sys/arch/amd64/amd64/tss.c +++ b/sys/arch/amd64/amd64/tss.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/arch/amd64/isa/i8254.c b/sys/arch/amd64/isa/i8254.c index 8442d86..f19fb6b 100644 --- a/sys/arch/amd64/isa/i8254.c +++ b/sys/arch/amd64/isa/i8254.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without |