hi guys
i was thinking about using another os to be the base of my os.
this os is under the terms of the bsd license.
so, can i license the portion of code that i wrote in different license as GPL for example or a Properity license ?
If i can, then i don't have to release the source-code since it can be located on the original project while mine is mine, right ?
But i have to include that this product was based on that porject in the binary/source distributions, right ?
Thanks
OS under BSD license
Re:OS under BSD license
The new or the old BSD license?Unlink wrote: hi guys
i was thinking about using another os to be the base of my os.
this os is under the terms of the bsd license.
so, can i license the portion of code that i wrote in different license as GPL for example or a Properity license ?
If it's the old, you can't do either. You have to give credit where it is due and the code that was must remain under BSD. BSD old-style doesn't prohibit you using it though.
If it's the new, you can make it GPL (BSD new-style is GPL compatible). You can also use it in proprietary, whereas you still have to keep that code itself as BSD (but BSD doesn't limit you furthermore).
You have to keep information about it's source in source comments, binary info that's set in the source and (bsd old-style) you have to mention it in an about-box or such. Read the license to figure it out, that's the only way to know for sure. People write licenses so you can read them to know what they contain.If i can, then i don't have to release the source-code since it can be located on the original project while mine is mine, right ?
But i have to include that this product was based on that porject in the binary/source distributions, right ?
Re:OS under BSD license
If you compile your OS kernel into a single binary, all BSD code you use in that kernel falls under GPL.
Every good solution is obvious once you've found it.
Re:OS under BSD license
ahm...
so the portion of code that i wrote myself must be under BSDL and i can't copyright my own code !
another thing can't i remove the copyright notice from each source file and just include a file descriping its file and its license, or just include the license with files ?
so the portion of code that i wrote myself must be under BSDL and i can't copyright my own code !
another thing can't i remove the copyright notice from each source file and just include a file descriping its file and its license, or just include the license with files ?
Re:OS under BSD license
No, you can copyright your code and distribute it under either a compatible open-source license or a closed-source license, as long as you follow the requirments of the BSD license.so the portion of code that i wrote myself must be under BSDL and i can't copyright my own code!
The BSD license is one of the most straightforward of all the open-source licenses out there; it isn't that hard to figure out!
Re:OS under BSD license
@ Unlink:
Your meaning is unclear.
My response was written under the impression that you want to mix BSD code with GPL code.
Your meaning is unclear.
My response was written under the impression that you want to mix BSD code with GPL code.
Every good solution is obvious once you've found it.
Re:OS under BSD license
I was interested in doing the same thing. I found out in the freebsd site, somewhere, doesn't remember where, that I can use the code from freebsd to do whatever I want, provided that
1. I give credits to the authors, I think
2. People can do whatever with whatever I made with the code, just like whatever I made with freebsd.
So, I decided to NOT use freebsd. My OS will be a slow, long ride. I will read carefully the Intel book, and if God please, my OS will be ready in a few weeks or a few months.
1. I give credits to the authors, I think
2. People can do whatever with whatever I made with the code, just like whatever I made with freebsd.
So, I decided to NOT use freebsd. My OS will be a slow, long ride. I will read carefully the Intel book, and if God please, my OS will be ready in a few weeks or a few months.
- kataklinger
- Member
- Posts: 381
- Joined: Fri Nov 04, 2005 12:00 am
- Location: Serbia
Re:OS under BSD license
rikrispy wrote: So, I decided to NOT use freebsd. My OS will be a slow, long ride. I will read carefully the Intel book, and if God please, my OS will be ready in a few weeks or a few months.
Few weeks? You better say few years or much more! Well, that depends on what you want to(real mode, singletasking system using BIOS for most of things), but still few week is short period to implement it correctly.