mirror of
https://github.com/Fennix-Project/Drivers.git
synced 2025-05-25 22:14:31 +00:00
Update files
This commit is contained in:
parent
d76f0deca1
commit
a184a7f954
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
out
|
||||
*.map
|
||||
*.o
|
5
Audio/Makefile
Normal file
5
Audio/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
build:
|
||||
|
||||
|
||||
clean:
|
||||
|
10
Fennix Drivers.code-workspace
Normal file
10
Fennix Drivers.code-workspace
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"folders": [
|
||||
{
|
||||
"path": "."
|
||||
}
|
||||
],
|
||||
"settings": {
|
||||
"debug.allowBreakpointsEverywhere": true
|
||||
}
|
||||
}
|
5
FileSystem/Makefile
Normal file
5
FileSystem/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
build:
|
||||
make --quiet -C ext2 build
|
||||
|
||||
clean:
|
||||
make -C ext2 clean
|
5
FileSystem/ext2/Makefile
Normal file
5
FileSystem/ext2/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
build:
|
||||
|
||||
|
||||
clean:
|
||||
|
15
Makefile
Normal file
15
Makefile
Normal file
@ -0,0 +1,15 @@
|
||||
build:
|
||||
mkdir -p out
|
||||
touch out/dummy.drv
|
||||
make --quiet -C Audio build
|
||||
make --quiet -C FileSystem build
|
||||
make --quiet -C Video build
|
||||
|
||||
prepare:
|
||||
$(info Nothing to prepare)
|
||||
|
||||
clean:
|
||||
rm -rf out
|
||||
make -C Audio clean
|
||||
make -C FileSystem clean
|
||||
make -C Video clean
|
12
README.md
12
README.md
@ -1 +1,11 @@
|
||||
# Drivers
|
||||
# Drivers
|
||||
|
||||
Drivers for [Fennix](https://github.com/Fennix-Project/Fennix).
|
||||
|
||||
---
|
||||
|
||||
Use `Fennix` repo to build the operating system.
|
||||
|
||||
```bash
|
||||
git clone --recurse-submodules https://github.com/Fennix-Project/Fennix.git
|
||||
```
|
||||
|
5
Video/Framebuffer/Makefile
Normal file
5
Video/Framebuffer/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
build:
|
||||
|
||||
|
||||
clean:
|
||||
|
5
Video/Makefile
Normal file
5
Video/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
build:
|
||||
make --quiet -C Framebuffer build
|
||||
|
||||
clean:
|
||||
make -C Framebuffer clean
|
Loading…
x
Reference in New Issue
Block a user