File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 1515 - uses : actions/checkout@v2
1616 - name : install tools
1717 run : make prep
18+ - name : Install grub
19+ run : make Install-Grub-BIOS
1820 - name : make move
19- run : make move GRUB=pt
21+ run : make move
2022
2123 - name : Upload Build files
2224 uses : actions/upload-artifact@v2
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ inline char* OS_NAME = "SectorOS";
55
66inline char * KERNEL_NAME = "SectorOS" ;
77inline char * KERNEL_VERSION = "V1.3.1" ;
8- inline char * KERNEL_BUILD = "Build: 2021-10-02 " ;
8+ inline char * KERNEL_BUILD = "Build: 2021-11-16 " ;
99inline char * KERNEL_ARCH = "x86" ;
1010
1111inline char * SHELL_NAME = "SOSH" ;
Original file line number Diff line number Diff line change @@ -81,4 +81,17 @@ stopVBOX:
8181.PHONY : clean
8282clean :
8383 @printf " \e[1;31mCleaning the object files...\n\e[0m"
84- @rm -f $(objects ) SectorOS_Kernel.bin SectorOS.iso
84+ @rm -f $(objects ) SectorOS_Kernel.bin SectorOS.
85+
86+ .PHONY : Install-Grub-BIOS
87+ Install-Grub-BIOS :
88+ pushd /tmp/
89+ git clone https://git.savannah.gnu.org/git/grub.git
90+ cd grub
91+ sudo apt-get install build-essential autoconf automake
92+ ./bootstrap
93+ ./autogen.sh
94+ ./configure --prefix=$HOME /local --platform=pc-i386
95+ make
96+ sudo make install
97+ popd
You can’t perform that action at this time.
0 commit comments