diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-08-28 14:58:53 +0100 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-08-28 14:58:53 +0100 |
| commit | e88de0162cff8bbad80972c1b92355b9d2db0213 (patch) | |
| tree | 625f5544459177fbe54161bc89887b0288a36c29 /.gitignore | |
| parent | f85dc5011b3ff2342c6129eafb038ae11fef44a3 (diff) | |
| download | tinyOS-e88de0162cff8bbad80972c1b92355b9d2db0213.tar.xz tinyOS-e88de0162cff8bbad80972c1b92355b9d2db0213.zip | |
Add bootable kernel with basic print function
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8bacbce --- /dev/null +++ b/.gitignore @@ -0,0 +1,54 @@ +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf + +bin/
\ No newline at end of file |