Initial commit
1
.github/build-canary-v3-cosmo-iso
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
1
.github/build-canary-v3-iso
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
1
.github/build-canary-v3-nvidia-iso
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
1
.github/build-nest-v3-cosmo-iso
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
1
.github/build-nest-v3-iso
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
1
.github/build-nest-v3-nvidia-iso
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
2
|
1
.github/release-canary-v3-cosmo-iso
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
1
.github/release-canary-v3-iso
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
1
.github/release-canary-v3-nvidia-iso
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
1
.github/release-nest-v3-cosmo-iso
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
2
|
1
.github/release-nest-v3-iso
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
2
|
1
.github/release-nest-v3-nvidia-iso
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
49
.github/workflows/build-canary-v3-cosmo-iso.yml
vendored
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
name: Build Canary COSMO amd64-v3 ISO
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/build-canary-v3-cosmo-iso'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ubuntu:latest
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it --cap-add=sys_admin --cap-add mknod --device=/dev/fuse --security-opt seccomp=unconfined --security-opt label=disable
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install Some essentials
|
||||||
|
run: apt-get update -y && apt-get install -y wget npm rsync nodejs
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Set ISO Info
|
||||||
|
run: sed "s/#DISTNAME#/PikaOS-Canary-COSMO/g" -i ./info.sh && sed "s/#ARCH#/amd64-v3/g" -i ./info.sh
|
||||||
|
|
||||||
|
- name: Get ISO Build Dependencies
|
||||||
|
run: ./get_iso_build_dep.sh
|
||||||
|
|
||||||
|
- name: Enable NVIDIA Enablement
|
||||||
|
run: cp -rvf ./nvidia-enablement/* ./
|
||||||
|
|
||||||
|
- name: Enable COSMO Enablement
|
||||||
|
run: cp -rvf ./cosmo-enablement/* ./
|
||||||
|
|
||||||
|
- name: Generate Image ROOTFS from PikaOS Docker image
|
||||||
|
run: ./generate_roofs_from_canaryv3_docker.sh
|
||||||
|
|
||||||
|
- name: Build ISO
|
||||||
|
run: ./build.sh
|
43
.github/workflows/build-canary-v3-iso.yml
vendored
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
name: Build Canary amd64-v3 ISO
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/build-canary-v3-iso'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ubuntu:latest
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it --cap-add=sys_admin --cap-add mknod --device=/dev/fuse --security-opt seccomp=unconfined --security-opt label=disable
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install Some essentials
|
||||||
|
run: apt-get update -y && apt-get install -y wget npm rsync nodejs
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Set ISO Info
|
||||||
|
run: sed "s/#DISTNAME#/PikaOS-Canary/g" -i ./info.sh && sed "s/#ARCH#/amd64-v3/g" -i ./info.sh
|
||||||
|
|
||||||
|
- name: Get ISO Build Dependencies
|
||||||
|
run: ./get_iso_build_dep.sh
|
||||||
|
|
||||||
|
- name: Generate Image ROOTFS from PikaOS Docker image
|
||||||
|
run: ./generate_roofs_from_canaryv3_docker.sh
|
||||||
|
|
||||||
|
- name: Build ISO
|
||||||
|
run: ./build.sh
|
46
.github/workflows/build-canary-v3-nvidia-iso.yml
vendored
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
name: Build Canary NVIDIA amd64-v3 ISO
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/build-canary-v3-nvidia-iso'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ubuntu:latest
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it --cap-add=sys_admin --cap-add mknod --device=/dev/fuse --security-opt seccomp=unconfined --security-opt label=disable
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install Some essentials
|
||||||
|
run: apt-get update -y && apt-get install -y wget npm rsync nodejs
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Set ISO Info
|
||||||
|
run: sed "s/#DISTNAME#/PikaOS-Canary-NVIDIA/g" -i ./info.sh && sed "s/#ARCH#/amd64-v3/g" -i ./info.sh
|
||||||
|
|
||||||
|
- name: Get ISO Build Dependencies
|
||||||
|
run: ./get_iso_build_dep.sh
|
||||||
|
|
||||||
|
- name: Enable NVIDIA Enablement
|
||||||
|
run: cp -rvf ./nvidia-enablement/* ./
|
||||||
|
|
||||||
|
- name: Generate Image ROOTFS from PikaOS Docker image
|
||||||
|
run: ./generate_roofs_from_canaryv3_docker.sh
|
||||||
|
|
||||||
|
- name: Build ISO
|
||||||
|
run: ./build.sh
|
49
.github/workflows/build-nest-v3-cosmo-iso.yml
vendored
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
name: Build Nest COSMO amd64-v3 ISO
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/build-nest-v3-cosmo-iso'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ubuntu:latest
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it --cap-add=sys_admin --cap-add mknod --device=/dev/fuse --security-opt seccomp=unconfined --security-opt label=disable
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install Some essentials
|
||||||
|
run: apt-get update -y && apt-get install -y wget npm rsync nodejs
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Set ISO Info
|
||||||
|
run: sed "s/#DISTNAME#/PikaOS-Nest-COSMO/g" -i ./info.sh && sed "s/#ARCH#/amd64-v3/g" -i ./info.sh
|
||||||
|
|
||||||
|
- name: Get ISO Build Dependencies
|
||||||
|
run: ./get_iso_build_dep.sh
|
||||||
|
|
||||||
|
- name: Enable NVIDIA Enablement
|
||||||
|
run: cp -rvf ./nvidia-enablement/* ./
|
||||||
|
|
||||||
|
- name: Enable COSMO Enablement
|
||||||
|
run: cp -rvf ./cosmo-enablement/* ./
|
||||||
|
|
||||||
|
- name: Generate Image ROOTFS from PikaOS Docker image
|
||||||
|
run: ./generate_roofs_from_nestv3_docker.sh
|
||||||
|
|
||||||
|
- name: Build ISO
|
||||||
|
run: ./build.sh
|
43
.github/workflows/build-nest-v3-iso.yml
vendored
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
name: Build Nest amd64-v3 ISO
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/build-nest-v3-iso'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ubuntu:latest
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it --cap-add=sys_admin --cap-add mknod --device=/dev/fuse --security-opt seccomp=unconfined --security-opt label=disable
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install Some essentials
|
||||||
|
run: apt-get update -y && apt-get install -y wget npm rsync nodejs
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Set ISO Info
|
||||||
|
run: sed "s/#DISTNAME#/PikaOS-Nest/g" -i ./info.sh && sed "s/#ARCH#/amd64-v3/g" -i ./info.sh
|
||||||
|
|
||||||
|
- name: Get ISO Build Dependencies
|
||||||
|
run: ./get_iso_build_dep.sh
|
||||||
|
|
||||||
|
- name: Generate Image ROOTFS from PikaOS Docker image
|
||||||
|
run: ./generate_roofs_from_nestv3_docker.sh
|
||||||
|
|
||||||
|
- name: Build ISO
|
||||||
|
run: ./build.sh
|
46
.github/workflows/build-nest-v3-nvidia-iso.yml
vendored
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
name: Build Nest NVIDIA amd64-v3 ISO
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/build-nest-v3-nvidia-iso'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ubuntu:latest
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it --cap-add=sys_admin --cap-add mknod --device=/dev/fuse --security-opt seccomp=unconfined --security-opt label=disable
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install Some essentials
|
||||||
|
run: apt-get update -y && apt-get install -y wget npm rsync nodejs
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Set ISO Info
|
||||||
|
run: sed "s/#DISTNAME#/PikaOS-Nest-NVIDIA/g" -i ./info.sh && sed "s/#ARCH#/amd64-v3/g" -i ./info.sh
|
||||||
|
|
||||||
|
- name: Get ISO Build Dependencies
|
||||||
|
run: ./get_iso_build_dep.sh
|
||||||
|
|
||||||
|
- name: Enable NVIDIA Enablement
|
||||||
|
run: cp -rvf ./nvidia-enablement/* ./
|
||||||
|
|
||||||
|
- name: Generate Image ROOTFS from PikaOS Docker image
|
||||||
|
run: ./generate_roofs_from_nestv3_docker.sh
|
||||||
|
|
||||||
|
- name: Build ISO
|
||||||
|
run: ./build.sh
|
52
.github/workflows/release-canary-v3-cosmo-iso.yml
vendored
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
name: Release Canary COSMO amd64-v3 ISO
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/release-canary-v3-cosmo-iso'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ubuntu:latest
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it --cap-add=sys_admin --cap-add mknod --device=/dev/fuse --security-opt seccomp=unconfined --security-opt label=disable
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install Some essentials
|
||||||
|
run: apt-get update -y && apt-get install -y wget npm rsync nodejs
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Set ISO Info
|
||||||
|
run: sed "s/#DISTNAME#/PikaOS-Canary-COSMO/g" -i ./info.sh && sed "s/#ARCH#/amd64-v3/g" -i ./info.sh
|
||||||
|
|
||||||
|
- name: Get ISO Build Dependencies
|
||||||
|
run: ./get_iso_build_dep.sh
|
||||||
|
|
||||||
|
- name: Enable NVIDIA Enablement
|
||||||
|
run: cp -rvf ./nvidia-enablement/* ./
|
||||||
|
|
||||||
|
- name: Enable COSMO Enablement
|
||||||
|
run: cp -rvf ./cosmo-enablement/* ./
|
||||||
|
|
||||||
|
- name: Generate Image ROOTFS from PikaOS Docker image
|
||||||
|
run: ./generate_roofs_from_canaryv3_docker.sh
|
||||||
|
|
||||||
|
- name: Build ISO
|
||||||
|
run: ./build.sh
|
||||||
|
|
||||||
|
- name: Release ISO
|
||||||
|
run: ./release.sh
|
46
.github/workflows/release-canary-v3-iso.yml
vendored
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
name: Release Canary amd64-v3 ISO
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/release-canary-v3-iso'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ubuntu:latest
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it --cap-add=sys_admin --cap-add mknod --device=/dev/fuse --security-opt seccomp=unconfined --security-opt label=disable
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install Some essentials
|
||||||
|
run: apt-get update -y && apt-get install -y wget npm rsync nodejs
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Set ISO Info
|
||||||
|
run: sed "s/#DISTNAME#/PikaOS-Canary/g" -i ./info.sh && sed "s/#ARCH#/amd64-v3/g" -i ./info.sh
|
||||||
|
|
||||||
|
- name: Get ISO Build Dependencies
|
||||||
|
run: ./get_iso_build_dep.sh
|
||||||
|
|
||||||
|
- name: Generate Image ROOTFS from PikaOS Docker image
|
||||||
|
run: ./generate_roofs_from_canaryv3_docker.sh
|
||||||
|
|
||||||
|
- name: Build ISO
|
||||||
|
run: ./build.sh
|
||||||
|
|
||||||
|
- name: Release ISO
|
||||||
|
run: ./release.sh
|
49
.github/workflows/release-canary-v3-nvidia-iso.yml
vendored
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
name: Release Canary NVIDIA amd64-v3 ISO
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/release-canary-v3-nvidia-iso'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ubuntu:latest
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it --cap-add=sys_admin --cap-add mknod --device=/dev/fuse --security-opt seccomp=unconfined --security-opt label=disable
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install Some essentials
|
||||||
|
run: apt-get update -y && apt-get install -y wget npm rsync nodejs
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Set ISO Info
|
||||||
|
run: sed "s/#DISTNAME#/PikaOS-Canary-NVIDIA/g" -i ./info.sh && sed "s/#ARCH#/amd64-v3/g" -i ./info.sh
|
||||||
|
|
||||||
|
- name: Get ISO Build Dependencies
|
||||||
|
run: ./get_iso_build_dep.sh
|
||||||
|
|
||||||
|
- name: Enable NVIDIA Enablement
|
||||||
|
run: cp -rvf ./nvidia-enablement/* ./
|
||||||
|
|
||||||
|
- name: Generate Image ROOTFS from PikaOS Docker image
|
||||||
|
run: ./generate_roofs_from_canaryv3_docker.sh
|
||||||
|
|
||||||
|
- name: Build ISO
|
||||||
|
run: ./build.sh
|
||||||
|
|
||||||
|
- name: Release ISO
|
||||||
|
run: ./release.sh
|
52
.github/workflows/release-nest-v3-cosmo-iso.yml
vendored
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
name: Release Nest COSMO amd64-v3 ISO
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/release-nest-v3-cosmo-iso'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ubuntu:latest
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it --cap-add=sys_admin --cap-add mknod --device=/dev/fuse --security-opt seccomp=unconfined --security-opt label=disable
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install Some essentials
|
||||||
|
run: apt-get update -y && apt-get install -y wget npm rsync nodejs
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Set ISO Info
|
||||||
|
run: sed "s/#DISTNAME#/PikaOS-Nest-COSMO/g" -i ./info.sh && sed "s/#ARCH#/amd64-v3/g" -i ./info.sh
|
||||||
|
|
||||||
|
- name: Get ISO Build Dependencies
|
||||||
|
run: ./get_iso_build_dep.sh
|
||||||
|
|
||||||
|
- name: Enable NVIDIA Enablement
|
||||||
|
run: cp -rvf ./nvidia-enablement/* ./
|
||||||
|
|
||||||
|
- name: Enable COSMO Enablement
|
||||||
|
run: cp -rvf ./cosmo-enablement/* ./
|
||||||
|
|
||||||
|
- name: Generate Image ROOTFS from PikaOS Docker image
|
||||||
|
run: ./generate_roofs_from_nestv3_docker.sh
|
||||||
|
|
||||||
|
- name: Build ISO
|
||||||
|
run: ./build.sh
|
||||||
|
|
||||||
|
- name: Release ISO
|
||||||
|
run: ./release.sh
|
46
.github/workflows/release-nest-v3-iso.yml
vendored
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
name: Release Nest amd64-v3 ISO
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/release-nest-v3-iso'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ubuntu:latest
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it --cap-add=sys_admin --cap-add mknod --device=/dev/fuse --security-opt seccomp=unconfined --security-opt label=disable
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install Some essentials
|
||||||
|
run: apt-get update -y && apt-get install -y wget npm rsync nodejs
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Set ISO Info
|
||||||
|
run: sed "s/#DISTNAME#/PikaOS-Nest/g" -i ./info.sh && sed "s/#ARCH#/amd64-v3/g" -i ./info.sh
|
||||||
|
|
||||||
|
- name: Get ISO Build Dependencies
|
||||||
|
run: ./get_iso_build_dep.sh
|
||||||
|
|
||||||
|
- name: Generate Image ROOTFS from PikaOS Docker image
|
||||||
|
run: ./generate_roofs_from_nestv3_docker.sh
|
||||||
|
|
||||||
|
- name: Build ISO
|
||||||
|
run: ./build.sh
|
||||||
|
|
||||||
|
- name: Release ISO
|
||||||
|
run: ./release.sh
|
49
.github/workflows/release-nest-v3-nvidia-iso.yml
vendored
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
name: Release Nest NVIDIA amd64-v3 ISO
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '.github/release-nest-v3-nvidia-iso'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ubuntu:latest
|
||||||
|
volumes:
|
||||||
|
- /proc:/proc
|
||||||
|
options: --privileged -it --cap-add=sys_admin --cap-add mknod --device=/dev/fuse --security-opt seccomp=unconfined --security-opt label=disable
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install Some essentials
|
||||||
|
run: apt-get update -y && apt-get install -y wget npm rsync nodejs
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
uses: shimataro/ssh-key-action@v2
|
||||||
|
with:
|
||||||
|
key: ${{ secrets.SSH_KEY }}
|
||||||
|
name: id_rsa
|
||||||
|
known_hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
if_key_exists: replace
|
||||||
|
|
||||||
|
- name: Set ISO Info
|
||||||
|
run: sed "s/#DISTNAME#/PikaOS-Nest-NVIDIA/g" -i ./info.sh && sed "s/#ARCH#/amd64-v3/g" -i ./info.sh
|
||||||
|
|
||||||
|
- name: Get ISO Build Dependencies
|
||||||
|
run: ./get_iso_build_dep.sh
|
||||||
|
|
||||||
|
- name: Enable NVIDIA Enablement
|
||||||
|
run: cp -rvf ./nvidia-enablement/* ./
|
||||||
|
|
||||||
|
- name: Generate Image ROOTFS from PikaOS Docker image
|
||||||
|
run: ./generate_roofs_from_nestv3_docker.sh
|
||||||
|
|
||||||
|
- name: Build ISO
|
||||||
|
run: ./build.sh
|
||||||
|
|
||||||
|
- name: Release ISO
|
||||||
|
run: ./release.sh
|
9
LICENSE
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2024 images
|
||||||
|
|
||||||
|
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:
|
||||||
|
|
||||||
|
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.
|
103
build.sh
Executable file
@ -0,0 +1,103 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
source ./info.sh
|
||||||
|
|
||||||
|
if [[ -z $ROOTFS_PATH ]]
|
||||||
|
then
|
||||||
|
echo "Error: ROOTFS PATH is not set!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Mount
|
||||||
|
|
||||||
|
mount --bind /dev "$ROOTFS_PATH/dev"
|
||||||
|
mount -t tmpfs run "$ROOTFS_PATH/run" -o mode=0755,nosuid,nodev
|
||||||
|
mount -t proc proc "$ROOTFS_PATH/proc" -o nosuid,nodev,noexec
|
||||||
|
mount -t sysfs sys "$ROOTFS_PATH/sys" -o nosuid,nodev,noexec,ro
|
||||||
|
|
||||||
|
# Setup Chroot scripts
|
||||||
|
|
||||||
|
cp -rvf ./chroot_scripts "$ROOTFS_PATH/"
|
||||||
|
cp -rvf ./hooks "$ROOTFS_PATH/chroot_scripts/"
|
||||||
|
cp -rvf ./live-lists "$ROOTFS_PATH/chroot_scripts/"
|
||||||
|
cp -rvf ./pool-lists "$ROOTFS_PATH/chroot_scripts/"
|
||||||
|
cp -rvf ./rem-lists "$ROOTFS_PATH/chroot_scripts/"
|
||||||
|
cp -rvf ./info.sh "$ROOTFS_PATH/chroot_scripts/"
|
||||||
|
|
||||||
|
# Run chroot_script inside ROOTFS
|
||||||
|
|
||||||
|
chroot "$ROOTFS_PATH" bash -c "/chroot_scripts/0-chroot.sh"
|
||||||
|
rm -rfv "$ROOTFS_PATH/chroot_scripts"
|
||||||
|
|
||||||
|
# Unmount
|
||||||
|
|
||||||
|
umount "$ROOTFS_PATH/dev" || umount -lf "$ROOTFS_PATH/dev" || true
|
||||||
|
umount "$ROOTFS_PATH/run" || umount -lf "$ROOTFS_PATH/run" || true
|
||||||
|
umount "$ROOTFS_PATH/proc" || umount -lf "$ROOTFS_PATH/proc" || true
|
||||||
|
umount "$ROOTFS_PATH/sys" || umount -lf "$ROOTFS_PATH/sys" || true
|
||||||
|
|
||||||
|
# Generate Squashfs image
|
||||||
|
|
||||||
|
mksquashfs \
|
||||||
|
"$ROOTFS_PATH" \
|
||||||
|
"$LIVE_BOOT_LIVE_PATH/filesystem.squashfs" \
|
||||||
|
-noappend \
|
||||||
|
-comp zstd \
|
||||||
|
-Xcompression-level 19 \
|
||||||
|
-b 1M
|
||||||
|
|
||||||
|
# Copy Kernel to live (Disabled, Copy Kernels to refind instead)
|
||||||
|
#cp "$ROOTFS_PATH/boot"/vmlinuz-* \
|
||||||
|
# "$LIVE_BOOT_LIVE_PATH/vmlinuz" && \
|
||||||
|
#cp "$ROOTFS_PATH/boot"/initrd.img-* \
|
||||||
|
# "$LIVE_BOOT_LIVE_PATH/initrd" && \
|
||||||
|
#cp ./data/refind/refind_linux.conf \
|
||||||
|
# "$LIVE_BOOT_LIVE_PATH/refind_linux.conf"
|
||||||
|
|
||||||
|
# Generate bootable EFI Image from refind
|
||||||
|
|
||||||
|
# Copy kernel to refind
|
||||||
|
mkdir -p ./data/refind/EFI
|
||||||
|
cp -vf "$ROOTFS_PATH/boot"/vmlinuz-"$ISO_KERNEL" "./data/refind/EFI/vmlinuz"
|
||||||
|
cp -vf "$ROOTFS_PATH/boot"/initrd.img-"$ISO_KERNEL" "./data/refind/EFI/initrd"
|
||||||
|
|
||||||
|
EFI_BOOT_IMAGE_SIZE=$(($(du -s -B1048576 ./data/refind | cut -f1) + 10))
|
||||||
|
EFI_BOOT_IMAGE="$LIVE_BOOT_PATH/efiboot.img"
|
||||||
|
|
||||||
|
# Create Refind Boot Image
|
||||||
|
dd if=/dev/zero of="$EFI_BOOT_IMAGE" bs=1M count=$EFI_BOOT_IMAGE_SIZE
|
||||||
|
mkfs.vfat -F 32 "$EFI_BOOT_IMAGE"
|
||||||
|
|
||||||
|
for directory in $(find ./data/refind/EFI/ -type d | cut -d'/' -f4-)
|
||||||
|
do
|
||||||
|
echo "creating directory $directory in $EFI_BOOT_IMAGE"
|
||||||
|
mmd -i "$EFI_BOOT_IMAGE" ::"$(echo $directory | tr '[:lower:]' '[:upper:]' | sed 's:/*$::')"
|
||||||
|
done
|
||||||
|
|
||||||
|
for file in $(find ./data/refind/EFI/ -type f)
|
||||||
|
do
|
||||||
|
echo "copying file $file to $EFI_BOOT_IMAGE"
|
||||||
|
mcopy -i "$EFI_BOOT_IMAGE" $file ::"$(echo $file | cut -d'/' -f4- | tr '[:lower:]' '[:upper:]')"
|
||||||
|
done
|
||||||
|
|
||||||
|
# Create ISO Image
|
||||||
|
mkdir -p ./output
|
||||||
|
|
||||||
|
xorriso \
|
||||||
|
-as mkisofs \
|
||||||
|
-iso-level 3 \
|
||||||
|
-V "PikaOS 4" \
|
||||||
|
-partition_offset 16 \
|
||||||
|
-appended_part_as_gpt \
|
||||||
|
-no-pad \
|
||||||
|
-no-emul-boot \
|
||||||
|
-append_partition 2 0xef "$EFI_BOOT_IMAGE" \
|
||||||
|
--efi-boot --interval:appended_partition_2:all:: \
|
||||||
|
-o "./output/$ISO_IMAGE".iso \
|
||||||
|
"$LIVE_BOOT_DATA_PATH"
|
||||||
|
|
||||||
|
# Generate an integrity sum
|
||||||
|
touch "./output/$ISO_IMAGE".md5
|
||||||
|
md5sum "./output/$ISO_IMAGE".iso > "./output/$ISO_IMAGE".md5
|
41
chroot_scripts/0-chroot.sh
Executable file
@ -0,0 +1,41 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
export DEBIAN_FRONTEND="noninteractive"
|
||||||
|
|
||||||
|
dpkg --add-architecture i386
|
||||||
|
|
||||||
|
# Update APT Caches
|
||||||
|
|
||||||
|
apt-get update -y
|
||||||
|
apt-get install pika-sources -y --no-install-recommends
|
||||||
|
|
||||||
|
# Actions to do before package lists
|
||||||
|
apt-get install initramfs-tools adwaita-icon-theme amdgpu-drm --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" --no-install-recommends
|
||||||
|
apt-get install desktop-file-utils --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" --no-install-recommends
|
||||||
|
apt-get install kernel-pika --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" --no-install-recommends
|
||||||
|
apt-get install booster-placeholder --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" --no-install-recommends
|
||||||
|
|
||||||
|
# Upgrade system with new cache
|
||||||
|
|
||||||
|
apt-get full-upgrade --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite"
|
||||||
|
|
||||||
|
# Install Absolute Live Boot Basics
|
||||||
|
|
||||||
|
apt-get install --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" --no-install-recommends \
|
||||||
|
live-boot \
|
||||||
|
systemd-sysv \
|
||||||
|
iwd \
|
||||||
|
curl openssh-client \
|
||||||
|
xserver-xorg-core \
|
||||||
|
xserver-xorg \
|
||||||
|
xinit xterm \
|
||||||
|
nano
|
||||||
|
|
||||||
|
# Run chroot steps
|
||||||
|
/chroot_scripts/1-baseos.sh
|
||||||
|
/chroot_scripts/2-install-live-lists.sh
|
||||||
|
/chroot_scripts/3-download-pool.sh
|
||||||
|
/chroot_scripts/4-uninstall-rem-lists.sh
|
||||||
|
/chroot_scripts/5-run-hooks.sh
|
71
chroot_scripts/1-baseos.sh
Executable file
@ -0,0 +1,71 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
export DEBIAN_FRONTEND="noninteractive"
|
||||||
|
|
||||||
|
# Install PikaOS Basics
|
||||||
|
|
||||||
|
apt-get install --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" --no-install-recommends \
|
||||||
|
pika-baseos \
|
||||||
|
console-setup \
|
||||||
|
console-setup-linux \
|
||||||
|
sudo \
|
||||||
|
nano \
|
||||||
|
vim-tiny \
|
||||||
|
pika-audio-pipewire \
|
||||||
|
dialog \
|
||||||
|
locales \
|
||||||
|
locales-all
|
||||||
|
|
||||||
|
# Setup Locales
|
||||||
|
|
||||||
|
## Uncomment en_US.UTF-8 for inclusion in generation
|
||||||
|
sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen
|
||||||
|
|
||||||
|
## Generate locale
|
||||||
|
locale-gen
|
||||||
|
|
||||||
|
## Setup locale config
|
||||||
|
update-locale LANG="en_US.UTF-8"
|
||||||
|
|
||||||
|
tee /etc/default/keyboard <<'EOF'
|
||||||
|
XKBMODEL="pc105"
|
||||||
|
XKBLAYOUT="us"
|
||||||
|
XKBVARIANT=""
|
||||||
|
XKBOPTIONS=""
|
||||||
|
BACKSPACE="guess"
|
||||||
|
KEYMAP=us
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cp -fv /etc/default/keyboard /etc/vconsole.conf || true
|
||||||
|
|
||||||
|
tee /etc/default/locale <<'EOF'
|
||||||
|
# File generated by update-locale
|
||||||
|
LANG=en_US.UTF-8
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cp -fv /etc/default/locale /etc/locale.conf || true
|
||||||
|
|
||||||
|
# Setup console-setup
|
||||||
|
|
||||||
|
cat > /etc/default/console-setup <<EOF
|
||||||
|
# CONFIGURATION FILE FOR SETUPCON
|
||||||
|
|
||||||
|
# Consult the console-setup(5) manual page.
|
||||||
|
|
||||||
|
ACTIVE_CONSOLES="/dev/tty[1-6]"
|
||||||
|
|
||||||
|
CHARMAP="UTF-8"
|
||||||
|
|
||||||
|
CODESET="guess"
|
||||||
|
FONTFACE="Terminus"
|
||||||
|
FONTSIZE="16x32"
|
||||||
|
|
||||||
|
VIDEOMODE=
|
||||||
|
|
||||||
|
# The following is an example how to use a braille font
|
||||||
|
# FONT='lat9w-08.psf.gz brl-8x8.psf'
|
||||||
|
EOF
|
||||||
|
|
||||||
|
dpkg-reconfigure --frontend=noninteractive console-setup
|
23
chroot_scripts/2-install-live-lists.sh
Executable file
@ -0,0 +1,23 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
export DEBIAN_FRONTEND="noninteractive"
|
||||||
|
|
||||||
|
touch /chroot_scripts/live_list
|
||||||
|
|
||||||
|
for live_list in /chroot_scripts/live-lists/*.list
|
||||||
|
do
|
||||||
|
for pkg in $(cat $live_list)
|
||||||
|
do
|
||||||
|
if [[ $pkg != "#"* ]]
|
||||||
|
then
|
||||||
|
echo $pkg >> /chroot_scripts/live_list
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
done
|
||||||
|
|
||||||
|
apt-get install --yes --no-install-recommends --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" $(cat /chroot_scripts/live_list | tr "\n" " ")
|
||||||
|
|
||||||
|
systemctl mask fwupd || true
|
||||||
|
systemctl mask nmdb || true
|
23
chroot_scripts/3-download-pool.sh
Executable file
@ -0,0 +1,23 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
export DEBIAN_FRONTEND="noninteractive"
|
||||||
|
|
||||||
|
touch /chroot_scripts/pool_list
|
||||||
|
|
||||||
|
for pool_list in /chroot_scripts/pool-lists/*.list
|
||||||
|
do
|
||||||
|
for pkg in $(cat $pool_list)
|
||||||
|
do
|
||||||
|
if [[ $pkg != "#"* ]]
|
||||||
|
then
|
||||||
|
echo $pkg >> /chroot_scripts/pool_list
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
done
|
||||||
|
|
||||||
|
mkdir -p /cdrom/pool/main/
|
||||||
|
pushd /cdrom/pool/main/
|
||||||
|
apt-get download --yes $(cat /chroot_scripts/pool_list | tr "\n" " ")
|
||||||
|
popd
|
20
chroot_scripts/4-uninstall-rem-lists.sh
Executable file
@ -0,0 +1,20 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
export DEBIAN_FRONTEND="noninteractive"
|
||||||
|
|
||||||
|
touch /chroot_scripts/rem_list
|
||||||
|
|
||||||
|
for rem_list in /chroot_scripts/rem-lists/*.list
|
||||||
|
do
|
||||||
|
for pkg in $(cat $rem_list)
|
||||||
|
do
|
||||||
|
if [[ $pkg != "#"* ]]
|
||||||
|
then
|
||||||
|
apt-get purge --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" $pkg || true
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
done
|
||||||
|
|
||||||
|
apt-get autoremove --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite"
|
13
chroot_scripts/5-run-hooks.sh
Executable file
@ -0,0 +1,13 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
export DEBIAN_FRONTEND="noninteractive"
|
||||||
|
|
||||||
|
export ORIGINAL_WORKINGDIR=$(pwd)
|
||||||
|
|
||||||
|
for hook in /chroot_scripts/hooks/*
|
||||||
|
do
|
||||||
|
$hook
|
||||||
|
cd $ORIGINAL_WORKINGDIR
|
||||||
|
done
|
4
cosmo-enablement/hooks/3-install-nvidia-driver.chroot
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
apt-get install --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" \
|
||||||
|
nvidia-open-driver-560
|
4
cosmo-enablement/hooks/4-install-cosmo-packages.chroot
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
apt-get install --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" \
|
||||||
|
pika-gameutils-meta
|
BIN
data/refind/EFI/boot/bootaa64.efi
Normal file
BIN
data/refind/EFI/boot/bootia32.efi
Normal file
BIN
data/refind/EFI/boot/bootx64.efi
Normal file
47
data/refind/EFI/boot/drivers_aa64/LICENSE.txt
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
Licensing for the filesystem drivers is complex. Three different licenses
|
||||||
|
apply to various parts of the code:
|
||||||
|
|
||||||
|
* Christoph Pfisterer's original file system wrapper (FSW) code is covered
|
||||||
|
by a BSD-style license. Many of the source files with names that take the
|
||||||
|
form fsw_*.[ch] are so licensed, but this is NOT generally true of
|
||||||
|
filesystem-specific files (e.g., fsw_ext2.c or fsw_btrfs.c).
|
||||||
|
|
||||||
|
* Certain filesystem drivers are licensed under the GPLv2, either because
|
||||||
|
they borrow code from the Linux kernel or because a developer (typically
|
||||||
|
Oracle) applied the GPLv2 license to them. This is true of the ext2fs,
|
||||||
|
ext4fs, ReiserFS, HFS+, and ISO-9660 drivers.
|
||||||
|
|
||||||
|
* At least one filesystem driver (Btrfs) uses code taken from GRUB, and so
|
||||||
|
uses the GPLv3 (or later) license.
|
||||||
|
|
||||||
|
Note that the GPLv2 and GPLv3 are, ironically, not compatible licenses.
|
||||||
|
Thus, code from GPLv2 and GPLv3 projects should not be mixed. The BSD
|
||||||
|
license used by Pfisterer's original code is compatible with both versions
|
||||||
|
of the GPL, so the fact that both GPLv2 and GPLv3 drivers is built upon it
|
||||||
|
is OK. If you intend to contribute to this project's drivers or use the
|
||||||
|
code yourself, please keep this fact in mind.
|
||||||
|
|
||||||
|
The below was written by Christoph Pfisterer with respect to his original
|
||||||
|
code:
|
||||||
|
|
||||||
|
File System Wrapper License
|
||||||
|
=============================
|
||||||
|
|
||||||
|
The various parts of the File System Wrapper source code come from
|
||||||
|
different sources and may carry different licenses. Here's a quick
|
||||||
|
account of the situation:
|
||||||
|
|
||||||
|
* The core code was written from scratch and is covered by a
|
||||||
|
BSD-style license.
|
||||||
|
|
||||||
|
* The EFI host driver was written from scratch, possibly using code
|
||||||
|
from the TianoCore project and Intel's EFI Application Toolkit. It
|
||||||
|
is covered by a BSD-style license.
|
||||||
|
|
||||||
|
* The ext2 and reiserfs file system drivers use definitions from the
|
||||||
|
Linux kernel source. The actual code was written from scratch,
|
||||||
|
using multiple sources for reference. These drivers are covered by
|
||||||
|
the GNU GPL.
|
||||||
|
|
||||||
|
For more details, see each file's boilerplate comment. The full text
|
||||||
|
of the GNU GPL is in the file LICENSE_GPL.txt.
|
340
data/refind/EFI/boot/drivers_aa64/LICENSE_GPL.txt
Normal file
@ -0,0 +1,340 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 2, June 1991
|
||||||
|
|
||||||
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||||
|
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The licenses for most software are designed to take away your
|
||||||
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
|
License is intended to guarantee your freedom to share and change free
|
||||||
|
software--to make sure the software is free for all its users. This
|
||||||
|
General Public License applies to most of the Free Software
|
||||||
|
Foundation's software and to any other program whose authors commit to
|
||||||
|
using it. (Some other Free Software Foundation software is covered by
|
||||||
|
the GNU Library General Public License instead.) You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
this service if you wish), that you receive source code or can get it
|
||||||
|
if you want it, that you can change the software or use pieces of it
|
||||||
|
in new free programs; and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to make restrictions that forbid
|
||||||
|
anyone to deny you these rights or to ask you to surrender the rights.
|
||||||
|
These restrictions translate to certain responsibilities for you if you
|
||||||
|
distribute copies of the software, or if you modify it.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must give the recipients all the rights that
|
||||||
|
you have. You must make sure that they, too, receive or can get the
|
||||||
|
source code. And you must show them these terms so they know their
|
||||||
|
rights.
|
||||||
|
|
||||||
|
We protect your rights with two steps: (1) copyright the software, and
|
||||||
|
(2) offer you this license which gives you legal permission to copy,
|
||||||
|
distribute and/or modify the software.
|
||||||
|
|
||||||
|
Also, for each author's protection and ours, we want to make certain
|
||||||
|
that everyone understands that there is no warranty for this free
|
||||||
|
software. If the software is modified by someone else and passed on, we
|
||||||
|
want its recipients to know that what they have is not the original, so
|
||||||
|
that any problems introduced by others will not reflect on the original
|
||||||
|
authors' reputations.
|
||||||
|
|
||||||
|
Finally, any free program is threatened constantly by software
|
||||||
|
patents. We wish to avoid the danger that redistributors of a free
|
||||||
|
program will individually obtain patent licenses, in effect making the
|
||||||
|
program proprietary. To prevent this, we have made it clear that any
|
||||||
|
patent must be licensed for everyone's free use or not licensed at all.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. This License applies to any program or other work which contains
|
||||||
|
a notice placed by the copyright holder saying it may be distributed
|
||||||
|
under the terms of this General Public License. The "Program", below,
|
||||||
|
refers to any such program or work, and a "work based on the Program"
|
||||||
|
means either the Program or any derivative work under copyright law:
|
||||||
|
that is to say, a work containing the Program or a portion of it,
|
||||||
|
either verbatim or with modifications and/or translated into another
|
||||||
|
language. (Hereinafter, translation is included without limitation in
|
||||||
|
the term "modification".) Each licensee is addressed as "you".
|
||||||
|
|
||||||
|
Activities other than copying, distribution and modification are not
|
||||||
|
covered by this License; they are outside its scope. The act of
|
||||||
|
running the Program is not restricted, and the output from the Program
|
||||||
|
is covered only if its contents constitute a work based on the
|
||||||
|
Program (independent of having been made by running the Program).
|
||||||
|
Whether that is true depends on what the Program does.
|
||||||
|
|
||||||
|
1. You may copy and distribute verbatim copies of the Program's
|
||||||
|
source code as you receive it, in any medium, provided that you
|
||||||
|
conspicuously and appropriately publish on each copy an appropriate
|
||||||
|
copyright notice and disclaimer of warranty; keep intact all the
|
||||||
|
notices that refer to this License and to the absence of any warranty;
|
||||||
|
and give any other recipients of the Program a copy of this License
|
||||||
|
along with the Program.
|
||||||
|
|
||||||
|
You may charge a fee for the physical act of transferring a copy, and
|
||||||
|
you may at your option offer warranty protection in exchange for a fee.
|
||||||
|
|
||||||
|
2. You may modify your copy or copies of the Program or any portion
|
||||||
|
of it, thus forming a work based on the Program, and copy and
|
||||||
|
distribute such modifications or work under the terms of Section 1
|
||||||
|
above, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) You must cause the modified files to carry prominent notices
|
||||||
|
stating that you changed the files and the date of any change.
|
||||||
|
|
||||||
|
b) You must cause any work that you distribute or publish, that in
|
||||||
|
whole or in part contains or is derived from the Program or any
|
||||||
|
part thereof, to be licensed as a whole at no charge to all third
|
||||||
|
parties under the terms of this License.
|
||||||
|
|
||||||
|
c) If the modified program normally reads commands interactively
|
||||||
|
when run, you must cause it, when started running for such
|
||||||
|
interactive use in the most ordinary way, to print or display an
|
||||||
|
announcement including an appropriate copyright notice and a
|
||||||
|
notice that there is no warranty (or else, saying that you provide
|
||||||
|
a warranty) and that users may redistribute the program under
|
||||||
|
these conditions, and telling the user how to view a copy of this
|
||||||
|
License. (Exception: if the Program itself is interactive but
|
||||||
|
does not normally print such an announcement, your work based on
|
||||||
|
the Program is not required to print an announcement.)
|
||||||
|
|
||||||
|
These requirements apply to the modified work as a whole. If
|
||||||
|
identifiable sections of that work are not derived from the Program,
|
||||||
|
and can be reasonably considered independent and separate works in
|
||||||
|
themselves, then this License, and its terms, do not apply to those
|
||||||
|
sections when you distribute them as separate works. But when you
|
||||||
|
distribute the same sections as part of a whole which is a work based
|
||||||
|
on the Program, the distribution of the whole must be on the terms of
|
||||||
|
this License, whose permissions for other licensees extend to the
|
||||||
|
entire whole, and thus to each and every part regardless of who wrote it.
|
||||||
|
|
||||||
|
Thus, it is not the intent of this section to claim rights or contest
|
||||||
|
your rights to work written entirely by you; rather, the intent is to
|
||||||
|
exercise the right to control the distribution of derivative or
|
||||||
|
collective works based on the Program.
|
||||||
|
|
||||||
|
In addition, mere aggregation of another work not based on the Program
|
||||||
|
with the Program (or with a work based on the Program) on a volume of
|
||||||
|
a storage or distribution medium does not bring the other work under
|
||||||
|
the scope of this License.
|
||||||
|
|
||||||
|
3. You may copy and distribute the Program (or a work based on it,
|
||||||
|
under Section 2) in object code or executable form under the terms of
|
||||||
|
Sections 1 and 2 above provided that you also do one of the following:
|
||||||
|
|
||||||
|
a) Accompany it with the complete corresponding machine-readable
|
||||||
|
source code, which must be distributed under the terms of Sections
|
||||||
|
1 and 2 above on a medium customarily used for software interchange; or,
|
||||||
|
|
||||||
|
b) Accompany it with a written offer, valid for at least three
|
||||||
|
years, to give any third party, for a charge no more than your
|
||||||
|
cost of physically performing source distribution, a complete
|
||||||
|
machine-readable copy of the corresponding source code, to be
|
||||||
|
distributed under the terms of Sections 1 and 2 above on a medium
|
||||||
|
customarily used for software interchange; or,
|
||||||
|
|
||||||
|
c) Accompany it with the information you received as to the offer
|
||||||
|
to distribute corresponding source code. (This alternative is
|
||||||
|
allowed only for noncommercial distribution and only if you
|
||||||
|
received the program in object code or executable form with such
|
||||||
|
an offer, in accord with Subsection b above.)
|
||||||
|
|
||||||
|
The source code for a work means the preferred form of the work for
|
||||||
|
making modifications to it. For an executable work, complete source
|
||||||
|
code means all the source code for all modules it contains, plus any
|
||||||
|
associated interface definition files, plus the scripts used to
|
||||||
|
control compilation and installation of the executable. However, as a
|
||||||
|
special exception, the source code distributed need not include
|
||||||
|
anything that is normally distributed (in either source or binary
|
||||||
|
form) with the major components (compiler, kernel, and so on) of the
|
||||||
|
operating system on which the executable runs, unless that component
|
||||||
|
itself accompanies the executable.
|
||||||
|
|
||||||
|
If distribution of executable or object code is made by offering
|
||||||
|
access to copy from a designated place, then offering equivalent
|
||||||
|
access to copy the source code from the same place counts as
|
||||||
|
distribution of the source code, even though third parties are not
|
||||||
|
compelled to copy the source along with the object code.
|
||||||
|
|
||||||
|
4. You may not copy, modify, sublicense, or distribute the Program
|
||||||
|
except as expressly provided under this License. Any attempt
|
||||||
|
otherwise to copy, modify, sublicense or distribute the Program is
|
||||||
|
void, and will automatically terminate your rights under this License.
|
||||||
|
However, parties who have received copies, or rights, from you under
|
||||||
|
this License will not have their licenses terminated so long as such
|
||||||
|
parties remain in full compliance.
|
||||||
|
|
||||||
|
5. You are not required to accept this License, since you have not
|
||||||
|
signed it. However, nothing else grants you permission to modify or
|
||||||
|
distribute the Program or its derivative works. These actions are
|
||||||
|
prohibited by law if you do not accept this License. Therefore, by
|
||||||
|
modifying or distributing the Program (or any work based on the
|
||||||
|
Program), you indicate your acceptance of this License to do so, and
|
||||||
|
all its terms and conditions for copying, distributing or modifying
|
||||||
|
the Program or works based on it.
|
||||||
|
|
||||||
|
6. Each time you redistribute the Program (or any work based on the
|
||||||
|
Program), the recipient automatically receives a license from the
|
||||||
|
original licensor to copy, distribute or modify the Program subject to
|
||||||
|
these terms and conditions. You may not impose any further
|
||||||
|
restrictions on the recipients' exercise of the rights granted herein.
|
||||||
|
You are not responsible for enforcing compliance by third parties to
|
||||||
|
this License.
|
||||||
|
|
||||||
|
7. If, as a consequence of a court judgment or allegation of patent
|
||||||
|
infringement or for any other reason (not limited to patent issues),
|
||||||
|
conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot
|
||||||
|
distribute so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you
|
||||||
|
may not distribute the Program at all. For example, if a patent
|
||||||
|
license would not permit royalty-free redistribution of the Program by
|
||||||
|
all those who receive copies directly or indirectly through you, then
|
||||||
|
the only way you could satisfy both it and this License would be to
|
||||||
|
refrain entirely from distribution of the Program.
|
||||||
|
|
||||||
|
If any portion of this section is held invalid or unenforceable under
|
||||||
|
any particular circumstance, the balance of the section is intended to
|
||||||
|
apply and the section as a whole is intended to apply in other
|
||||||
|
circumstances.
|
||||||
|
|
||||||
|
It is not the purpose of this section to induce you to infringe any
|
||||||
|
patents or other property right claims or to contest validity of any
|
||||||
|
such claims; this section has the sole purpose of protecting the
|
||||||
|
integrity of the free software distribution system, which is
|
||||||
|
implemented by public license practices. Many people have made
|
||||||
|
generous contributions to the wide range of software distributed
|
||||||
|
through that system in reliance on consistent application of that
|
||||||
|
system; it is up to the author/donor to decide if he or she is willing
|
||||||
|
to distribute software through any other system and a licensee cannot
|
||||||
|
impose that choice.
|
||||||
|
|
||||||
|
This section is intended to make thoroughly clear what is believed to
|
||||||
|
be a consequence of the rest of this License.
|
||||||
|
|
||||||
|
8. If the distribution and/or use of the Program is restricted in
|
||||||
|
certain countries either by patents or by copyrighted interfaces, the
|
||||||
|
original copyright holder who places the Program under this License
|
||||||
|
may add an explicit geographical distribution limitation excluding
|
||||||
|
those countries, so that distribution is permitted only in or among
|
||||||
|
countries not thus excluded. In such case, this License incorporates
|
||||||
|
the limitation as if written in the body of this License.
|
||||||
|
|
||||||
|
9. The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Program
|
||||||
|
specifies a version number of this License which applies to it and "any
|
||||||
|
later version", you have the option of following the terms and conditions
|
||||||
|
either of that version or of any later version published by the Free
|
||||||
|
Software Foundation. If the Program does not specify a version number of
|
||||||
|
this License, you may choose any version ever published by the Free Software
|
||||||
|
Foundation.
|
||||||
|
|
||||||
|
10. If you wish to incorporate parts of the Program into other free
|
||||||
|
programs whose distribution conditions are different, write to the author
|
||||||
|
to ask for permission. For software which is copyrighted by the Free
|
||||||
|
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||||
|
make exceptions for this. Our decision will be guided by the two goals
|
||||||
|
of preserving the free status of all derivatives of our free software and
|
||||||
|
of promoting the sharing and reuse of software generally.
|
||||||
|
|
||||||
|
NO WARRANTY
|
||||||
|
|
||||||
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||||
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||||
|
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||||
|
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||||
|
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||||
|
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||||
|
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||||
|
REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||||
|
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||||
|
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||||
|
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||||
|
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||||
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||||
|
POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
convey the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
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 2 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, write to the Free Software
|
||||||
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program is interactive, make it output a short notice like this
|
||||||
|
when it starts in an interactive mode:
|
||||||
|
|
||||||
|
Gnomovision version 69, Copyright (C) year name of author
|
||||||
|
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, the commands you use may
|
||||||
|
be called something other than `show w' and `show c'; they could even be
|
||||||
|
mouse-clicks or menu items--whatever suits your program.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or your
|
||||||
|
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||||
|
necessary. Here is a sample; alter the names:
|
||||||
|
|
||||||
|
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||||
|
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||||
|
|
||||||
|
<signature of Ty Coon>, 1 April 1989
|
||||||
|
Ty Coon, President of Vice
|
||||||
|
|
||||||
|
This General Public License does not permit incorporating your program into
|
||||||
|
proprietary programs. If your program is a subroutine library, you may
|
||||||
|
consider it more useful to permit linking proprietary applications with the
|
||||||
|
library. If this is what you want to do, use the GNU Library General
|
||||||
|
Public License instead of this License.
|
BIN
data/refind/EFI/boot/drivers_aa64/btrfs_aa64.efi
Normal file
BIN
data/refind/EFI/boot/drivers_aa64/ext2_aa64.efi
Normal file
BIN
data/refind/EFI/boot/drivers_aa64/ext4_aa64.efi
Normal file
BIN
data/refind/EFI/boot/drivers_aa64/hfs_aa64.efi
Normal file
BIN
data/refind/EFI/boot/drivers_aa64/iso9660_aa64.efi
Normal file
BIN
data/refind/EFI/boot/drivers_aa64/reiserfs_aa64.efi
Normal file
47
data/refind/EFI/boot/drivers_ia32/LICENSE.txt
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
Licensing for the filesystem drivers is complex. Three different licenses
|
||||||
|
apply to various parts of the code:
|
||||||
|
|
||||||
|
* Christoph Pfisterer's original file system wrapper (FSW) code is covered
|
||||||
|
by a BSD-style license. Many of the source files with names that take the
|
||||||
|
form fsw_*.[ch] are so licensed, but this is NOT generally true of
|
||||||
|
filesystem-specific files (e.g., fsw_ext2.c or fsw_btrfs.c).
|
||||||
|
|
||||||
|
* Certain filesystem drivers are licensed under the GPLv2, either because
|
||||||
|
they borrow code from the Linux kernel or because a developer (typically
|
||||||
|
Oracle) applied the GPLv2 license to them. This is true of the ext2fs,
|
||||||
|
ext4fs, ReiserFS, HFS+, and ISO-9660 drivers.
|
||||||
|
|
||||||
|
* At least one filesystem driver (Btrfs) uses code taken from GRUB, and so
|
||||||
|
uses the GPLv3 (or later) license.
|
||||||
|
|
||||||
|
Note that the GPLv2 and GPLv3 are, ironically, not compatible licenses.
|
||||||
|
Thus, code from GPLv2 and GPLv3 projects should not be mixed. The BSD
|
||||||
|
license used by Pfisterer's original code is compatible with both versions
|
||||||
|
of the GPL, so the fact that both GPLv2 and GPLv3 drivers is built upon it
|
||||||
|
is OK. If you intend to contribute to this project's drivers or use the
|
||||||
|
code yourself, please keep this fact in mind.
|
||||||
|
|
||||||
|
The below was written by Christoph Pfisterer with respect to his original
|
||||||
|
code:
|
||||||
|
|
||||||
|
File System Wrapper License
|
||||||
|
=============================
|
||||||
|
|
||||||
|
The various parts of the File System Wrapper source code come from
|
||||||
|
different sources and may carry different licenses. Here's a quick
|
||||||
|
account of the situation:
|
||||||
|
|
||||||
|
* The core code was written from scratch and is covered by a
|
||||||
|
BSD-style license.
|
||||||
|
|
||||||
|
* The EFI host driver was written from scratch, possibly using code
|
||||||
|
from the TianoCore project and Intel's EFI Application Toolkit. It
|
||||||
|
is covered by a BSD-style license.
|
||||||
|
|
||||||
|
* The ext2 and reiserfs file system drivers use definitions from the
|
||||||
|
Linux kernel source. The actual code was written from scratch,
|
||||||
|
using multiple sources for reference. These drivers are covered by
|
||||||
|
the GNU GPL.
|
||||||
|
|
||||||
|
For more details, see each file's boilerplate comment. The full text
|
||||||
|
of the GNU GPL is in the file LICENSE_GPL.txt.
|
340
data/refind/EFI/boot/drivers_ia32/LICENSE_GPL.txt
Normal file
@ -0,0 +1,340 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 2, June 1991
|
||||||
|
|
||||||
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||||
|
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The licenses for most software are designed to take away your
|
||||||
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
|
License is intended to guarantee your freedom to share and change free
|
||||||
|
software--to make sure the software is free for all its users. This
|
||||||
|
General Public License applies to most of the Free Software
|
||||||
|
Foundation's software and to any other program whose authors commit to
|
||||||
|
using it. (Some other Free Software Foundation software is covered by
|
||||||
|
the GNU Library General Public License instead.) You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
this service if you wish), that you receive source code or can get it
|
||||||
|
if you want it, that you can change the software or use pieces of it
|
||||||
|
in new free programs; and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to make restrictions that forbid
|
||||||
|
anyone to deny you these rights or to ask you to surrender the rights.
|
||||||
|
These restrictions translate to certain responsibilities for you if you
|
||||||
|
distribute copies of the software, or if you modify it.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must give the recipients all the rights that
|
||||||
|
you have. You must make sure that they, too, receive or can get the
|
||||||
|
source code. And you must show them these terms so they know their
|
||||||
|
rights.
|
||||||
|
|
||||||
|
We protect your rights with two steps: (1) copyright the software, and
|
||||||
|
(2) offer you this license which gives you legal permission to copy,
|
||||||
|
distribute and/or modify the software.
|
||||||
|
|
||||||
|
Also, for each author's protection and ours, we want to make certain
|
||||||
|
that everyone understands that there is no warranty for this free
|
||||||
|
software. If the software is modified by someone else and passed on, we
|
||||||
|
want its recipients to know that what they have is not the original, so
|
||||||
|
that any problems introduced by others will not reflect on the original
|
||||||
|
authors' reputations.
|
||||||
|
|
||||||
|
Finally, any free program is threatened constantly by software
|
||||||
|
patents. We wish to avoid the danger that redistributors of a free
|
||||||
|
program will individually obtain patent licenses, in effect making the
|
||||||
|
program proprietary. To prevent this, we have made it clear that any
|
||||||
|
patent must be licensed for everyone's free use or not licensed at all.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. This License applies to any program or other work which contains
|
||||||
|
a notice placed by the copyright holder saying it may be distributed
|
||||||
|
under the terms of this General Public License. The "Program", below,
|
||||||
|
refers to any such program or work, and a "work based on the Program"
|
||||||
|
means either the Program or any derivative work under copyright law:
|
||||||
|
that is to say, a work containing the Program or a portion of it,
|
||||||
|
either verbatim or with modifications and/or translated into another
|
||||||
|
language. (Hereinafter, translation is included without limitation in
|
||||||
|
the term "modification".) Each licensee is addressed as "you".
|
||||||
|
|
||||||
|
Activities other than copying, distribution and modification are not
|
||||||
|
covered by this License; they are outside its scope. The act of
|
||||||
|
running the Program is not restricted, and the output from the Program
|
||||||
|
is covered only if its contents constitute a work based on the
|
||||||
|
Program (independent of having been made by running the Program).
|
||||||
|
Whether that is true depends on what the Program does.
|
||||||
|
|
||||||
|
1. You may copy and distribute verbatim copies of the Program's
|
||||||
|
source code as you receive it, in any medium, provided that you
|
||||||
|
conspicuously and appropriately publish on each copy an appropriate
|
||||||
|
copyright notice and disclaimer of warranty; keep intact all the
|
||||||
|
notices that refer to this License and to the absence of any warranty;
|
||||||
|
and give any other recipients of the Program a copy of this License
|
||||||
|
along with the Program.
|
||||||
|
|
||||||
|
You may charge a fee for the physical act of transferring a copy, and
|
||||||
|
you may at your option offer warranty protection in exchange for a fee.
|
||||||
|
|
||||||
|
2. You may modify your copy or copies of the Program or any portion
|
||||||
|
of it, thus forming a work based on the Program, and copy and
|
||||||
|
distribute such modifications or work under the terms of Section 1
|
||||||
|
above, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) You must cause the modified files to carry prominent notices
|
||||||
|
stating that you changed the files and the date of any change.
|
||||||
|
|
||||||
|
b) You must cause any work that you distribute or publish, that in
|
||||||
|
whole or in part contains or is derived from the Program or any
|
||||||
|
part thereof, to be licensed as a whole at no charge to all third
|
||||||
|
parties under the terms of this License.
|
||||||
|
|
||||||
|
c) If the modified program normally reads commands interactively
|
||||||
|
when run, you must cause it, when started running for such
|
||||||
|
interactive use in the most ordinary way, to print or display an
|
||||||
|
announcement including an appropriate copyright notice and a
|
||||||
|
notice that there is no warranty (or else, saying that you provide
|
||||||
|
a warranty) and that users may redistribute the program under
|
||||||
|
these conditions, and telling the user how to view a copy of this
|
||||||
|
License. (Exception: if the Program itself is interactive but
|
||||||
|
does not normally print such an announcement, your work based on
|
||||||
|
the Program is not required to print an announcement.)
|
||||||
|
|
||||||
|
These requirements apply to the modified work as a whole. If
|
||||||
|
identifiable sections of that work are not derived from the Program,
|
||||||
|
and can be reasonably considered independent and separate works in
|
||||||
|
themselves, then this License, and its terms, do not apply to those
|
||||||
|
sections when you distribute them as separate works. But when you
|
||||||
|
distribute the same sections as part of a whole which is a work based
|
||||||
|
on the Program, the distribution of the whole must be on the terms of
|
||||||
|
this License, whose permissions for other licensees extend to the
|
||||||
|
entire whole, and thus to each and every part regardless of who wrote it.
|
||||||
|
|
||||||
|
Thus, it is not the intent of this section to claim rights or contest
|
||||||
|
your rights to work written entirely by you; rather, the intent is to
|
||||||
|
exercise the right to control the distribution of derivative or
|
||||||
|
collective works based on the Program.
|
||||||
|
|
||||||
|
In addition, mere aggregation of another work not based on the Program
|
||||||
|
with the Program (or with a work based on the Program) on a volume of
|
||||||
|
a storage or distribution medium does not bring the other work under
|
||||||
|
the scope of this License.
|
||||||
|
|
||||||
|
3. You may copy and distribute the Program (or a work based on it,
|
||||||
|
under Section 2) in object code or executable form under the terms of
|
||||||
|
Sections 1 and 2 above provided that you also do one of the following:
|
||||||
|
|
||||||
|
a) Accompany it with the complete corresponding machine-readable
|
||||||
|
source code, which must be distributed under the terms of Sections
|
||||||
|
1 and 2 above on a medium customarily used for software interchange; or,
|
||||||
|
|
||||||
|
b) Accompany it with a written offer, valid for at least three
|
||||||
|
years, to give any third party, for a charge no more than your
|
||||||
|
cost of physically performing source distribution, a complete
|
||||||
|
machine-readable copy of the corresponding source code, to be
|
||||||
|
distributed under the terms of Sections 1 and 2 above on a medium
|
||||||
|
customarily used for software interchange; or,
|
||||||
|
|
||||||
|
c) Accompany it with the information you received as to the offer
|
||||||
|
to distribute corresponding source code. (This alternative is
|
||||||
|
allowed only for noncommercial distribution and only if you
|
||||||
|
received the program in object code or executable form with such
|
||||||
|
an offer, in accord with Subsection b above.)
|
||||||
|
|
||||||
|
The source code for a work means the preferred form of the work for
|
||||||
|
making modifications to it. For an executable work, complete source
|
||||||
|
code means all the source code for all modules it contains, plus any
|
||||||
|
associated interface definition files, plus the scripts used to
|
||||||
|
control compilation and installation of the executable. However, as a
|
||||||
|
special exception, the source code distributed need not include
|
||||||
|
anything that is normally distributed (in either source or binary
|
||||||
|
form) with the major components (compiler, kernel, and so on) of the
|
||||||
|
operating system on which the executable runs, unless that component
|
||||||
|
itself accompanies the executable.
|
||||||
|
|
||||||
|
If distribution of executable or object code is made by offering
|
||||||
|
access to copy from a designated place, then offering equivalent
|
||||||
|
access to copy the source code from the same place counts as
|
||||||
|
distribution of the source code, even though third parties are not
|
||||||
|
compelled to copy the source along with the object code.
|
||||||
|
|
||||||
|
4. You may not copy, modify, sublicense, or distribute the Program
|
||||||
|
except as expressly provided under this License. Any attempt
|
||||||
|
otherwise to copy, modify, sublicense or distribute the Program is
|
||||||
|
void, and will automatically terminate your rights under this License.
|
||||||
|
However, parties who have received copies, or rights, from you under
|
||||||
|
this License will not have their licenses terminated so long as such
|
||||||
|
parties remain in full compliance.
|
||||||
|
|
||||||
|
5. You are not required to accept this License, since you have not
|
||||||
|
signed it. However, nothing else grants you permission to modify or
|
||||||
|
distribute the Program or its derivative works. These actions are
|
||||||
|
prohibited by law if you do not accept this License. Therefore, by
|
||||||
|
modifying or distributing the Program (or any work based on the
|
||||||
|
Program), you indicate your acceptance of this License to do so, and
|
||||||
|
all its terms and conditions for copying, distributing or modifying
|
||||||
|
the Program or works based on it.
|
||||||
|
|
||||||
|
6. Each time you redistribute the Program (or any work based on the
|
||||||
|
Program), the recipient automatically receives a license from the
|
||||||
|
original licensor to copy, distribute or modify the Program subject to
|
||||||
|
these terms and conditions. You may not impose any further
|
||||||
|
restrictions on the recipients' exercise of the rights granted herein.
|
||||||
|
You are not responsible for enforcing compliance by third parties to
|
||||||
|
this License.
|
||||||
|
|
||||||
|
7. If, as a consequence of a court judgment or allegation of patent
|
||||||
|
infringement or for any other reason (not limited to patent issues),
|
||||||
|
conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot
|
||||||
|
distribute so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you
|
||||||
|
may not distribute the Program at all. For example, if a patent
|
||||||
|
license would not permit royalty-free redistribution of the Program by
|
||||||
|
all those who receive copies directly or indirectly through you, then
|
||||||
|
the only way you could satisfy both it and this License would be to
|
||||||
|
refrain entirely from distribution of the Program.
|
||||||
|
|
||||||
|
If any portion of this section is held invalid or unenforceable under
|
||||||
|
any particular circumstance, the balance of the section is intended to
|
||||||
|
apply and the section as a whole is intended to apply in other
|
||||||
|
circumstances.
|
||||||
|
|
||||||
|
It is not the purpose of this section to induce you to infringe any
|
||||||
|
patents or other property right claims or to contest validity of any
|
||||||
|
such claims; this section has the sole purpose of protecting the
|
||||||
|
integrity of the free software distribution system, which is
|
||||||
|
implemented by public license practices. Many people have made
|
||||||
|
generous contributions to the wide range of software distributed
|
||||||
|
through that system in reliance on consistent application of that
|
||||||
|
system; it is up to the author/donor to decide if he or she is willing
|
||||||
|
to distribute software through any other system and a licensee cannot
|
||||||
|
impose that choice.
|
||||||
|
|
||||||
|
This section is intended to make thoroughly clear what is believed to
|
||||||
|
be a consequence of the rest of this License.
|
||||||
|
|
||||||
|
8. If the distribution and/or use of the Program is restricted in
|
||||||
|
certain countries either by patents or by copyrighted interfaces, the
|
||||||
|
original copyright holder who places the Program under this License
|
||||||
|
may add an explicit geographical distribution limitation excluding
|
||||||
|
those countries, so that distribution is permitted only in or among
|
||||||
|
countries not thus excluded. In such case, this License incorporates
|
||||||
|
the limitation as if written in the body of this License.
|
||||||
|
|
||||||
|
9. The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Program
|
||||||
|
specifies a version number of this License which applies to it and "any
|
||||||
|
later version", you have the option of following the terms and conditions
|
||||||
|
either of that version or of any later version published by the Free
|
||||||
|
Software Foundation. If the Program does not specify a version number of
|
||||||
|
this License, you may choose any version ever published by the Free Software
|
||||||
|
Foundation.
|
||||||
|
|
||||||
|
10. If you wish to incorporate parts of the Program into other free
|
||||||
|
programs whose distribution conditions are different, write to the author
|
||||||
|
to ask for permission. For software which is copyrighted by the Free
|
||||||
|
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||||
|
make exceptions for this. Our decision will be guided by the two goals
|
||||||
|
of preserving the free status of all derivatives of our free software and
|
||||||
|
of promoting the sharing and reuse of software generally.
|
||||||
|
|
||||||
|
NO WARRANTY
|
||||||
|
|
||||||
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||||
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||||
|
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||||
|
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||||
|
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||||
|
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||||
|
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||||
|
REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||||
|
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||||
|
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||||
|
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||||
|
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||||
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||||
|
POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
convey the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
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 2 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, write to the Free Software
|
||||||
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program is interactive, make it output a short notice like this
|
||||||
|
when it starts in an interactive mode:
|
||||||
|
|
||||||
|
Gnomovision version 69, Copyright (C) year name of author
|
||||||
|
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, the commands you use may
|
||||||
|
be called something other than `show w' and `show c'; they could even be
|
||||||
|
mouse-clicks or menu items--whatever suits your program.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or your
|
||||||
|
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||||
|
necessary. Here is a sample; alter the names:
|
||||||
|
|
||||||
|
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||||
|
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||||
|
|
||||||
|
<signature of Ty Coon>, 1 April 1989
|
||||||
|
Ty Coon, President of Vice
|
||||||
|
|
||||||
|
This General Public License does not permit incorporating your program into
|
||||||
|
proprietary programs. If your program is a subroutine library, you may
|
||||||
|
consider it more useful to permit linking proprietary applications with the
|
||||||
|
library. If this is what you want to do, use the GNU Library General
|
||||||
|
Public License instead of this License.
|
BIN
data/refind/EFI/boot/drivers_ia32/btrfs_ia32.efi
Normal file
BIN
data/refind/EFI/boot/drivers_ia32/ext2_ia32.efi
Normal file
BIN
data/refind/EFI/boot/drivers_ia32/ext4_ia32.efi
Normal file
BIN
data/refind/EFI/boot/drivers_ia32/hfs_ia32.efi
Normal file
BIN
data/refind/EFI/boot/drivers_ia32/iso9660_ia32.efi
Normal file
BIN
data/refind/EFI/boot/drivers_ia32/reiserfs_ia32.efi
Normal file
47
data/refind/EFI/boot/drivers_x64/LICENSE.txt
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
Licensing for the filesystem drivers is complex. Three different licenses
|
||||||
|
apply to various parts of the code:
|
||||||
|
|
||||||
|
* Christoph Pfisterer's original file system wrapper (FSW) code is covered
|
||||||
|
by a BSD-style license. Many of the source files with names that take the
|
||||||
|
form fsw_*.[ch] are so licensed, but this is NOT generally true of
|
||||||
|
filesystem-specific files (e.g., fsw_ext2.c or fsw_btrfs.c).
|
||||||
|
|
||||||
|
* Certain filesystem drivers are licensed under the GPLv2, either because
|
||||||
|
they borrow code from the Linux kernel or because a developer (typically
|
||||||
|
Oracle) applied the GPLv2 license to them. This is true of the ext2fs,
|
||||||
|
ext4fs, ReiserFS, HFS+, and ISO-9660 drivers.
|
||||||
|
|
||||||
|
* At least one filesystem driver (Btrfs) uses code taken from GRUB, and so
|
||||||
|
uses the GPLv3 (or later) license.
|
||||||
|
|
||||||
|
Note that the GPLv2 and GPLv3 are, ironically, not compatible licenses.
|
||||||
|
Thus, code from GPLv2 and GPLv3 projects should not be mixed. The BSD
|
||||||
|
license used by Pfisterer's original code is compatible with both versions
|
||||||
|
of the GPL, so the fact that both GPLv2 and GPLv3 drivers is built upon it
|
||||||
|
is OK. If you intend to contribute to this project's drivers or use the
|
||||||
|
code yourself, please keep this fact in mind.
|
||||||
|
|
||||||
|
The below was written by Christoph Pfisterer with respect to his original
|
||||||
|
code:
|
||||||
|
|
||||||
|
File System Wrapper License
|
||||||
|
=============================
|
||||||
|
|
||||||
|
The various parts of the File System Wrapper source code come from
|
||||||
|
different sources and may carry different licenses. Here's a quick
|
||||||
|
account of the situation:
|
||||||
|
|
||||||
|
* The core code was written from scratch and is covered by a
|
||||||
|
BSD-style license.
|
||||||
|
|
||||||
|
* The EFI host driver was written from scratch, possibly using code
|
||||||
|
from the TianoCore project and Intel's EFI Application Toolkit. It
|
||||||
|
is covered by a BSD-style license.
|
||||||
|
|
||||||
|
* The ext2 and reiserfs file system drivers use definitions from the
|
||||||
|
Linux kernel source. The actual code was written from scratch,
|
||||||
|
using multiple sources for reference. These drivers are covered by
|
||||||
|
the GNU GPL.
|
||||||
|
|
||||||
|
For more details, see each file's boilerplate comment. The full text
|
||||||
|
of the GNU GPL is in the file LICENSE_GPL.txt.
|
340
data/refind/EFI/boot/drivers_x64/LICENSE_GPL.txt
Normal file
@ -0,0 +1,340 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 2, June 1991
|
||||||
|
|
||||||
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||||
|
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The licenses for most software are designed to take away your
|
||||||
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
|
License is intended to guarantee your freedom to share and change free
|
||||||
|
software--to make sure the software is free for all its users. This
|
||||||
|
General Public License applies to most of the Free Software
|
||||||
|
Foundation's software and to any other program whose authors commit to
|
||||||
|
using it. (Some other Free Software Foundation software is covered by
|
||||||
|
the GNU Library General Public License instead.) You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
this service if you wish), that you receive source code or can get it
|
||||||
|
if you want it, that you can change the software or use pieces of it
|
||||||
|
in new free programs; and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to make restrictions that forbid
|
||||||
|
anyone to deny you these rights or to ask you to surrender the rights.
|
||||||
|
These restrictions translate to certain responsibilities for you if you
|
||||||
|
distribute copies of the software, or if you modify it.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must give the recipients all the rights that
|
||||||
|
you have. You must make sure that they, too, receive or can get the
|
||||||
|
source code. And you must show them these terms so they know their
|
||||||
|
rights.
|
||||||
|
|
||||||
|
We protect your rights with two steps: (1) copyright the software, and
|
||||||
|
(2) offer you this license which gives you legal permission to copy,
|
||||||
|
distribute and/or modify the software.
|
||||||
|
|
||||||
|
Also, for each author's protection and ours, we want to make certain
|
||||||
|
that everyone understands that there is no warranty for this free
|
||||||
|
software. If the software is modified by someone else and passed on, we
|
||||||
|
want its recipients to know that what they have is not the original, so
|
||||||
|
that any problems introduced by others will not reflect on the original
|
||||||
|
authors' reputations.
|
||||||
|
|
||||||
|
Finally, any free program is threatened constantly by software
|
||||||
|
patents. We wish to avoid the danger that redistributors of a free
|
||||||
|
program will individually obtain patent licenses, in effect making the
|
||||||
|
program proprietary. To prevent this, we have made it clear that any
|
||||||
|
patent must be licensed for everyone's free use or not licensed at all.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. This License applies to any program or other work which contains
|
||||||
|
a notice placed by the copyright holder saying it may be distributed
|
||||||
|
under the terms of this General Public License. The "Program", below,
|
||||||
|
refers to any such program or work, and a "work based on the Program"
|
||||||
|
means either the Program or any derivative work under copyright law:
|
||||||
|
that is to say, a work containing the Program or a portion of it,
|
||||||
|
either verbatim or with modifications and/or translated into another
|
||||||
|
language. (Hereinafter, translation is included without limitation in
|
||||||
|
the term "modification".) Each licensee is addressed as "you".
|
||||||
|
|
||||||
|
Activities other than copying, distribution and modification are not
|
||||||
|
covered by this License; they are outside its scope. The act of
|
||||||
|
running the Program is not restricted, and the output from the Program
|
||||||
|
is covered only if its contents constitute a work based on the
|
||||||
|
Program (independent of having been made by running the Program).
|
||||||
|
Whether that is true depends on what the Program does.
|
||||||
|
|
||||||
|
1. You may copy and distribute verbatim copies of the Program's
|
||||||
|
source code as you receive it, in any medium, provided that you
|
||||||
|
conspicuously and appropriately publish on each copy an appropriate
|
||||||
|
copyright notice and disclaimer of warranty; keep intact all the
|
||||||
|
notices that refer to this License and to the absence of any warranty;
|
||||||
|
and give any other recipients of the Program a copy of this License
|
||||||
|
along with the Program.
|
||||||
|
|
||||||
|
You may charge a fee for the physical act of transferring a copy, and
|
||||||
|
you may at your option offer warranty protection in exchange for a fee.
|
||||||
|
|
||||||
|
2. You may modify your copy or copies of the Program or any portion
|
||||||
|
of it, thus forming a work based on the Program, and copy and
|
||||||
|
distribute such modifications or work under the terms of Section 1
|
||||||
|
above, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) You must cause the modified files to carry prominent notices
|
||||||
|
stating that you changed the files and the date of any change.
|
||||||
|
|
||||||
|
b) You must cause any work that you distribute or publish, that in
|
||||||
|
whole or in part contains or is derived from the Program or any
|
||||||
|
part thereof, to be licensed as a whole at no charge to all third
|
||||||
|
parties under the terms of this License.
|
||||||
|
|
||||||
|
c) If the modified program normally reads commands interactively
|
||||||
|
when run, you must cause it, when started running for such
|
||||||
|
interactive use in the most ordinary way, to print or display an
|
||||||
|
announcement including an appropriate copyright notice and a
|
||||||
|
notice that there is no warranty (or else, saying that you provide
|
||||||
|
a warranty) and that users may redistribute the program under
|
||||||
|
these conditions, and telling the user how to view a copy of this
|
||||||
|
License. (Exception: if the Program itself is interactive but
|
||||||
|
does not normally print such an announcement, your work based on
|
||||||
|
the Program is not required to print an announcement.)
|
||||||
|
|
||||||
|
These requirements apply to the modified work as a whole. If
|
||||||
|
identifiable sections of that work are not derived from the Program,
|
||||||
|
and can be reasonably considered independent and separate works in
|
||||||
|
themselves, then this License, and its terms, do not apply to those
|
||||||
|
sections when you distribute them as separate works. But when you
|
||||||
|
distribute the same sections as part of a whole which is a work based
|
||||||
|
on the Program, the distribution of the whole must be on the terms of
|
||||||
|
this License, whose permissions for other licensees extend to the
|
||||||
|
entire whole, and thus to each and every part regardless of who wrote it.
|
||||||
|
|
||||||
|
Thus, it is not the intent of this section to claim rights or contest
|
||||||
|
your rights to work written entirely by you; rather, the intent is to
|
||||||
|
exercise the right to control the distribution of derivative or
|
||||||
|
collective works based on the Program.
|
||||||
|
|
||||||
|
In addition, mere aggregation of another work not based on the Program
|
||||||
|
with the Program (or with a work based on the Program) on a volume of
|
||||||
|
a storage or distribution medium does not bring the other work under
|
||||||
|
the scope of this License.
|
||||||
|
|
||||||
|
3. You may copy and distribute the Program (or a work based on it,
|
||||||
|
under Section 2) in object code or executable form under the terms of
|
||||||
|
Sections 1 and 2 above provided that you also do one of the following:
|
||||||
|
|
||||||
|
a) Accompany it with the complete corresponding machine-readable
|
||||||
|
source code, which must be distributed under the terms of Sections
|
||||||
|
1 and 2 above on a medium customarily used for software interchange; or,
|
||||||
|
|
||||||
|
b) Accompany it with a written offer, valid for at least three
|
||||||
|
years, to give any third party, for a charge no more than your
|
||||||
|
cost of physically performing source distribution, a complete
|
||||||
|
machine-readable copy of the corresponding source code, to be
|
||||||
|
distributed under the terms of Sections 1 and 2 above on a medium
|
||||||
|
customarily used for software interchange; or,
|
||||||
|
|
||||||
|
c) Accompany it with the information you received as to the offer
|
||||||
|
to distribute corresponding source code. (This alternative is
|
||||||
|
allowed only for noncommercial distribution and only if you
|
||||||
|
received the program in object code or executable form with such
|
||||||
|
an offer, in accord with Subsection b above.)
|
||||||
|
|
||||||
|
The source code for a work means the preferred form of the work for
|
||||||
|
making modifications to it. For an executable work, complete source
|
||||||
|
code means all the source code for all modules it contains, plus any
|
||||||
|
associated interface definition files, plus the scripts used to
|
||||||
|
control compilation and installation of the executable. However, as a
|
||||||
|
special exception, the source code distributed need not include
|
||||||
|
anything that is normally distributed (in either source or binary
|
||||||
|
form) with the major components (compiler, kernel, and so on) of the
|
||||||
|
operating system on which the executable runs, unless that component
|
||||||
|
itself accompanies the executable.
|
||||||
|
|
||||||
|
If distribution of executable or object code is made by offering
|
||||||
|
access to copy from a designated place, then offering equivalent
|
||||||
|
access to copy the source code from the same place counts as
|
||||||
|
distribution of the source code, even though third parties are not
|
||||||
|
compelled to copy the source along with the object code.
|
||||||
|
|
||||||
|
4. You may not copy, modify, sublicense, or distribute the Program
|
||||||
|
except as expressly provided under this License. Any attempt
|
||||||
|
otherwise to copy, modify, sublicense or distribute the Program is
|
||||||
|
void, and will automatically terminate your rights under this License.
|
||||||
|
However, parties who have received copies, or rights, from you under
|
||||||
|
this License will not have their licenses terminated so long as such
|
||||||
|
parties remain in full compliance.
|
||||||
|
|
||||||
|
5. You are not required to accept this License, since you have not
|
||||||
|
signed it. However, nothing else grants you permission to modify or
|
||||||
|
distribute the Program or its derivative works. These actions are
|
||||||
|
prohibited by law if you do not accept this License. Therefore, by
|
||||||
|
modifying or distributing the Program (or any work based on the
|
||||||
|
Program), you indicate your acceptance of this License to do so, and
|
||||||
|
all its terms and conditions for copying, distributing or modifying
|
||||||
|
the Program or works based on it.
|
||||||
|
|
||||||
|
6. Each time you redistribute the Program (or any work based on the
|
||||||
|
Program), the recipient automatically receives a license from the
|
||||||
|
original licensor to copy, distribute or modify the Program subject to
|
||||||
|
these terms and conditions. You may not impose any further
|
||||||
|
restrictions on the recipients' exercise of the rights granted herein.
|
||||||
|
You are not responsible for enforcing compliance by third parties to
|
||||||
|
this License.
|
||||||
|
|
||||||
|
7. If, as a consequence of a court judgment or allegation of patent
|
||||||
|
infringement or for any other reason (not limited to patent issues),
|
||||||
|
conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot
|
||||||
|
distribute so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you
|
||||||
|
may not distribute the Program at all. For example, if a patent
|
||||||
|
license would not permit royalty-free redistribution of the Program by
|
||||||
|
all those who receive copies directly or indirectly through you, then
|
||||||
|
the only way you could satisfy both it and this License would be to
|
||||||
|
refrain entirely from distribution of the Program.
|
||||||
|
|
||||||
|
If any portion of this section is held invalid or unenforceable under
|
||||||
|
any particular circumstance, the balance of the section is intended to
|
||||||
|
apply and the section as a whole is intended to apply in other
|
||||||
|
circumstances.
|
||||||
|
|
||||||
|
It is not the purpose of this section to induce you to infringe any
|
||||||
|
patents or other property right claims or to contest validity of any
|
||||||
|
such claims; this section has the sole purpose of protecting the
|
||||||
|
integrity of the free software distribution system, which is
|
||||||
|
implemented by public license practices. Many people have made
|
||||||
|
generous contributions to the wide range of software distributed
|
||||||
|
through that system in reliance on consistent application of that
|
||||||
|
system; it is up to the author/donor to decide if he or she is willing
|
||||||
|
to distribute software through any other system and a licensee cannot
|
||||||
|
impose that choice.
|
||||||
|
|
||||||
|
This section is intended to make thoroughly clear what is believed to
|
||||||
|
be a consequence of the rest of this License.
|
||||||
|
|
||||||
|
8. If the distribution and/or use of the Program is restricted in
|
||||||
|
certain countries either by patents or by copyrighted interfaces, the
|
||||||
|
original copyright holder who places the Program under this License
|
||||||
|
may add an explicit geographical distribution limitation excluding
|
||||||
|
those countries, so that distribution is permitted only in or among
|
||||||
|
countries not thus excluded. In such case, this License incorporates
|
||||||
|
the limitation as if written in the body of this License.
|
||||||
|
|
||||||
|
9. The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Program
|
||||||
|
specifies a version number of this License which applies to it and "any
|
||||||
|
later version", you have the option of following the terms and conditions
|
||||||
|
either of that version or of any later version published by the Free
|
||||||
|
Software Foundation. If the Program does not specify a version number of
|
||||||
|
this License, you may choose any version ever published by the Free Software
|
||||||
|
Foundation.
|
||||||
|
|
||||||
|
10. If you wish to incorporate parts of the Program into other free
|
||||||
|
programs whose distribution conditions are different, write to the author
|
||||||
|
to ask for permission. For software which is copyrighted by the Free
|
||||||
|
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||||
|
make exceptions for this. Our decision will be guided by the two goals
|
||||||
|
of preserving the free status of all derivatives of our free software and
|
||||||
|
of promoting the sharing and reuse of software generally.
|
||||||
|
|
||||||
|
NO WARRANTY
|
||||||
|
|
||||||
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||||
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||||
|
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||||
|
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||||
|
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||||
|
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||||
|
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||||
|
REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||||
|
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||||
|
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||||
|
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||||
|
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||||
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||||
|
POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
convey the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
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 2 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, write to the Free Software
|
||||||
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program is interactive, make it output a short notice like this
|
||||||
|
when it starts in an interactive mode:
|
||||||
|
|
||||||
|
Gnomovision version 69, Copyright (C) year name of author
|
||||||
|
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, the commands you use may
|
||||||
|
be called something other than `show w' and `show c'; they could even be
|
||||||
|
mouse-clicks or menu items--whatever suits your program.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or your
|
||||||
|
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||||
|
necessary. Here is a sample; alter the names:
|
||||||
|
|
||||||
|
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||||
|
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||||
|
|
||||||
|
<signature of Ty Coon>, 1 April 1989
|
||||||
|
Ty Coon, President of Vice
|
||||||
|
|
||||||
|
This General Public License does not permit incorporating your program into
|
||||||
|
proprietary programs. If your program is a subroutine library, you may
|
||||||
|
consider it more useful to permit linking proprietary applications with the
|
||||||
|
library. If this is what you want to do, use the GNU Library General
|
||||||
|
Public License instead of this License.
|
BIN
data/refind/EFI/boot/drivers_x64/btrfs_x64.efi
Normal file
BIN
data/refind/EFI/boot/drivers_x64/ext2_x64.efi
Normal file
BIN
data/refind/EFI/boot/drivers_x64/ext4_x64.efi
Normal file
BIN
data/refind/EFI/boot/drivers_x64/hfs_x64.efi
Normal file
BIN
data/refind/EFI/boot/drivers_x64/iso9660_x64.efi
Normal file
BIN
data/refind/EFI/boot/drivers_x64/reiserfs_x64.efi
Normal file
193
data/refind/EFI/boot/icons/README
Normal file
@ -0,0 +1,193 @@
|
|||||||
|
This directory holds icons used by rEFInd. This file describes their
|
||||||
|
sources, both in overview and in file-by-file detail, and provides pointers
|
||||||
|
to the relevant licenses under which the icons are distributed.
|
||||||
|
|
||||||
|
Icon Sources (Overview)
|
||||||
|
-----------------------
|
||||||
|
|
||||||
|
- The AwOken 2.5 icon set
|
||||||
|
- Source: http://alecive.deviantart.com/art/AwOken-163570862
|
||||||
|
- Copyright (c) 2013 by Alessandro Roncone (aka alecive on DeviantArt)
|
||||||
|
- License: Creative Commons Attribution-Share Alike 3.0 (CC-SA 3.0)
|
||||||
|
|
||||||
|
- Original work for rEFInd
|
||||||
|
- Source: https://sourceforge.net/p/refind (this archive)
|
||||||
|
- Copyright (c) 2015-2017 by Roderick W. Smith
|
||||||
|
- License: LGPLv3+ or CC-SA 3.0
|
||||||
|
|
||||||
|
- Debian OS icon
|
||||||
|
- Source: https://commons.wikimedia.org/wiki/File:Debian-OpenLogo.svg
|
||||||
|
- Copyright (c) 1999 Debian Project
|
||||||
|
- License: LGPLv3+ or CC-SA 3.0
|
||||||
|
|
||||||
|
- Devuan OS icon
|
||||||
|
- Source: https://devuan.org/ui/img/devuan-emblem.svg
|
||||||
|
- Copyright (c) 2017 Dyne.org foundation
|
||||||
|
- License: CC-BY-SA 4.0
|
||||||
|
|
||||||
|
- Elementary OS icon
|
||||||
|
- Source: https://commons.wikimedia.org/wiki/File:Elementary_logo.svg
|
||||||
|
- Copyright (c) 2008 Dan Rabbit
|
||||||
|
- License: GPLv2+
|
||||||
|
|
||||||
|
- Endeavour OS icon
|
||||||
|
- Source: https://github.com/endeavouros-team/artwork-images-logo/blob/master/endeavouros-icon.png
|
||||||
|
- License: GPLv3
|
||||||
|
|
||||||
|
- Manjaro OS icon
|
||||||
|
- Source: https://commons.wikimedia.org/wiki/File:Manjaro-logo.svg
|
||||||
|
- Public domain
|
||||||
|
|
||||||
|
- Ubuntu "animal" icons (through os_xenial.png)
|
||||||
|
- Source: https://wiki.ubuntu.com/Artwork/Official
|
||||||
|
- Copyright (c) 2014-2017 Canonical Ltd.
|
||||||
|
- License: CC-BY-SA 3.0
|
||||||
|
|
||||||
|
- Ubuntu "animal" icons (os_artful.png and os_bionic.png)
|
||||||
|
- Source: frank.heimes.canonical.com
|
||||||
|
- Copyright (c) 2017-2018 Canonical Ltd.
|
||||||
|
- License: CC-BY-SA-3.0
|
||||||
|
|
||||||
|
- Ubuntu standard icon (os_ubuntu.png)
|
||||||
|
- Source: https://logos.fandom.com/wiki/Ubuntu?file=Ubuntu_%25282022%2529.svg
|
||||||
|
- Copyright (c) 2022 Canonical Ltd.
|
||||||
|
- License: CC-BY-SA 3.0
|
||||||
|
|
||||||
|
- Void Linux icon
|
||||||
|
- Source: https://commons.wikimedia.org/wiki/File:Void_Linux_logo.svg
|
||||||
|
- Copyright: Public Domain
|
||||||
|
|
||||||
|
Some icons have been altered from their original forms -- normally
|
||||||
|
conversion from SVG to PNG format, resizing, changes in coloration, or
|
||||||
|
addition of "drop shadow" effects. Details follow....
|
||||||
|
|
||||||
|
The "svg" subdirectory holds SVG versions of some icons (notably absent are
|
||||||
|
those based on the AwOken icon set).
|
||||||
|
|
||||||
|
Icon Sources (Detail)
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
Icons unchanged from AwOken 2.5:
|
||||||
|
|
||||||
|
os_centos.png -- AwOken/clear/128x128/start-here/start-here-centos.png
|
||||||
|
os_chakra.png -- AwOken/clear/128x128/start-here/start-here-chakra.png
|
||||||
|
os_chrome.png -- AwOken/clear/128x128/apps/google-chrome1.png
|
||||||
|
os_crunchbang.png -- AwOken/clear/128x128/start-here/start-here-crunchbang3.png
|
||||||
|
os_fedora.png -- AwOken/clear/128x128/start-here/start-here-fedora5.png
|
||||||
|
os_frugalware.png -- AwOken/clear/128x128/start-here/start-here-frugalware1.png
|
||||||
|
os_kubuntu.png -- AwOken/clear/128x128/start-here/start-here-kubuntu.png
|
||||||
|
os_lubuntu.png -- AwOken/clear/128x128/start-here/start-here-lubuntu.png
|
||||||
|
os_mageia.png -- AwOken/clear/128x128/start-here/start-here-mageia.png
|
||||||
|
os_mandriva.png -- AwOken/clear/128x128/start-here/start-here-mandriva5.png
|
||||||
|
os_network.png -- AwOken/clear/128x128/places/network-workgroup1.png
|
||||||
|
os_uefi.png -- AwOkenWhite/clear/128x128/start-here/start-here-umbrella3.png
|
||||||
|
os_unknown.png -- AwOken/clear/128x128/actions/color-line1.png
|
||||||
|
os_win8.png -- AwOken/clear/128x128/apps/live1.png
|
||||||
|
|
||||||
|
|
||||||
|
Icons modified from AwOken 2.5:
|
||||||
|
|
||||||
|
arrow_left.png -- AwOken/clear/128x128/actions/go-previous.png
|
||||||
|
arrow_right.png -- AwOken/clear/128x128/actions/go-next.png
|
||||||
|
boot_linux.png -- AwOken/clear/128x128/apps/supertux.png
|
||||||
|
func_about.png -- AwOkenWhite/clear/128x128/actions/info2.png
|
||||||
|
func_install.png -- AwOken/AwOkenWhite/clear/24x24/actions/document-import.png
|
||||||
|
func_bootorder.png -- AwOkenWhite/clear/128x128/actions/format-list-ordered.png
|
||||||
|
func_exit.png -- AwOkenWhite/clear/128x128/actions/application-exit2.png
|
||||||
|
func_firmware.png -- AwOkenWhite/clear/128x128/status/indicator-cpufreq.png
|
||||||
|
func_reset.png -- AwOkenWhite/clear/128x128/apps/gnome-session-reboot2.png
|
||||||
|
func_shutdown.png -- AwOkenWhite/clear/128x128/apps/gnome-session-halt2.png
|
||||||
|
os_arch.png -- AwOkenWhite/clear/128x128/start-here/start-here-arch3.png
|
||||||
|
os_clover.png -- AwOkenWhite/clear/128x128/actions/tools-wizard.png
|
||||||
|
os_gentoo.png -- AwOken/clear/128x128/start-here/start-here-gentoo.png
|
||||||
|
os_hwtest.png -- AwOkenWhite/clear/128x128/apps/hw.png
|
||||||
|
os_linux.png -- AwOkenWhite/clear/128x128/apps/supertux.png
|
||||||
|
os_linuxmint.png -- AwOkenWhite/clear/128x128/start-here/start-here-mint3.png
|
||||||
|
os_opensuse.png -- AwOkenWhite/clear/128x128/start-here/start-here-suse3.png
|
||||||
|
os_slackware.png -- AwOkenWhite/clear/128x128/start-here/start-here-slackware1.png
|
||||||
|
os_suse.png -- AwOkenWhite/clear/128x128/start-here/start-here-suse3.png
|
||||||
|
os_xubuntu.png -- AwOkenWhite/clear/128x128/start-here/start-here-xubuntu1.png
|
||||||
|
tool_mok_tool.png -- AwOkenWhite/clear/128x128/apps/gnome-keyring-manager.png
|
||||||
|
tool_netboot.png -- AwOken/clear/128x128/places/network-workgroup1.png
|
||||||
|
tool_shell.png -- AwOken/clear/128x128/apps/terminal3.png
|
||||||
|
vol_efi.png -- AwOkenWhite/clear/128x128/status/indicator-cpufreq.png
|
||||||
|
vol_external.png -- AwOkenWhite/clear/128x128/devices/drive-removable-media-usb2.png
|
||||||
|
vol_internal.png -- AwOken/clear/128/128/drive-harddisk/Internal.png
|
||||||
|
vol_net.png -- AwOken/clear/128/128/drive-harddisk/Server.png
|
||||||
|
vol_optical.png - AwOken/clear/128x128/devices/media-optical-cd1.png
|
||||||
|
|
||||||
|
|
||||||
|
Modified Elementary OS icon:
|
||||||
|
|
||||||
|
os_elementary.png (GPLv2+)
|
||||||
|
|
||||||
|
|
||||||
|
Modified Debian OS icon:
|
||||||
|
|
||||||
|
os_debian.png (LGPLv3+ or CC-BY-SA 3.0)
|
||||||
|
|
||||||
|
|
||||||
|
Modified Void Linux icon:
|
||||||
|
|
||||||
|
os_void.png (public domain)
|
||||||
|
|
||||||
|
|
||||||
|
Modified EndeavourOS icon:
|
||||||
|
|
||||||
|
os_endeavouros.png
|
||||||
|
|
||||||
|
|
||||||
|
Modified Ubuntu icons:
|
||||||
|
|
||||||
|
os_trusty.png
|
||||||
|
os_ubuntu.png
|
||||||
|
os_xenial.png
|
||||||
|
os_zesty.png
|
||||||
|
|
||||||
|
|
||||||
|
Icons created by me (Roderick W. Smith):
|
||||||
|
|
||||||
|
boot_win.png
|
||||||
|
func_csr_rotate.png
|
||||||
|
mouse.png
|
||||||
|
os_clover.png
|
||||||
|
os_freebsd.png
|
||||||
|
os_gummiboot.png
|
||||||
|
os_haiku.png
|
||||||
|
os_legacy.png
|
||||||
|
os_mac.png
|
||||||
|
os_netbsd.png
|
||||||
|
os_redhat.png
|
||||||
|
os_refind.png
|
||||||
|
os_refit.png
|
||||||
|
os_win.png
|
||||||
|
tool_apple_rescue.png
|
||||||
|
tool_fwupdate.png
|
||||||
|
tool_memtest.png
|
||||||
|
tool_rescue.png
|
||||||
|
transparent.png
|
||||||
|
|
||||||
|
|
||||||
|
In addition, some icons are combinations of two other icons from different
|
||||||
|
sources:
|
||||||
|
|
||||||
|
tool_part.png -- vol_internal.png with AwOken's gparted2.png
|
||||||
|
tool_windows_rescue.png: os_win8.png with AwOken's gnome_network_preferences.png
|
||||||
|
|
||||||
|
|
||||||
|
Licneses
|
||||||
|
--------
|
||||||
|
|
||||||
|
The "licenses" subdirectory contains the text of the relevant licenses:
|
||||||
|
|
||||||
|
CC-SA 3.0: Creative Commons Legal Code.html
|
||||||
|
(See also https://creativecommons.org/licenses/by-sa/3.0/us/)
|
||||||
|
|
||||||
|
GPLv2: gpl-2.0.txt
|
||||||
|
(see also https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html)
|
||||||
|
|
||||||
|
GPLv3: gpl-3.0.txt
|
||||||
|
(see also https://www.gnu.org/licenses/gpl-3.0.html)
|
||||||
|
|
||||||
|
LGPLv3: lgpl-3.0.txt
|
||||||
|
(see also http://www.gnu.org/licenses/lgpl-3.0.en.html)
|
BIN
data/refind/EFI/boot/icons/arrow_left.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
data/refind/EFI/boot/icons/arrow_right.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
data/refind/EFI/boot/icons/boot_linux.png
Normal file
After Width: | Height: | Size: 8.9 KiB |
BIN
data/refind/EFI/boot/icons/boot_win.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
data/refind/EFI/boot/icons/func_about.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
data/refind/EFI/boot/icons/func_bootorder.png
Normal file
After Width: | Height: | Size: 6.8 KiB |
BIN
data/refind/EFI/boot/icons/func_csr_rotate.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
data/refind/EFI/boot/icons/func_exit.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
data/refind/EFI/boot/icons/func_firmware.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
data/refind/EFI/boot/icons/func_hidden.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
BIN
data/refind/EFI/boot/icons/func_install.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
data/refind/EFI/boot/icons/func_reset.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
data/refind/EFI/boot/icons/func_shutdown.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
data/refind/EFI/boot/icons/mouse.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
data/refind/EFI/boot/icons/os_arch.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
data/refind/EFI/boot/icons/os_artful.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
BIN
data/refind/EFI/boot/icons/os_bionic.png
Normal file
After Width: | Height: | Size: 6.8 KiB |
BIN
data/refind/EFI/boot/icons/os_centos.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
data/refind/EFI/boot/icons/os_chakra.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
data/refind/EFI/boot/icons/os_chrome.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
data/refind/EFI/boot/icons/os_clover.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
data/refind/EFI/boot/icons/os_crunchbang.png
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
data/refind/EFI/boot/icons/os_debian.png
Normal file
After Width: | Height: | Size: 9.2 KiB |
BIN
data/refind/EFI/boot/icons/os_devuan.png
Normal file
After Width: | Height: | Size: 5.0 KiB |
BIN
data/refind/EFI/boot/icons/os_elementary.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
data/refind/EFI/boot/icons/os_endeavouros.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
data/refind/EFI/boot/icons/os_fedora.png
Normal file
After Width: | Height: | Size: 8.6 KiB |
BIN
data/refind/EFI/boot/icons/os_freebsd.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
data/refind/EFI/boot/icons/os_frugalware.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
data/refind/EFI/boot/icons/os_gentoo.png
Normal file
After Width: | Height: | Size: 7.4 KiB |
BIN
data/refind/EFI/boot/icons/os_gummiboot.png
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
data/refind/EFI/boot/icons/os_haiku.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
data/refind/EFI/boot/icons/os_hwtest.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
data/refind/EFI/boot/icons/os_kubuntu.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
data/refind/EFI/boot/icons/os_legacy.png
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
data/refind/EFI/boot/icons/os_linux.png
Normal file
After Width: | Height: | Size: 9.9 KiB |
BIN
data/refind/EFI/boot/icons/os_linuxmint.png
Normal file
After Width: | Height: | Size: 6.1 KiB |