misc: Remove binaries from repo
This commit is contained in:
parent
20055d3e11
commit
7eb22e5c15
|
@ -15,7 +15,7 @@ jobs:
|
|||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install packages
|
||||
run: sudo apt install build-essential gcc-multilib
|
||||
run: sudo apt install build-essential
|
||||
|
||||
- name: Build the toolchain
|
||||
run: make toolchain
|
||||
|
@ -35,7 +35,7 @@ jobs:
|
|||
- name: Build limine-install-linux-x86_32
|
||||
uses: mintsuki/ubuntu-18.04-x86@0.1
|
||||
with:
|
||||
command: make CFLAGS="-m32 -O2 -pipe -static" clean all
|
||||
command: make CFLAGS="-O2 -pipe -static" clean all
|
||||
|
||||
- name: Strip limine-install-linux-x86_32
|
||||
uses: mintsuki/ubuntu-18.04-x86@0.1
|
||||
|
|
|
@ -8,13 +8,10 @@
|
|||
/**/*.elf
|
||||
/**/*.hdd
|
||||
/**/*.iso
|
||||
/**/*.sys
|
||||
/bochsout.txt
|
||||
/bx_enh_dbg.ini
|
||||
.vscode
|
||||
/limine-install
|
||||
!/limine.bin
|
||||
!/limine-pxe.bin
|
||||
!/limine-cd.bin
|
||||
!/stage2.map
|
||||
/stivale
|
||||
/test_image
|
||||
|
|
BIN
limine-cd.bin
BIN
limine-cd.bin
Binary file not shown.
BIN
limine-pxe.bin
BIN
limine-pxe.bin
Binary file not shown.
BIN
limine.bin
BIN
limine.bin
Binary file not shown.
BIN
limine.sys
BIN
limine.sys
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
@ -4,7 +4,7 @@ OBJCOPY = i386-elf-objcopy
|
|||
OBJDUMP = i386-elf-objdump
|
||||
READELF = i386-elf-readelf
|
||||
|
||||
LIMINE_VERSION := $(shell git branch --show-current | sed 's/-branch//')
|
||||
LIMINE_VERSION := $(shell git describe --exact-match --tags `git log -n1 --pretty='%h'` || git log -n1 --pretty='%h')
|
||||
WERROR = -Werror
|
||||
CFLAGS = -Os -pipe -Wall -Wextra $(WERROR)
|
||||
|
||||
|
|
Loading…
Reference in New Issue