commit
b4bab6fd64
638 changed files with 8031 additions and 0 deletions
@ -0,0 +1 @@ |
|||
/built/test |
@ -0,0 +1 @@ |
|||
5 |
@ -0,0 +1,62 @@ |
|||
#!/bin/bash |
|||
|
|||
set -e # exit on error |
|||
set -o pipefail # exit on pipeline error |
|||
set -u # treat unset variable as error |
|||
|
|||
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" |
|||
PARENT_DIR="$(dirname "$SCRIPT_DIR")" |
|||
ISO_DIR="$(dirname "$SCRIPT_DIR")" |
|||
|
|||
. $SCRIPT_DIR/linux-live/minioslib || exit 1 |
|||
#. $SCRIPT_DIR/linux-live/installlib || exit 1 |
|||
. $SCRIPT_DIR/linux-live/config || exit 1 |
|||
|
|||
CMD=(setup_host build_bootstrap build_chroot build_live build_iso) |
|||
|
|||
# ============= main ================ |
|||
|
|||
BUILD_DIR="" |
|||
|
|||
common_variables |
|||
|
|||
console_colours |
|||
|
|||
allow_root_only |
|||
|
|||
create_livekitnameinstall_symlink |
|||
|
|||
create_completion |
|||
|
|||
create_backup |
|||
|
|||
# check number of args |
|||
if [[ $# == 0 || $# > 3 ]]; then help; fi |
|||
|
|||
# loop through args |
|||
dash_flag=false |
|||
start_index=0 |
|||
end_index=${#CMD[*]} |
|||
for ii in "$@"; do |
|||
if [[ $ii == "-" ]]; then |
|||
dash_flag=true |
|||
continue |
|||
fi |
|||
find_index $ii |
|||
if [[ $dash_flag == false ]]; then |
|||
start_index=$index |
|||
else |
|||
end_index=$(($index + 1)) |
|||
fi |
|||
done |
|||
if [[ $dash_flag == false ]]; then |
|||
end_index=$(($start_index + 1)) |
|||
fi |
|||
|
|||
#loop through the commands |
|||
for ((ii = $start_index; ii < $end_index; ii++)); do |
|||
setup_build_dir |
|||
${CMD[ii]} |
|||
done |
|||
|
|||
echo -e "${BOLD}${LIGHTYELLOW}$0${ENDCOLOUR} - ${LIGHTGREEN}Command completed successfully!${ENDCOLOUR}" |
@ -0,0 +1,54 @@ |
|||
# deb http://ru.archive.ubuntu.com/ubuntu/ bionic main restricted |
|||
|
|||
# deb http://ru.archive.ubuntu.com/ubuntu/ bionic-updates main restricted |
|||
# deb http://security.ubuntu.com/ubuntu bionic-security main restricted |
|||
|
|||
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to |
|||
# newer versions of the distribution. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ bionic main restricted |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ bionic main restricted |
|||
|
|||
## Major bug fix updates produced after the final release of the |
|||
## distribution. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ bionic-updates main restricted |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ bionic-updates main restricted |
|||
|
|||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu |
|||
## team. Also, please note that software in universe WILL NOT receive any |
|||
## review or updates from the Ubuntu security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ bionic universe |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ bionic universe |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ bionic-updates universe |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ bionic-updates universe |
|||
|
|||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu |
|||
## team, and may not be under a free licence. Please satisfy yourself as to |
|||
## your rights to use the software. Also, please note that software in |
|||
## multiverse WILL NOT receive any review or updates from the Ubuntu |
|||
## security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ bionic multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ bionic multiverse |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ bionic-updates multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ bionic-updates multiverse |
|||
|
|||
## N.B. software from this repository may not have been tested as |
|||
## extensively as that contained in the main release, although it includes |
|||
## newer versions of some applications which may provide useful features. |
|||
## Also, please note that software in backports WILL NOT receive any review |
|||
## or updates from the Ubuntu security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse |
|||
|
|||
## Uncomment the following two lines to add software from Canonical's |
|||
## 'partner' repository. |
|||
## This software is not part of Ubuntu, but is offered by Canonical and the |
|||
## respective vendors as a service to Ubuntu users. |
|||
# deb http://archive.canonical.com/ubuntu bionic partner |
|||
# deb-src http://archive.canonical.com/ubuntu bionic partner |
|||
|
|||
deb http://security.ubuntu.com/ubuntu bionic-security main restricted |
|||
# deb-src http://security.ubuntu.com/ubuntu bionic-security main restricted |
|||
deb http://security.ubuntu.com/ubuntu bionic-security universe |
|||
# deb-src http://security.ubuntu.com/ubuntu bionic-security universe |
|||
deb http://security.ubuntu.com/ubuntu bionic-security multiverse |
|||
# deb-src http://security.ubuntu.com/ubuntu bionic-security multiverse |
@ -0,0 +1,54 @@ |
|||
# deb http://ru.archive.ubuntu.com/ubuntu/ focal main restricted |
|||
|
|||
# deb http://ru.archive.ubuntu.com/ubuntu/ focal-updates main restricted |
|||
# deb http://security.ubuntu.com/ubuntu focal-security main restricted |
|||
|
|||
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to |
|||
# newer versions of the distribution. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ focal main restricted |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ focal main restricted |
|||
|
|||
## Major bug fix updates produced after the final release of the |
|||
## distribution. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ focal-updates main restricted |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ focal-updates main restricted |
|||
|
|||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu |
|||
## team. Also, please note that software in universe WILL NOT receive any |
|||
## review or updates from the Ubuntu security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ focal universe |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ focal universe |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ focal-updates universe |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ focal-updates universe |
|||
|
|||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu |
|||
## team, and may not be under a free licence. Please satisfy yourself as to |
|||
## your rights to use the software. Also, please note that software in |
|||
## multiverse WILL NOT receive any review or updates from the Ubuntu |
|||
## security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ focal multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ focal multiverse |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ focal-updates multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ focal-updates multiverse |
|||
|
|||
## N.B. software from this repository may not have been tested as |
|||
## extensively as that contained in the main release, although it includes |
|||
## newer versions of some applications which may provide useful features. |
|||
## Also, please note that software in backports WILL NOT receive any review |
|||
## or updates from the Ubuntu security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse |
|||
|
|||
## Uncomment the following two lines to add software from Canonical's |
|||
## 'partner' repository. |
|||
## This software is not part of Ubuntu, but is offered by Canonical and the |
|||
## respective vendors as a service to Ubuntu users. |
|||
# deb http://archive.canonical.com/ubuntu focal partner |
|||
# deb-src http://archive.canonical.com/ubuntu focal partner |
|||
|
|||
deb http://security.ubuntu.com/ubuntu focal-security main restricted |
|||
# deb-src http://security.ubuntu.com/ubuntu focal-security main restricted |
|||
deb http://security.ubuntu.com/ubuntu focal-security universe |
|||
# deb-src http://security.ubuntu.com/ubuntu focal-security universe |
|||
deb http://security.ubuntu.com/ubuntu focal-security multiverse |
|||
# deb-src http://security.ubuntu.com/ubuntu focal-security multiverse |
@ -0,0 +1,54 @@ |
|||
# deb http://ru.archive.ubuntu.com/ubuntu/ groovy main restricted |
|||
|
|||
# deb http://ru.archive.ubuntu.com/ubuntu/ groovy-updates main restricted |
|||
# deb http://security.ubuntu.com/ubuntu groovy-security main restricted |
|||
|
|||
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to |
|||
# newer versions of the distribution. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ groovy main restricted |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ groovy main restricted |
|||
|
|||
## Major bug fix updates produced after the final release of the |
|||
## distribution. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ groovy-updates main restricted |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ groovy-updates main restricted |
|||
|
|||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu |
|||
## team. Also, please note that software in universe WILL NOT receive any |
|||
## review or updates from the Ubuntu security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ groovy universe |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ groovy universe |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ groovy-updates universe |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ groovy-updates universe |
|||
|
|||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu |
|||
## team, and may not be under a free licence. Please satisfy yourself as to |
|||
## your rights to use the software. Also, please note that software in |
|||
## multiverse WILL NOT receive any review or updates from the Ubuntu |
|||
## security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ groovy multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ groovy multiverse |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ groovy-updates multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ groovy-updates multiverse |
|||
|
|||
## N.B. software from this repository may not have been tested as |
|||
## extensively as that contained in the main release, although it includes |
|||
## newer versions of some applications which may provide useful features. |
|||
## Also, please note that software in backports WILL NOT receive any review |
|||
## or updates from the Ubuntu security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ groovy-backports main restricted universe multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ groovy-backports main restricted universe multiverse |
|||
|
|||
## Uncomment the following two lines to add software from Canonical's |
|||
## 'partner' repository. |
|||
## This software is not part of Ubuntu, but is offered by Canonical and the |
|||
## respective vendors as a service to Ubuntu users. |
|||
# deb http://archive.canonical.com/ubuntu groovy partner |
|||
# deb-src http://archive.canonical.com/ubuntu groovy partner |
|||
|
|||
deb http://security.ubuntu.com/ubuntu groovy-security main restricted |
|||
# deb-src http://security.ubuntu.com/ubuntu groovy-security main restricted |
|||
deb http://security.ubuntu.com/ubuntu groovy-security universe |
|||
# deb-src http://security.ubuntu.com/ubuntu groovy-security universe |
|||
deb http://security.ubuntu.com/ubuntu groovy-security multiverse |
|||
# deb-src http://security.ubuntu.com/ubuntu groovy-security multiverse |
@ -0,0 +1,54 @@ |
|||
# deb http://ru.archive.ubuntu.com/ubuntu/ distro main restricted |
|||
|
|||
# deb http://ru.archive.ubuntu.com/ubuntu/ distro-updates main restricted |
|||
# deb http://security.ubuntu.com/ubuntu distro-security main restricted |
|||
|
|||
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to |
|||
# newer versions of the distribution. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ distro main restricted |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ distro main restricted |
|||
|
|||
## Major bug fix updates produced after the final release of the |
|||
## distribution. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ distro-updates main restricted |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ distro-updates main restricted |
|||
|
|||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu |
|||
## team. Also, please note that software in universe WILL NOT receive any |
|||
## review or updates from the Ubuntu security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ distro universe |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ distro universe |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ distro-updates universe |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ distro-updates universe |
|||
|
|||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu |
|||
## team, and may not be under a free licence. Please satisfy yourself as to |
|||
## your rights to use the software. Also, please note that software in |
|||
## multiverse WILL NOT receive any review or updates from the Ubuntu |
|||
## security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ distro multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ distro multiverse |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ distro-updates multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ distro-updates multiverse |
|||
|
|||
## N.B. software from this repository may not have been tested as |
|||
## extensively as that contained in the main release, although it includes |
|||
## newer versions of some applications which may provide useful features. |
|||
## Also, please note that software in backports WILL NOT receive any review |
|||
## or updates from the Ubuntu security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ distro-backports main restricted universe multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ distro-backports main restricted universe multiverse |
|||
|
|||
## Uncomment the following two lines to add software from Canonical's |
|||
## 'partner' repository. |
|||
## This software is not part of Ubuntu, but is offered by Canonical and the |
|||
## respective vendors as a service to Ubuntu users. |
|||
# deb http://archive.canonical.com/ubuntu distro partner |
|||
# deb-src http://archive.canonical.com/ubuntu distro partner |
|||
|
|||
deb http://security.ubuntu.com/ubuntu distro-security main restricted |
|||
# deb-src http://security.ubuntu.com/ubuntu distro-security main restricted |
|||
deb http://security.ubuntu.com/ubuntu distro-security universe |
|||
# deb-src http://security.ubuntu.com/ubuntu distro-security universe |
|||
deb http://security.ubuntu.com/ubuntu distro-security multiverse |
|||
# deb-src http://security.ubuntu.com/ubuntu distro-security multiverse |
@ -0,0 +1,54 @@ |
|||
# deb http://ru.archive.ubuntu.com/ubuntu/ trusty main restricted |
|||
|
|||
# deb http://ru.archive.ubuntu.com/ubuntu/ trusty-updates main restricted |
|||
# deb http://security.ubuntu.com/ubuntu trusty-security main restricted |
|||
|
|||
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to |
|||
# newer versions of the distribution. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ trusty main restricted |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ trusty main restricted |
|||
|
|||
## Major bug fix updates produced after the final release of the |
|||
## distribution. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ trusty-updates main restricted |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ trusty-updates main restricted |
|||
|
|||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu |
|||
## team. Also, please note that software in universe WILL NOT receive any |
|||
## review or updates from the Ubuntu security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ trusty universe |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ trusty universe |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ trusty-updates universe |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ trusty-updates universe |
|||
|
|||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu |
|||
## team, and may not be under a free licence. Please satisfy yourself as to |
|||
## your rights to use the software. Also, please note that software in |
|||
## multiverse WILL NOT receive any review or updates from the Ubuntu |
|||
## security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ trusty multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ trusty multiverse |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ trusty-updates multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ trusty-updates multiverse |
|||
|
|||
## N.B. software from this repository may not have been tested as |
|||
## extensively as that contained in the main release, although it includes |
|||
## newer versions of some applications which may provide useful features. |
|||
## Also, please note that software in backports WILL NOT receive any review |
|||
## or updates from the Ubuntu security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse |
|||
|
|||
## Uncomment the following two lines to add software from Canonical's |
|||
## 'partner' repository. |
|||
## This software is not part of Ubuntu, but is offered by Canonical and the |
|||
## respective vendors as a service to Ubuntu users. |
|||
# deb http://archive.canonical.com/ubuntu trusty partner |
|||
# deb-src http://archive.canonical.com/ubuntu trusty partner |
|||
|
|||
deb http://security.ubuntu.com/ubuntu trusty-security main restricted |
|||
# deb-src http://security.ubuntu.com/ubuntu trusty-security main restricted |
|||
deb http://security.ubuntu.com/ubuntu trusty-security universe |
|||
# deb-src http://security.ubuntu.com/ubuntu trusty-security universe |
|||
deb http://security.ubuntu.com/ubuntu trusty-security multiverse |
|||
# deb-src http://security.ubuntu.com/ubuntu trusty-security multiverse |
@ -0,0 +1,54 @@ |
|||
# deb http://ru.archive.ubuntu.com/ubuntu/ xenial main restricted |
|||
|
|||
# deb http://ru.archive.ubuntu.com/ubuntu/ xenial-updates main restricted |
|||
# deb http://security.ubuntu.com/ubuntu xenial-security main restricted |
|||
|
|||
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to |
|||
# newer versions of the distribution. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ xenial main restricted |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ xenial main restricted |
|||
|
|||
## Major bug fix updates produced after the final release of the |
|||
## distribution. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ xenial-updates main restricted |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ xenial-updates main restricted |
|||
|
|||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu |
|||
## team. Also, please note that software in universe WILL NOT receive any |
|||
## review or updates from the Ubuntu security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ xenial universe |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ xenial universe |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ xenial-updates universe |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ xenial-updates universe |
|||
|
|||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu |
|||
## team, and may not be under a free licence. Please satisfy yourself as to |
|||
## your rights to use the software. Also, please note that software in |
|||
## multiverse WILL NOT receive any review or updates from the Ubuntu |
|||
## security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ xenial multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ xenial multiverse |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ xenial-updates multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ xenial-updates multiverse |
|||
|
|||
## N.B. software from this repository may not have been tested as |
|||
## extensively as that contained in the main release, although it includes |
|||
## newer versions of some applications which may provide useful features. |
|||
## Also, please note that software in backports WILL NOT receive any review |
|||
## or updates from the Ubuntu security team. |
|||
deb http://ru.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse |
|||
# deb-src http://ru.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse |
|||
|
|||
## Uncomment the following two lines to add software from Canonical's |
|||
## 'partner' repository. |
|||
## This software is not part of Ubuntu, but is offered by Canonical and the |
|||
## respective vendors as a service to Ubuntu users. |
|||
# deb http://archive.canonical.com/ubuntu xenial partner |
|||
# deb-src http://archive.canonical.com/ubuntu xenial partner |
|||
|
|||
deb http://security.ubuntu.com/ubuntu xenial-security main restricted |
|||
# deb-src http://security.ubuntu.com/ubuntu xenial-security main restricted |
|||
deb http://security.ubuntu.com/ubuntu xenial-security universe |
|||
# deb-src http://security.ubuntu.com/ubuntu xenial-security universe |
|||
deb http://security.ubuntu.com/ubuntu xenial-security multiverse |
|||
# deb-src http://security.ubuntu.com/ubuntu xenial-security multiverse |
Binary file not shown.
Binary file not shown.
@ -0,0 +1,5 @@ |
|||
These uEFI binaries supply a work around for computers that do not like our binaries that bypass Secure boot. |
|||
You'll have to disable Secure Boot in BIOS to use these. |
|||
|
|||
Copy bootx64.efi and grubx64.efi files to EFI/boot. |
|||
Copy the folder x86_64-efi to boot/grub. |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,190 @@ |
|||
*acpi: acpi |
|||
*all_functional_test: functional_test |
|||
*background_image: gfxterm_background |
|||
*cat: cat |
|||
*cpuid: cpuid |
|||
*crc: hashsum |
|||
*cryptomount: cryptodisk |
|||
*echo: echo |
|||
*extract_syslinux_entries_configfile: syslinuxcfg |
|||
*extract_syslinux_entries_source: syslinuxcfg |
|||
*file: file |
|||
*functional_test: functional_test |
|||
*gettext: gettext |
|||
*hashsum: hashsum |
|||
*hdparm: hdparm |
|||
*hello: hello |
|||
*help: help |
|||
*hexdump: hexdump |
|||
*inb: iorw |
|||
*inl: iorw |
|||
*inw: iorw |
|||
*keystatus: keystatus |
|||
*kfreebsd: bsd |
|||
*knetbsd: bsd |
|||
*kopenbsd: bsd |
|||
*list_env: loadenv |
|||
*load_env: loadenv |
|||
*loopback: loopback |
|||
*ls: ls |
|||
*lsacpi: lsacpi |
|||
*lspci: lspci |
|||
*md5sum: hashsum |
|||
*menuentry: normal |
|||
*pcidump: pcidump |
|||
*probe: probe |
|||
*read_byte: memrw |
|||
*read_dword: memrw |
|||
*read_word: memrw |
|||
*regexp: regexp |
|||
*save_env: loadenv |
|||
*search: search |
|||
*serial: serial |
|||
*setpci: setpci |
|||
*sha1sum: hashsum |
|||
*sha256sum: hashsum |
|||
*sha512sum: hashsum |
|||
*sleep: sleep |
|||
*submenu: normal |
|||
*syslinux_configfile: syslinuxcfg |
|||
*syslinux_source: syslinuxcfg |
|||
*terminfo: terminfo |
|||
*test_blockarg: test_blockarg |
|||
*testspeed: testspeed |
|||
*tr: tr |
|||
*trust: verify |
|||
*verify_detached: verify |
|||
*xnu_splash: xnu |
|||
*zfskey: zfscrypt |
|||
.: configfile |
|||
[: test |
|||
appleloader: appleldr |
|||
authenticate: normal |
|||
background_color: gfxterm_background |
|||
backtrace: backtrace |
|||
badram: mmap |
|||
blocklist: blocklist |
|||
boot: boot |
|||
break: normal |
|||
cat: minicmd |
|||
cbmemc: cbmemc |
|||
chainloader: chain |
|||
clear: normal |
|||
cmp: cmp |
|||
configfile: configfile |
|||
continue: normal |
|||
coreboot_boottime: cbtime |
|||
cutmem: mmap |
|||
date: date |
|||
distrust: verify |
|||
dump: minicmd |
|||
eval: eval |
|||
exit: minicmd |
|||
export: normal |
|||
extract_entries_configfile: configfile |
|||
extract_entries_source: configfile |
|||
extract_legacy_entries_configfile: legacycfg |
|||
extract_legacy_entries_source: legacycfg |
|||
fakebios: loadbios |
|||
false: true |
|||
fix_video: fixvideo |
|||
fwsetup: efifwsetup |
|||
gptsync: gptsync |
|||
halt: halt |
|||
help: minicmd |
|||
hexdump_random: random |
|||
initrd16: linux16 |
|||
initrd: linux |
|||
initrdefi: linuxefi |
|||
keymap: keylayouts |
|||
kfreebsd_loadenv: bsd |
|||
kfreebsd_module: bsd |
|||
kfreebsd_module_elf: bsd |
|||
knetbsd_module: bsd |
|||
knetbsd_module_elf: bsd |
|||
kopenbsd_ramdisk: bsd |
|||
legacy_check_password: legacycfg |
|||
legacy_configfile: legacycfg |
|||
legacy_initrd: legacycfg |
|||
legacy_initrd_nounzip: legacycfg |
|||
legacy_kernel: legacycfg |
|||
legacy_password: legacycfg |
|||
legacy_source: legacycfg |
|||
linux16: linux16 |
|||
linux: linux |
|||
linuxefi: linuxefi |
|||
list_trusted: verify |
|||
loadbios: loadbios |
|||
loadfont: font |
|||
lscoreboot: cbls |
|||
lsefi: lsefi |
|||
lsefimmap: lsefimmap |
|||
lsefisystab: lsefisystab |
|||
lsfonts: font |
|||
lsmmap: lsmmap |
|||
lsmod: minicmd |
|||
lssal: lssal |
|||
macppcbless: macbless |
|||
mactelbless: macbless |
|||
module2: multiboot2 |
|||
module: multiboot |
|||
multiboot2: multiboot2 |
|||
multiboot: multiboot |
|||
nativedisk: nativedisk |
|||
net_add_addr: net |
|||
net_add_dns: net |
|||
net_add_route: net |
|||
net_bootp6: net |
|||
net_bootp: net |
|||
net_del_addr: net |
|||
net_del_dns: net |
|||
net_del_route: net |
|||
net_get_dhcp_option: net |
|||
net_ipv6_autoconf: net |
|||
net_ls_addr: net |
|||
net_ls_cards: net |
|||
net_ls_dns: net |
|||
net_ls_routes: net |
|||
net_nslookup: net |
|||
normal: normal |
|||
normal_exit: normal |
|||
outb: iorw |
|||
outl: iorw |
|||
outw: iorw |
|||
parttool: parttool |
|||
password: password |
|||
password_pbkdf2: password_pbkdf2 |
|||
play: play |
|||
read: read |
|||
reboot: reboot |
|||
return: normal |
|||
rmmod: minicmd |
|||
search.file: search_fs_file |
|||
search.fs_label: search_label |
|||
search.fs_uuid: search_fs_uuid |
|||
setparams: normal |
|||
shift: normal |
|||
source: configfile |
|||
terminal_input: terminal |
|||
terminal_output: terminal |
|||
test: test |
|||
testload: testload |
|||
time: time |
|||
true: true |
|||
usb: usbtest |
|||
videoinfo: videoinfo |
|||
videotest: videotest |
|||
write_byte: memrw |
|||
write_dword: memrw |
|||
write_word: memrw |
|||
xnu_devprop_load: xnu |
|||
xnu_kernel64: xnu |
|||
xnu_kernel: xnu |
|||
xnu_kext: xnu |
|||
xnu_kextdir: xnu |
|||
xnu_mkext: xnu |
|||
xnu_ramdisk: xnu |
|||
xnu_resume: xnu |
|||
xnu_uuid: xnu_uuid |
|||
zfs-bootfs: zfsinfo |
|||
zfsinfo: zfsinfo |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,45 @@ |
|||
RIJNDAEL: gcry_rijndael |
|||
RIJNDAEL192: gcry_rijndael |
|||
RIJNDAEL256: gcry_rijndael |
|||
AES128: gcry_rijndael |
|||
AES-128: gcry_rijndael |
|||
AES-192: gcry_rijndael |
|||
AES-256: gcry_rijndael |
|||
ADLER32: adler32 |
|||
CRC64: crc64 |
|||
ARCFOUR: gcry_arcfour |
|||
BLOWFISH: gcry_blowfish |
|||
CAMELLIA128: gcry_camellia |
|||
CAMELLIA192: gcry_camellia |
|||
CAMELLIA256: gcry_camellia |
|||
CAST5: gcry_cast5 |
|||
CRC32: gcry_crc |
|||
CRC32RFC1510: gcry_crc |
|||
CRC24RFC2440: gcry_crc |
|||
DES: gcry_des |
|||
3DES: gcry_des |
|||
DSA: gcry_dsa |
|||
IDEA: gcry_idea |
|||
MD4: gcry_md4 |
|||
MD5: gcry_md5 |
|||
RFC2268_40: gcry_rfc2268 |
|||
AES: gcry_rijndael |
|||
AES192: gcry_rijndael |
|||
AES256: gcry_rijndael |
|||
RIPEMD160: gcry_rmd160 |
|||
RSA: gcry_rsa |
|||
SEED: gcry_seed |
|||
SERPENT128: gcry_serpent |
|||
SERPENT192: gcry_serpent |
|||
SERPENT256: gcry_serpent |
|||
SHA1: gcry_sha1 |
|||
SHA224: gcry_sha256 |
|||
SHA256: gcry_sha256 |
|||
SHA512: gcry_sha512 |
|||
SHA384: gcry_sha512 |
|||
TIGER192: gcry_tiger |
|||
TIGER: gcry_tiger |
|||
TIGER2: gcry_tiger |
|||
TWOFISH: gcry_twofish |
|||
TWOFISH128: gcry_twofish |
|||
WHIRLPOOL: gcry_whirlpool |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,36 @@ |
|||
affs |
|||
afs |
|||
bfs |
|||
btrfs |
|||
cbfs |
|||
cpio |
|||
cpio_be |
|||
exfat |
|||
ext2 |
|||
fat |
|||
hfs |
|||
hfsplus |
|||
iso9660 |
|||
jfs |
|||
minix |
|||
minix2 |
|||
minix2_be |
|||
minix3 |
|||
minix3_be |
|||
minix_be |
|||
newc |
|||
nilfs2 |
|||
ntfs |
|||
odc |
|||
procfs |
|||
reiserfs |
|||
romfs |
|||
sfs |
|||
squash4 |
|||
tar |
|||
udf |
|||
ufs1 |
|||
ufs1_be |
|||
ufs2 |
|||
xfs |
|||
zfs |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue