Skip to content

Commit

Permalink
New files
Browse files Browse the repository at this point in the history
  • Loading branch information
Luigi Capogrosso committed May 8, 2019
1 parent 7d9085f commit 9af9701
Show file tree
Hide file tree
Showing 107 changed files with 596 additions and 17,846 deletions.
469 changes: 469 additions & 0 deletions .clang-format

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .gdb.debug
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
symbol-file ./mentos/kernel.bin
exec-file ./mentos/kernel.bin
target remote localhost:1234
101 changes: 101 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Gradle
.idea/**/gradle.xml
.idea/**/libraries

# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/modules.xml
# .idea/*.iml
# .idea/modules

# CMake
cmake-build-*/

# Mongo Explorer plugin
.idea/**/mongoSettings.xml

# File-based project format
*.iws

# IntelliJ
out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

# Editor-based Rest Client
.idea/httpRequests

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser

# Galfurian fork
*.o
bochsout.txt
kernel.bin
boot/os/
generated/
src/mentos/src/os/
src/mentos/src/utils/
utils/initfscp
cmake-build-*
build
doc/html
.idea

# CMake from https://github.com/github/gitignore
CMakeLists.txt.user
CMakeCache.txt
CMakeFiles
CMakeScripts
Testing
Makefile
cmake_install.cmake
install_manifest.txt
compile_commands.json
CTestTestfile.cmake

# Changes during compilation
initfs
src/mentos/kernel.map
src/mentos/libmentOs.a
src/initscp/initfscp

# OS generated files
.DS_Store
23 changes: 23 additions & 0 deletions .travis.jml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
dist : xenial
sudo : required
language : c

matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
env: COMPILER=gcc-5

before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq nasm

script:
- mkdir build
- cd build
- cmake -DCMAKE_C_COMPILER=$COMPILER .. && make
Loading

0 comments on commit 9af9701

Please sign in to comment.