351 changed files with 3447 additions and 4039 deletions
@ -1,73 +0,0 @@ |
|||
#!/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")"/iso |
|||
|
|||
set +u |
|||
if [ -z $OUTPUT ]; then |
|||
. $SCRIPT_DIR/linux-live/buildconfig || exit 1 |
|||
fi |
|||
set -u |
|||
. $SCRIPT_DIR/linux-live/minioslib || exit 1 |
|||
. $SCRIPT_DIR/linux-live/config || exit 1 |
|||
|
|||
# don't change! use ./install instead |
|||
UNATTENDED="1" |
|||
|
|||
CMD=(setup_host build_bootstrap build_chroot build_live build_modules build_iso) |
|||
|
|||
# ============= main ================ |
|||
|
|||
BUILD_DIR="" |
|||
|
|||
common_variables |
|||
|
|||
if [ -f /.dockerenv ] || [ "$container" = "podman" ]; then |
|||
new_run |
|||
fi |
|||
|
|||
console_colours |
|||
|
|||
allow_root_only |
|||
|
|||
create_livekitname_install_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}" |
@ -1,9 +1,8 @@ |
|||
#!/bin/bash |
|||
# Several packages need to be installed to use Dockerfile.py |
|||
# It creates a local container that you can use to build minios-live |
|||
apt install -y docker.io |
|||
apt update && apt install -y docker.io python3-pip |
|||
systemctl start docker |
|||
systemctl enable docker |
|||
apt install -y python3-pip |
|||
pip3 install pydocker |
|||
python3 ./Dockerfile.py |
@ -1,6 +1,3 @@ |
|||
#!/bin/bash |
|||
#docker run -d --name mlc --privileged -v /build:/build local/mlc /build/slax/autoinstall - |
|||
#docker run --rm -it --privileged -v /build:/build local/mlc /build/slax/autoinstall - |
|||
#docker run --rm -it --privileged -v /build:/build local/mlc /build/slax/autoinstall build_modules_chroot - |
|||
docker run -it --name mlc --privileged -v /build:/build local/mlc /build/minios-xfce/autoinstall build_modules - |
|||
#docker run -d --name mlc --privileged -v /build:/build local/mlc |
|||
docker run -d --name mlc --privileged -v /build:/build local/mlc |
|||
#docker run --rm -it --name mlc --privileged -v /build:/build local/mlc /build/minios-slax/install build_modules - |
|||
|
@ -0,0 +1,19 @@ |
|||
mc |
|||
bash-completion |
|||
zip |
|||
unzip |
|||
xz-utils |
|||
zstd |
|||
#liblz4-tool |
|||
lz4 |
|||
bzip2 |
|||
net-tools |
|||
psmisc |
|||
netcat |
|||
ssh |
|||
dnsmasq |
|||
wget |
|||
curl |
|||
openssh-server |
|||
#network-manager |
|||
cloud-init |
@ -1,3 +0,0 @@ |
|||
APT::Install-Recommends "0"; |
|||
APT::Install-Suggests "0"; |
|||
Acquire::Languages { "none"; } |
@ -1,140 +0,0 @@ |
|||
# ~/.bashrc: executed by bash(1) for non-login shells. |
|||
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) |
|||
# for examples |
|||
|
|||
# If not running interactively, don't do anything |
|||
case $- in |
|||
*i*) ;; |
|||
*) return;; |
|||
esac |
|||
|
|||
# don't put duplicate lines or lines starting with space in the history. |
|||
# See bash(1) for more options |
|||
HISTCONTROL=ignoreboth |
|||
|
|||
# append to the history file, don't overwrite it |
|||
shopt -s histappend |
|||
|
|||
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1) |
|||
HISTSIZE=1000 |
|||
HISTFILESIZE=2000 |
|||
|
|||
# check the window size after each command and, if necessary, |
|||
# update the values of LINES and COLUMNS. |
|||
shopt -s checkwinsize |
|||
|
|||
# If set, the pattern "**" used in a pathname expansion context will |
|||
# match all files and zero or more directories and subdirectories. |
|||
#shopt -s globstar |
|||
|
|||
# make less more friendly for non-text input files, see lesspipe(1) |
|||
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" |
|||
|
|||
# set variable identifying the chroot you work in (used in the prompt below) |
|||
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then |
|||
debian_chroot=$(cat /etc/debian_chroot) |
|||
fi |
|||
|
|||
# set a fancy prompt (non-color, unless we know we "want" color) |
|||
case "$TERM" in |
|||
xterm-color|*-256color) color_prompt=yes;; |
|||
esac |
|||
|
|||
# uncomment for a colored prompt, if the terminal has the capability; turned |
|||
# off by default to not distract the user: the focus in a terminal window |
|||
# should be on the output of commands, not on the prompt |
|||
#force_color_prompt=yes |
|||
|
|||
if [ -n "$force_color_prompt" ]; then |
|||
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then |
|||
# We have color support; assume it's compliant with Ecma-48 |
|||
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such |
|||
# a case would tend to support setf rather than setaf.) |
|||
color_prompt=yes |
|||
else |
|||
color_prompt= |
|||
fi |
|||
fi |
|||
|
|||
if [ "$color_prompt" = yes ]; then |
|||
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' |
|||
else |
|||
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' |
|||
fi |
|||
unset color_prompt force_color_prompt |
|||
|
|||
# If this is an xterm set the title to user@host:dir |
|||
case "$TERM" in |
|||
xterm*|rxvt*) |
|||
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" |
|||
;; |
|||
*) |
|||
;; |
|||
esac |
|||
|
|||
# enable color support of ls and also add handy aliases |
|||
if [ -x /usr/bin/dircolors ]; then |
|||
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" |
|||
alias ls='ls --color=auto' |
|||
#alias dir='dir --color=auto' |
|||
#alias vdir='vdir --color=auto' |
|||
|
|||
alias grep='grep --color=auto' |
|||
alias fgrep='fgrep --color=auto' |
|||
alias egrep='egrep --color=auto' |
|||
fi |
|||
|
|||
# colored GCC warnings and errors |
|||
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' |
|||
|
|||
# some more ls aliases |
|||
alias ll='ls -alF' |
|||
alias la='ls -A' |
|||
alias l='ls -CF' |
|||
|
|||
# Add an "alert" alias for long running commands. Use like so: |
|||
# sleep 10; alert |
|||
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' |
|||
|
|||
# Alias definitions. |
|||
# You may want to put all your additions into a separate file like |
|||
# ~/.bash_aliases, instead of adding them here directly. |
|||
# See /usr/share/doc/bash-doc/examples in the bash-doc package. |
|||
|
|||
if [ -f ~/.bash_aliases ]; then |
|||
. ~/.bash_aliases |
|||
fi |
|||
|
|||
# enable programmable completion features (you don't need to enable |
|||
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile |
|||
# sources /etc/bash.bashrc). |
|||
if ! shopt -oq posix; then |
|||
if [ -f /usr/share/bash-completion/bash_completion ]; then |
|||
. /usr/share/bash-completion/bash_completion |
|||
elif [ -f /etc/bash_completion ]; then |
|||
. /etc/bash_completion |
|||
fi |
|||
fi |
|||
|
|||
apt-get() |
|||
{ |
|||
if [ -e /var/cache/apt/pkgcache.bin ]; then |
|||
/usr/bin/apt-get "$@" |
|||
else |
|||
/usr/bin/apt-get update |
|||
/usr/bin/apt-get "$@" |
|||
fi |
|||
} |
|||
|
|||
apt() |
|||
{ |
|||
if [ -e /var/cache/apt/pkgcache.bin ]; then |
|||
/usr/bin/apt "$@" |
|||
else |
|||
/usr/bin/apt update |
|||
/usr/bin/apt "$@" |
|||
fi |
|||
} |
|||
|
|||
export -f apt-get |
|||
export -f apt |
@ -0,0 +1,54 @@ |
|||
#!/bin/bash |
|||
|
|||
TMP=/tmp/tmpfs$$ |
|||
CHANGES=$TMP/changes |
|||
UNION=$TMP/union |
|||
BUNDLES=/run/initramfs/memory/bundles/ |
|||
INSTALL="$1" |
|||
[ -n "$INSTALL" ] || exit |
|||
# In case multiple packages were specified on the command line. |
|||
INSTALL_ALL="$@" |
|||
|
|||
|
|||
mkdir -p $TMP |
|||
mount -t tmpfs tmpfs $TMP |
|||
mkdir -p $CHANGES |
|||
mkdir -p $UNION |
|||
|
|||
#Changed from aufs to overlay mounts for Slax 10. |
|||
#mount -t aufs -o xino=$TMP/.xino,trunc_xino,br=$CHANGES aufs $UNION |
|||
## I don't use chromium so filter it out. |
|||
#\ls -1d $BUNDLES[0-1]* | grep -v chromium | while read MOD; do |
|||
#mount -o remount,add:1:$BUNDLES/$(basename $MOD)=ro aufs $UNION |
|||
#done |
|||
LOWERS=$(\ls -1dr $BUNDLES[0-1]* | grep -v chromium | tr '\n' ':') |
|||
LOWERS=${LOWERS/%:/} |
|||
rm -rf $TMP/xino ; mkdir $TMP/xino |
|||
mount -t overlay -o lowerdir=$LOWERS,upperdir=$CHANGES,workdir=$TMP/xino overlay $UNION |
|||
|
|||
for d in boot dev proc sys tmp media mnt run; do |
|||
mkdir -p $UNION/$d |
|||
done |
|||
|
|||
chmod ugo+rwx $UNION/tmp |
|||
|
|||
mount --bind /dev $UNION/dev |
|||
mount --bind /proc $UNION/proc |
|||
mount --bind /sys $UNION/sys |
|||
|
|||
echo "apt-get update; apt-get install --yes $INSTALL_ALL" >$UNION/doit |
|||
chmod ugo+x $UNION/doit |
|||
cp /etc/resolv.conf $UNION/etc/ |
|||
chroot $UNION /doit |
|||
|
|||
umount $UNION/sys |
|||
umount $UNION/proc |
|||
umount $UNION/dev |
|||
rm $CHANGES/doit |
|||
rmdir $CHANGES/* 2>/dev/null |
|||
#cleanup.sh $CHANGES |
|||
savechanges /"$INSTALL".sb $CHANGES |
|||
|
|||
umount $UNION |
|||
umount $TMP |
|||
rmdir $TMP |
Binary file not shown.
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
@ -0,0 +1,42 @@ |
|||
set default="0" |
|||
set timeout="4" |
|||
set hidden_timeout_quiet=false |
|||
set gfxmode=auto |
|||
insmod efi_gop |
|||
insmod efi_uga |
|||
insmod gfxterm |
|||
terminal_output gfxterm |
|||
set color_normal=white/black |
|||
set color_highlight=black/white |
|||
loadfont /boot/grub/unicode.pf2 |
|||
background_image /boot/grub/bootlogo.png |
|||
|
|||
set default_settings="load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 consoleblank=0 apparmor=0 net.ifnames=0 biosdevname=0 quiet" |
|||
set perch_settings="minios.flags=perch" |
|||
set live_settings="minios.flags= " |
|||
set ram_settings="minios.flags=toram" |
|||
set console_settings="console=tty0 console=ttyS0,115200" |
|||
set debug_settings="load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 apparmor=0 debug net.ifnames=0 biosdevname=0" |
|||
set linux_64="/minios/boot/vmlinuz" |
|||
set initrd_img="/minios/boot/initrfs.img" |
|||
set default=0 |
|||
set message="Loading kernel and ramdisk..." |
|||
|
|||
menuentry "Run MiniOS (Persistent changes)"{ |
|||
echo $message |
|||
search --set -f $linux_64 |
|||
linux $linux_64 $default_settings $perch_settings |
|||
initrd $initrd_img |
|||
} |
|||
menuentry "Run MiniOS (Fresh start)"{ |
|||
echo $message |
|||
search --set -f $linux_64 |
|||
linux $linux_64 $default_settings $live_settings |
|||
initrd $initrd_img |
|||
} |
|||
menuentry "Run MiniOS (Copy to RAM)"{ |
|||
echo $message |
|||
search --set -f $linux_64 |
|||
linux $linux_64 $default_settings $ram_settings |
|||
initrd $initrd_img |
|||
} |
@ -0,0 +1,31 @@ |
|||
set default="0" |
|||
set timeout="3" |
|||
set hidden_timeout_quiet=false |
|||
set gfxmode=auto |
|||
insmod efi_gop |
|||
insmod efi_uga |
|||
insmod gfxterm |
|||
terminal_output gfxterm |
|||
set color_normal=black/black |
|||
set color_highlight=black/white |
|||
loadfont /boot/grub/unicode.pf2 |
|||
background_image /boot/grub/bootlogo.png |
|||
|
|||
set default_settings="load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 consoleblank=0 apparmor=0 net.ifnames=0 biosdevname=0 quiet" |
|||
set perch_settings="slax.flags=perch,automount" |
|||
set live_settings="slax.flags=automount" |
|||
set ram_settings="slax.flags=toram" |
|||
set http_settings="from=http://ch2.crims0n.ru:8080/minios-cloud-loader.iso" |
|||
set console_settings="console=tty0 console=ttyS0,115200" |
|||
set debug_settings="load_ramdisk=1 prompt_ramdisk=0 rw printk.time=0 apparmor=0 debug net.ifnames=0 biosdevname=0" |
|||
set linux_64="/minios/boot/vmlinuz" |
|||
set initrd_img="/minios/boot/initrfs.img" |
|||
set default=0 |
|||
set message="Loading kernel and ramdisk..." |
|||
|
|||
menuentry "MiniOS (Copy to RAM)"{ |
|||
echo $message |
|||
search --set -f $linux_64 |
|||
linux $linux_64 $default_settings $ram_settings $http_settings $console_settings |
|||
initrd $initrd_img |
|||
} |
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.
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.
@ -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.
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue