Skip to content

Commit

Permalink
relicensed back to mpl 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Vasquez committed Jan 16, 2015
1 parent 5aae574 commit 2178132
Show file tree
Hide file tree
Showing 15 changed files with 423 additions and 481 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
6.1.2
------------
- Relicensed back to MPL 2.0

6.1.1
------------
- Relicensed to the GPLv2 (Only GPLv2, Not GPLv2+)
Expand Down
712 changes: 373 additions & 339 deletions LICENSE

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Bliss Initramfs Creator - v6.1.1
Bliss Initramfs Creator - v6.1.2
Jonathan Vasquez <[email protected]>
Designed for Gentoo Linux

Distributed under the GPLv2 which can be found in the LICENSE file.
Distributed under the MPL 2.0 which can be found in the LICENSE file.

This script generates an initramfs image with all the included files and
dependencies needed to mount your filesystem.
Expand Down
14 changes: 3 additions & 11 deletions files/init
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,9 @@

# Copyright 2012-2015 Jonathan Vasquez <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# 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/>.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

# ========== Variables ==========
_use_zfs=0
Expand Down
14 changes: 3 additions & 11 deletions mkinitrd.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,9 @@

# Copyright 2012-2015 Jonathan Vasquez <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# 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/>.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

from subprocess import call

Expand Down
14 changes: 3 additions & 11 deletions pkg/hooks/Addon.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
# Copyright 2012-2015 Jonathan Vasquez <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# 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/>.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

from pkg.hooks.Hook import Hook

Expand Down
14 changes: 3 additions & 11 deletions pkg/hooks/Base.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
# Copyright 2012-2015 Jonathan Vasquez <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# 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/>.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

from pkg.hooks.Hook import Hook
from pkg.libs.Tools import Tools
Expand Down
14 changes: 3 additions & 11 deletions pkg/hooks/Firmware.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
# Copyright 2012-2015 Jonathan Vasquez <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# 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/>.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

from pkg.hooks.Hook import Hook

Expand Down
14 changes: 3 additions & 11 deletions pkg/hooks/Hook.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
# Copyright 2012-2015 Jonathan Vasquez <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# 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/>.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

from pkg.libs.Tools import Tools

Expand Down
14 changes: 3 additions & 11 deletions pkg/hooks/Luks.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
# Copyright 2012-2015 Jonathan Vasquez <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# 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/>.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

from pkg.hooks.Hook import Hook

Expand Down
14 changes: 3 additions & 11 deletions pkg/hooks/Udev.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
# Copyright 2012-2015 Jonathan Vasquez <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# 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/>.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

from pkg.hooks.Hook import Hook
from pkg.libs.Tools import Tools
Expand Down
14 changes: 3 additions & 11 deletions pkg/hooks/Zfs.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
# Copyright 2012-2015 Jonathan Vasquez <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# 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/>.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

from pkg.hooks.Hook import Hook

Expand Down
14 changes: 3 additions & 11 deletions pkg/libs/Core.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
# Copyright 2012-2015 Jonathan Vasquez <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# 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/>.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import os
import shutil
Expand Down
14 changes: 3 additions & 11 deletions pkg/libs/Tools.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
# Copyright 2012-2015 Jonathan Vasquez <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# 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/>.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import os
import shutil
Expand Down
30 changes: 11 additions & 19 deletions pkg/libs/Variables.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
# Copyright 2012-2015 Jonathan Vasquez <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# 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/>.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import os
import subprocess
Expand All @@ -22,8 +14,8 @@
author = "Jonathan Vasquez"
email = "[email protected]"
contact = author + " <" + email + ">"
version = "6.1.1"
license = "GPLv2"
version = "6.1.2"
license = "MPL 2.0"

# Locations
home = os.getcwd()
Expand Down Expand Up @@ -94,9 +86,9 @@
]

# Line numbers in the 'init' script where sed will substitute its values in
useZfsLine = "18"
useLuksLine = "19"
useAddonLine = "20"
useUdevLine = "21"
initrdVersionLine = "23"
addonModulesLine = "46"
useZfsLine = "10"
useLuksLine = "11"
useAddonLine = "12"
useUdevLine = "13"
initrdVersionLine = "15"
addonModulesLine = "38"

0 comments on commit 2178132

Please sign in to comment.