Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Migrate to MIT license
  • Loading branch information
djphoenix committed Apr 25, 2017
1 parent 8c5eba6 commit 3139f4f
Show file tree
Hide file tree
Showing 51 changed files with 85 additions and 1,312 deletions.
640 changes: 19 additions & 621 deletions LICENSE

Large diffs are not rendered by default.

15 changes: 1 addition & 14 deletions Makefile
@@ -1,18 +1,5 @@
# PhoeniX OS Makefile
# Copyright (C) 2013 PhoeniX
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Copyright © 2017 Yury Popov a.k.a. PhoeniX

.PHONY: all

Expand Down
22 changes: 17 additions & 5 deletions README.md
Expand Up @@ -5,7 +5,7 @@
***

PhoeniX OS is [open-source](https://en.wikipedia.org/wiki/Open-source_software) ([GPLv3](https://en.wikipedia.org/wiki/GNU_General_Public_License)) [64-bit](https://en.wikipedia.org/wiki/64-bit_computing) [operating system](https://en.wikipedia.org/wiki/Operating_system).
PhoeniX OS is [open-source](https://en.wikipedia.org/wiki/Open-source_software) ([MIT](LICENSE)) [64-bit](https://en.wikipedia.org/wiki/64-bit_computing) [operating system](https://en.wikipedia.org/wiki/Operating_system).
This OS is not based on GNU/Linux, Microsoft® Windows® or Apple Mac OS X, but may support formats of applications, drivers or modules that wrote for their systems.

## Documentation
Expand All @@ -24,8 +24,20 @@ All documentation of build, run and work with PhoeniX OS placed on [project WIKI
* [Dirvers](https://git.phoenix.dj/phoenix/phoenix-os/wikis/drivers)

## License
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Full text of GNU General Public License (version 3) included in [LICENSE](https://git.phoenix.dj/phoenix/phoenix-os/blob/master/LICENSE) file.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

## Disclaimer
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
15 changes: 1 addition & 14 deletions ld/system.ld
@@ -1,18 +1,5 @@
/* PhoeniX OS Linking script
** Copyright (C) 2013 PhoeniX
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
** Copyright © 2017 Yury Popov a.k.a. PhoeniX
*/

OUTPUT_FORMAT(elf64-x86-64)
Expand Down
15 changes: 1 addition & 14 deletions src/boot/bootstrap.s
@@ -1,18 +1,5 @@
# PhoeniX OS 32-bit mode bootup process
# Copyright (C) 2013 PhoeniX
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http:#www.gnu.org/licenses/>.
# Copyright © 2017 Yury Popov a.k.a. PhoeniX

.code32
.section .text
Expand Down
15 changes: 1 addition & 14 deletions src/boot/efiboot.cpp
@@ -1,18 +1,5 @@
// PhoeniX OS EFI Startup file
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

#include "kernlib.hpp"
#include "efi.hpp"
Expand Down
15 changes: 1 addition & 14 deletions src/boot/include/efi.hpp
@@ -1,18 +1,5 @@
// PhoeniX OS EFI Header
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

#pragma once
#include "kernlib.hpp"
Expand Down
15 changes: 1 addition & 14 deletions src/boot/include/multiboot_info.hpp
@@ -1,18 +1,5 @@
// PhoeniX OS Multiboot subsystem
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

#pragma once
#include "kernlib.hpp"
Expand Down
15 changes: 1 addition & 14 deletions src/boot/multiboot_info.cpp
@@ -1,18 +1,5 @@
// PhoeniX OS Multiboot subsystem
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

#include "multiboot_info.hpp"

Expand Down
15 changes: 1 addition & 14 deletions src/kernlib/display.cpp
@@ -1,18 +1,5 @@
// PhoeniX OS Kernel library display functions
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

#include "kernlib.hpp"
#include "efi.hpp"
Expand Down
15 changes: 1 addition & 14 deletions src/kernlib/font-8x16.hpp
@@ -1,18 +1,5 @@
// PhoeniX OS Kernel framebuffer 8x16 font
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

// This font was copied from linux source:
// linux/lib/fonts/font_8x16.c @ee89bd6bc73d1d14555418a2642172448052f1dd
Expand Down
15 changes: 1 addition & 14 deletions src/kernlib/include/kernlib.hpp
@@ -1,18 +1,5 @@
// PhoeniX OS Kernel library functions
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

#pragma once

Expand Down
15 changes: 1 addition & 14 deletions src/kernlib/include/kernlib/cpu.hpp
@@ -1,18 +1,5 @@
// PhoeniX OS Kernel library cpu functions
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

#pragma once
#include "std.hpp"
Expand Down
15 changes: 1 addition & 14 deletions src/kernlib/include/kernlib/display.hpp
@@ -1,18 +1,5 @@
// PhoeniX OS Kernel library display functions
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

#pragma once
#include "std.hpp"
Expand Down
15 changes: 1 addition & 14 deletions src/kernlib/include/kernlib/mem.hpp
@@ -1,18 +1,5 @@
// PhoeniX OS Kernel library memory functions
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

#pragma once
#include "std.hpp"
Expand Down
15 changes: 1 addition & 14 deletions src/kernlib/include/kernlib/mutex.hpp
@@ -1,18 +1,5 @@
// PhoeniX OS Kernel library mutex functions
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

#pragma once
#include "std.hpp"
Expand Down
15 changes: 1 addition & 14 deletions src/kernlib/include/kernlib/ports.hpp
@@ -1,18 +1,5 @@
// PhoeniX OS Kernel library port I/O functions
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

#pragma once
#include "std.hpp"
Expand Down
15 changes: 1 addition & 14 deletions src/kernlib/include/kernlib/printf.hpp
@@ -1,18 +1,5 @@
// PhoeniX OS Kernel library printf functions
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

#pragma once
#include "std.hpp"
Expand Down
15 changes: 1 addition & 14 deletions src/kernlib/include/kernlib/std.hpp
@@ -1,18 +1,5 @@
// PhoeniX OS Kernel library standard functions
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

#pragma once

Expand Down
15 changes: 1 addition & 14 deletions src/kernlib/include/list.hpp
@@ -1,18 +1,5 @@
// PhoeniX OS Lists subsystem
// Copyright (C) 2013 PhoeniX
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Copyright © 2017 Yury Popov a.k.a. PhoeniX

#pragma once
#include "heap.hpp"
Expand Down

0 comments on commit 3139f4f

Please sign in to comment.