Skip to content

Commit b1f073c

Browse files
committed
Remove duplicate target
1 parent 75bbb86 commit b1f073c

File tree

3 files changed

+0
-24
lines changed

3 files changed

+0
-24
lines changed

ghost.sh

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -201,23 +201,3 @@ SYSROOT_SYSTEM_LIB=$SYSROOT_SYSTEM/lib
201201
export PATH=$PATH:$TOOLCHAIN_BASE/bin
202202

203203

204-
#
205-
# Checks if limine is present and otherwise builds it
206-
#
207-
target_verify_limine() {
208-
pushd $TOOLCHAIN_BASE/target
209-
if [ ! -d "limine-$LIMINE_VERSION" ]; then
210-
headline "Prepare bootloader"
211-
212-
curl -LO $LIMINE_SOURCE
213-
tar -xzf limine-$LIMINE_VERSION.tar.gz
214-
215-
pushd limine-$LIMINE_VERSION
216-
./configure --enable-bios --enable-bios-cd --enable-uefi-cd --enable-uefi-x86-64
217-
make -j"$(nproc)"
218-
make install
219-
popd
220-
fi
221-
popd
222-
}
223-

kernel/build.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,6 @@ target_all() {
145145

146146

147147
# execute targets
148-
target_verify_limine
149-
150148
for var in $TARGET; do
151149
if [[ "$var" == "all" ]]; then
152150
target_all

target/build.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,6 @@ target_pack() {
9999

100100

101101
# execute targets
102-
target_verify_limine
103-
104102
for var in $TARGET; do
105103
if [[ "$var" == "pack" ]]; then
106104
target_pack

0 commit comments

Comments
 (0)