Skip to content

Commit 7112289

Browse files
committed
build: Update submodule links to codeberg.org as needed
1 parent e96635d commit 7112289

3 files changed

Lines changed: 17 additions & 18 deletions

File tree

3RDPARTY.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ that Limine is distributed under:
1919
A non-binding, informal summary of all projects Limine depends on, and the
2020
licenses used by said projects, in SPDX format, is as follows:
2121

22-
- [cc-runtime](https://github.com/osdev0/cc-runtime)
22+
- [cc-runtime](https://codeberg.org/osdev/cc-runtime)
2323
(Apache-2.0 WITH LLVM-exception) is used to provide runtime libgcc-like
2424
routines.
2525

26-
- [0BSD Freestanding C Headers](https://github.com/osdev0/freestnd-c-hdrs-0bsd)
26+
- [0BSD Freestanding C Headers](https://codeberg.org/osdev/freestnd-c-hdrs-0bsd)
2727
(0BSD) provide GCC and Clang compatible freestanding C headers.
2828

29-
- [Nyu-EFI](https://github.com/osdev0/nyu-efi) (multiple licenses, see list
29+
- [Nyu-EFI](https://codeberg.org/osdev/nyu-efi) (multiple licenses, see list
3030
below) provides headers and build-time support for UEFI.
3131
- BSD-2-Clause
3232
- BSD-2-Clause-Patent
@@ -48,7 +48,7 @@ below) provides headers and build-time support for UEFI.
4848
- [tinf](https://github.com/jibsen/tinf) (Zlib) is used in early x86 BIOS
4949
stages for GZIP decompression of stage2.
5050

51-
- [Flanterm](https://github.com/mintsuki/flanterm) (BSD-2-Clause) is used for
51+
- [Flanterm](https://codeberg.org/mintsuki/flanterm) (BSD-2-Clause) is used for
5252
text related screen drawing.
5353

5454
- [stb_image](https://github.com/nothings/stb/blob/master/stb_image.h) (MIT) is

bootstrap

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,23 +71,22 @@ download_by_hash() {
7171

7272
if ! test -f version; then
7373
clone_repo_commit \
74-
https://github.com/osdev0/freestnd-c-hdrs-0bsd.git \
74+
https://codeberg.org/osdev/freestnd-c-hdrs-0bsd.git \
7575
freestnd-c-hdrs \
7676
a87c192f3eb66b0806740dc67325f9ad23fc2d0b
7777

7878
clone_repo_commit \
79-
https://github.com/osdev0/cc-runtime.git \
79+
https://codeberg.org/osdev/cc-runtime.git \
8080
cc-runtime \
8181
576a01179f3298a4795b92f42c088f9f8800b56b
8282

83-
download_by_hash \
84-
https://github.com/osdev0/freestanding-toolchain/raw/b285931385edc926decab5c69934af5c045bd2dd/freestanding-toolchain \
83+
clone_repo_commit \
84+
https://codeberg.org/osdev/freestanding-toolchain.git \
8585
build-aux/freestanding-toolchain \
86-
b280df87c6db0f6ca1dd0a48579e694b403cb0fc77cf6df1e2ddbe69a134b405
87-
chmod +x build-aux/freestanding-toolchain
86+
b285931385edc926decab5c69934af5c045bd2dd
8887

8988
clone_repo_commit \
90-
https://github.com/osdev0/nyu-efi.git \
89+
https://codeberg.org/osdev/nyu-efi.git \
9190
nyu-efi \
9291
2263ac1a2bc98e5534d64a4896d3cfbbae00745a
9392

@@ -101,7 +100,7 @@ if ! test -f version; then
101100
rm -f decompressor/tinf/*.orig
102101

103102
clone_repo_commit \
104-
https://github.com/mintsuki/flanterm.git \
103+
https://codeberg.org/mintsuki/flanterm.git \
105104
common/flanterm \
106105
201100c968ad6db4f38632f9b6c3544854897788
107106

configure.ac

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ else
180180
FREESTANDING_OBJDUMP="$OBJDUMP_FOR_TARGET" \
181181
WANT_FREESTANDING_READELF=yes \
182182
FREESTANDING_READELF="$READELF_FOR_TARGET" \
183-
"$SRCDIR/build-aux/freestanding-toolchain" 2>"toolchain-files/bios-i686-toolchain.mk" || exit 1
183+
"$SRCDIR/build-aux/freestanding-toolchain/freestanding-toolchain" 2>"toolchain-files/bios-i686-toolchain.mk" || exit 1
184184
BUILD_BIOS="limine-bios"
185185
NEED_NASM=yes
186186
NEED_GZIP=yes
@@ -212,7 +212,7 @@ else
212212
FREESTANDING_OBJCOPY="$OBJCOPY_FOR_TARGET" \
213213
WANT_FREESTANDING_OBJDUMP=yes \
214214
FREESTANDING_OBJDUMP="$OBJDUMP_FOR_TARGET" \
215-
"$SRCDIR/build-aux/freestanding-toolchain" 2>"toolchain-files/uefi-i686-toolchain.mk" || exit 1
215+
"$SRCDIR/build-aux/freestanding-toolchain/freestanding-toolchain" 2>"toolchain-files/uefi-i686-toolchain.mk" || exit 1
216216
BUILD_UEFI_IA32="limine-uefi-ia32"
217217
NEED_NASM=yes
218218
fi
@@ -243,7 +243,7 @@ else
243243
FREESTANDING_OBJCOPY="$OBJCOPY_FOR_TARGET" \
244244
WANT_FREESTANDING_OBJDUMP=yes \
245245
FREESTANDING_OBJDUMP="$OBJDUMP_FOR_TARGET" \
246-
"$SRCDIR/build-aux/freestanding-toolchain" 2>"toolchain-files/uefi-x86_64-toolchain.mk" || exit 1
246+
"$SRCDIR/build-aux/freestanding-toolchain/freestanding-toolchain" 2>"toolchain-files/uefi-x86_64-toolchain.mk" || exit 1
247247
BUILD_UEFI_X86_64="limine-uefi-x86-64"
248248
NEED_NASM=yes
249249
fi
@@ -274,7 +274,7 @@ else
274274
FREESTANDING_OBJCOPY="$OBJCOPY_FOR_TARGET" \
275275
WANT_FREESTANDING_OBJDUMP=yes \
276276
FREESTANDING_OBJDUMP="$OBJDUMP_FOR_TARGET" \
277-
"$SRCDIR/build-aux/freestanding-toolchain" 2>"toolchain-files/uefi-aarch64-toolchain.mk" || exit 1
277+
"$SRCDIR/build-aux/freestanding-toolchain/freestanding-toolchain" 2>"toolchain-files/uefi-aarch64-toolchain.mk" || exit 1
278278
BUILD_UEFI_AARCH64="limine-uefi-aarch64"
279279
fi
280280

@@ -304,7 +304,7 @@ else
304304
FREESTANDING_OBJCOPY="$OBJCOPY_FOR_TARGET" \
305305
WANT_FREESTANDING_OBJDUMP=yes \
306306
FREESTANDING_OBJDUMP="$OBJDUMP_FOR_TARGET" \
307-
"$SRCDIR/build-aux/freestanding-toolchain" 2>"toolchain-files/uefi-riscv64-toolchain.mk" || exit 1
307+
"$SRCDIR/build-aux/freestanding-toolchain/freestanding-toolchain" 2>"toolchain-files/uefi-riscv64-toolchain.mk" || exit 1
308308
BUILD_UEFI_RISCV64="limine-uefi-riscv64"
309309
fi
310310

@@ -334,7 +334,7 @@ else
334334
FREESTANDING_OBJCOPY="$OBJCOPY_FOR_TARGET" \
335335
WANT_FREESTANDING_OBJDUMP=yes \
336336
FREESTANDING_OBJDUMP="$OBJDUMP_FOR_TARGET" \
337-
"$SRCDIR/build-aux/freestanding-toolchain" 2>"toolchain-files/uefi-loongarch64-toolchain.mk" || exit 1
337+
"$SRCDIR/build-aux/freestanding-toolchain/freestanding-toolchain" 2>"toolchain-files/uefi-loongarch64-toolchain.mk" || exit 1
338338
BUILD_UEFI_LOONGARCH64="limine-uefi-loongarch64"
339339
fi
340340

0 commit comments

Comments
 (0)