30 changed files with 16248 additions and 493 deletions
@ -0,0 +1,45 @@
@@ -0,0 +1,45 @@
|
||||
- name: Create {{ iso.directory }} directory |
||||
become: yes |
||||
file: |
||||
path: "{{ iso.directory }}" |
||||
state: directory |
||||
|
||||
# - name: Download ISO images |
||||
# become: yes |
||||
# get_url: |
||||
# url: "{{ item.url }}" |
||||
# dest: "{{ item.filename }}" |
||||
# mode: 0644 |
||||
# timeout: 600 |
||||
# loop: "{{ iso.images }}" |
||||
# notify: Update GRUB |
||||
|
||||
- name: Download ISO images |
||||
become: yes |
||||
shell: > |
||||
wget -c "{{ item.url }}" -O "{{ item.filename }}" |
||||
loop: "{{ iso.images }}" |
||||
|
||||
- name: Set GRUB password |
||||
become: yes |
||||
template: |
||||
src: grub.d/07_passwd.j2 |
||||
dest: /etc/grub.d/07_passwd |
||||
mode: 0755 |
||||
notify: Update GRUB |
||||
|
||||
# - name: Get root partition UUID |
||||
# become: yes |
||||
# shell: findmnt -n -o UUID / |
||||
# register: root_partition_uuid |
||||
|
||||
- name: Configure custom GRUB records |
||||
become: yes |
||||
# vars: |
||||
# uuid: root_partition_uuid.stdout |
||||
template: |
||||
src: grub.d/40_custom.j2 |
||||
dest: /etc/grub.d/40_custom |
||||
mode: 0755 |
||||
notify: Update GRUB |
||||
|
@ -1,4 +1,4 @@
@@ -1,4 +1,4 @@
|
||||
# {{ ansible_managed }} |
||||
|
||||
consolefont="{{ system.console_font }}" |
||||
consolefont={{ system.console_font }} |
||||
|
||||
|
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
#!/bin/sh |
||||
#------------------------------------------------------------------------------ |
||||
# Modified Calculate Utilities 3.6.8.11 |
||||
# Processed template files: |
||||
# /var/db/repos/calculate/profiles/templates/3.6/2_ac_install_merge/sys-boot/grub/grub.d/07_passwd |
||||
# For modify this file, create /etc/grub.d/07_passwd.clt template. |
||||
#------------------------------------------------------------------------------ |
||||
# grub-mkconfig helper script. |
||||
# Copyright 2016 Calculate Ltd. http://www.calculate-linux.org |
||||
# |
||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||
# you may not use this file except in compliance with the License. |
||||
# You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
#cat <<EOF |
||||
#set superusers="root" |
||||
#password_pbkdf2 root grub.pbkdf2.sha512.25000.BFD71A43E85D2BA574CE79CF39E7BCB7F65E8B31E61C630C41688D512A85F07E8F518AD1DAFB5F2B05C098730E616CAD554A092104A09492B2F6DE3BC798D35A.C83E070EB40CA76A9C72CEEF02103DA3B58FF444AFB01E9EED3C89C4A61D8C74EE8EA15940A75A4AA4F04C19B9B1FB4400B601D99AC1FFC1F9D4AB08C1255778 |
||||
#export superusers |
||||
#EOF |
@ -0,0 +1,15 @@
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env bash |
||||
|
||||
exec tail -n +4 $0 |
||||
|
||||
menuentry 'System Rescue Live CD' { |
||||
set isofile='{{ iso.directory }}/systemrescuecd.iso' |
||||
|
||||
probe -s UUID -u $root |
||||
set imgdevpath="/dev/disk/by-uuid/$UUID" |
||||
|
||||
loopback loop $isofile |
||||
linux (loop)/sysresccd/boot/x86_64/vmlinuz archisobasedir=sysresccd img_dev=$imgdevpath img_loop=$isofile earlymodules=loop |
||||
initrd (loop)/sysresccd/boot/intel_ucode.img (loop)/sysresccd/boot/amd_ucode.img (loop)/sysresccd/boot/x86_64/sysresccd.img |
||||
} |
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
# {{ ansible_managed }} |
||||
|
||||
{% for module in modules %} |
||||
blacklist {{ module }} |
||||
{% endfor %} |
||||
|
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
LDLAGS="-fno-lto -fno-use-linker-plugin -fuse-ld=bfd" |
||||
CFLAGS="-march=native -O2 -pipe -Wno-all -fno-lto -fno-use-linker-plugin -fuse-ld=bfd" |
||||
CXXFLAGS="${CFLAGS} -fno-lto -fno-use-linker-plugin -fuse-ld=bfd" |
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
LDLAGS="${CFLAGS} -fno-lto -fno-use-linker-plugin" |
||||
CFLAGS="${CFLAGS} -fno-lto -fno-use-linker-plugin" |
||||
CXXFLAGS="${CFLAGS} -fno-lto -fno-use-linker-plugin" |
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
PORTAGE_TMPDIR="/var/tmp/notmpfs" |
||||
LDLAGS="-fno-lto -fno-use-linker-plugin -fuse-ld=bfd" |
||||
LD=ld.bfd |
||||
CFLAGS="-march=native -O2 -pipe -Wno-all -fno-lto -fno-use-linker-plugin -fuse-ld=bfd" |
||||
CXXFLAGS="${CFLAGS} -fno-lto -fno-use-linker-plugin -fuse-ld=bfd" |
||||
|
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
{% for package in item.packages %} |
||||
{{ package }} {{ item.template }} |
||||
{% endfor %} |
@ -0,0 +1,317 @@
@@ -0,0 +1,317 @@
|
||||
# Global OpenRC configuration settings |
||||
# |
||||
# {{ ansible_managed }} |
||||
# |
||||
|
||||
# Set to "YES" if you want the rc system to try and start services |
||||
# in parallel for a slight speed improvement. When running in parallel we |
||||
# prefix the service output with its name as the output will get |
||||
# jumbled up. |
||||
# WARNING: whilst we have improved parallel, it can still potentially lock |
||||
# the boot process. Don't file bugs about this unless you can supply |
||||
# patches that fix it without breaking other things! |
||||
rc_parallel="YES" |
||||
|
||||
# Set rc_interactive to "YES" and you'll be able to press the I key during |
||||
# boot so you can choose to start specific services. Set to "NO" to disable |
||||
# this feature. This feature is automatically disabled if rc_parallel is |
||||
# set to YES. |
||||
#rc_interactive="YES" |
||||
|
||||
# If we need to drop to a shell, you can specify it here. |
||||
# If not specified we use $SHELL, otherwise the one specified in /etc/passwd, |
||||
# otherwise /bin/sh |
||||
# Linux users could specify /sbin/sulogin |
||||
#rc_shell=/bin/sh |
||||
|
||||
# Do we allow any started service in the runlevel to satisfy the dependency |
||||
# or do we want all of them regardless of state? For example, if net.eth0 |
||||
# and net.eth1 are in the default runlevel then with rc_depend_strict="NO" |
||||
# both will be started, but services that depend on 'net' will work if either |
||||
# one comes up. With rc_depend_strict="YES" we would require them both to |
||||
# come up. |
||||
#rc_depend_strict="YES" |
||||
|
||||
# rc_hotplug controls which services we allow to be hotplugged. |
||||
# A hotplugged service is one started by a dynamic dev manager when a matching |
||||
# hardware device is found. |
||||
# Hotplugged services appear in the "hotplugged" runlevel. |
||||
# If rc_hotplug is set to any value, we compare the name of this service |
||||
# to every pattern in the value, from left to right, and we allow the |
||||
# service to be hotplugged if it matches a pattern, or if it matches no |
||||
# patterns. Patterns can include shell wildcards. |
||||
# To disable services from being hotplugged, prefix patterns with "!". |
||||
#If rc_hotplug is not set or is empty, all hotplugging is disabled. |
||||
# Example - rc_hotplug="net.wlan !net.*" |
||||
# This allows net.wlan and any service not matching net.* to be hotplugged. |
||||
# Example - rc_hotplug="!net.*" |
||||
# This allows services that do not match "net.*" to be hotplugged. |
||||
|
||||
# rc_logger launches a logging daemon to log the entire rc process to |
||||
# /var/log/rc.log |
||||
# NOTE: Linux systems require the devfs service to be started before |
||||
# logging can take place and as such cannot log the sysinit runlevel. |
||||
#rc_logger="NO" |
||||
|
||||
# Through rc_log_path you can specify a custom log file. |
||||
# The default value is: /var/log/rc.log |
||||
#rc_log_path="/var/log/rc.log" |
||||
|
||||
# If you want verbose output for OpenRC, set this to yes. If you want |
||||
# verbose output for service foo only, set it to yes in /etc/conf.d/foo. |
||||
#rc_verbose=no |
||||
|
||||
# By default we filter the environment for our running scripts. To allow other |
||||
# variables through, add them here. Use a * to allow all variables through. |
||||
#rc_env_allow="VAR1 VAR2" |
||||
|
||||
# By default we assume that all daemons will start correctly. |
||||
# However, some do not - a classic example is that they fork and return 0 AND |
||||
# then child barfs on a configuration error. Or the daemon has a bug and the |
||||
# child crashes. You can set the number of milliseconds start-stop-daemon |
||||
# waits to check that the daemon is still running after starting here. |
||||
# The default is 0 - no checking. |
||||
#rc_start_wait=100 |
||||
|
||||
# rc_nostop is a list of services which will not stop when changing runlevels. |
||||
# This still allows the service itself to be stopped when called directly. |
||||
#rc_nostop="" |
||||
|
||||
# rc will attempt to start crashed services by default. |
||||
# However, it will not stop them by default as that could bring down other |
||||
# critical services. |
||||
#rc_crashed_stop=NO |
||||
#rc_crashed_start=YES |
||||
|
||||
# Set rc_nocolor to yes if you do not want colors displayed in OpenRC |
||||
# output. |
||||
#rc_nocolor=NO |
||||
|
||||
############################################################################## |
||||
# MISC CONFIGURATION VARIABLES |
||||
# There variables are shared between many init scripts |
||||
|
||||
# Set unicode to YES to turn on unicode support for keyboards and screens. |
||||
unicode="YES" |
||||
|
||||
# This is how long fuser should wait for a remote server to respond. The |
||||
# default is 60 seconds, but it can be adjusted here. |
||||
#rc_fuser_timeout=60 |
||||
|
||||
# Below is the default list of network fstypes. |
||||
# |
||||
# afs ceph cifs coda davfs fuse fuse.sshfs gfs glusterfs lustre ncpfs |
||||
# nfs nfs4 ocfs2 shfs smbfs |
||||
# |
||||
# If you would like to add to this list, you can do so by adding your |
||||
# own fstypes to the following variable. |
||||
#extra_net_fs_list="" |
||||
|
||||
############################################################################## |
||||
# SERVICE CONFIGURATION VARIABLES |
||||
# These variables are documented here, but should be configured in |
||||
# /etc/conf.d/foo for service foo and NOT enabled here unless you |
||||
# really want them to work on a global basis. |
||||
# If your service has characters in its name which are not legal in |
||||
# shell variable names and you configure the variables for it in this |
||||
# file, those characters should be replaced with underscores in the |
||||
# variable names as shown below. |
||||
|
||||
# Some daemons are started and stopped via start-stop-daemon. |
||||
# We can set some things on a per service basis, like the nicelevel. |
||||
#SSD_NICELEVEL="-19" |
||||
# Or the ionice level. The format is class[:data] , just like the |
||||
# --ionice start-stop-daemon parameter. |
||||
#SSD_IONICELEVEL="2:2" |
||||
|
||||
# Pass ulimit parameters |
||||
# If you are using bash in POSIX mode for your shell, note that the |
||||
# ulimit command uses a block size of 512 bytes for the -c and -f |
||||
# options |
||||
#rc_ulimit="-u 30" |
||||
|
||||
# It's possible to define extra dependencies for services like so |
||||
#rc_config="/etc/foo" |
||||
#rc_need="openvpn" |
||||
#rc_use="net.eth0" |
||||
#rc_after="clock" |
||||
#rc_before="local" |
||||
#rc_provide="!net" |
||||
|
||||
# You can also enable the above commands here for each service. Below is an |
||||
# example for service foo. |
||||
#rc_foo_config="/etc/foo" |
||||
#rc_foo_need="openvpn" |
||||
#rc_foo_after="clock" |
||||
|
||||
# Below is an example for service foo-bar. Note that the '-' is illegal |
||||
# in a shell variable name, so we convert it to an underscore. |
||||
# example for service foo-bar. |
||||
#rc_foo_bar_config="/etc/foo-bar" |
||||
#rc_foo_bar_need="openvpn" |
||||
#rc_foo_bar_after="clock" |
||||
|
||||
# You can also remove dependencies. |
||||
# This is mainly used for saying which services do NOT provide net. |
||||
#rc_net_tap0_provide="!net" |
||||
|
||||
# This is the subsystem type. |
||||
# It is used to match against keywords set by the keyword call in the |
||||
# depend function of service scripts. |
||||
# |
||||
# It should be set to the value representing the environment this file is |
||||
# PRESENTLY in, not the virtualization the environment is capable of. |
||||
# If it is commented out, automatic detection will be used. |
||||
# |
||||
# The list below shows all possible settings as well as the host |
||||
# operating systems where they can be used and autodetected. |
||||
# |
||||
# "" - nothing special |
||||
# "docker" - Docker container manager (Linux) |
||||
# "jail" - Jail (DragonflyBSD or FreeBSD) |
||||
# "lxc" - Linux Containers |
||||
# "openvz" - Linux OpenVZ |
||||
# "prefix" - Prefix |
||||
# "rkt" - CoreOS container management system (Linux) |
||||
# "subhurd" - Hurd subhurds (to be checked) |
||||
# "systemd-nspawn" - Container created by systemd-nspawn (Linux) |
||||
# "uml" - Usermode Linux |
||||
# "vserver" - Linux vserver |
||||
# "xen0" - Xen0 Domain (Linux and NetBSD) |
||||
# "xenU" - XenU Domain (Linux and NetBSD) |
||||
#rc_sys="" |
||||
|
||||
# if you use openrc-init, which is currently only available on Linux, |
||||
# this is the default runlevel to activate after "sysinit" and "boot" |
||||
# when booting. |
||||
#rc_default_runlevel="default" |
||||
|
||||
# on Linux and Hurd, this is the number of ttys allocated for logins |
||||
# It is used in the consolefont, keymaps, numlock and termencoding |
||||
# service scripts. |
||||
rc_tty_number=12 |
||||
|
||||
############################################################################## |
||||
# LINUX CGROUPS RESOURCE MANAGEMENT |
||||
|
||||
# This sets the mode used to mount cgroups. |
||||
# "hybrid" mounts cgroups version 2 on /sys/fs/cgroup/unified and |
||||
# cgroups version 1 on /sys/fs/cgroup. |
||||
# "legacy" mounts cgroups version 1 on /sys/fs/cgroup |
||||
# "unified" mounts cgroups version 2 on /sys/fs/cgroup |
||||
#rc_cgroup_mode="hybrid" |
||||
|
||||
# This is a list of controllers which should be enabled for cgroups version 2. |
||||
# If hybrid mode is being used, controllers listed here will not be |
||||
# available for cgroups version 1. |
||||
# This is a global setting. |
||||
#rc_cgroup_controllers="" |
||||
|
||||
# This variable contains the cgroups version 2 settings for your services. |
||||
# If this is set in this file, the settings will apply to all services. |
||||
# If you want different settings for each service, place the settings in |
||||
# /etc/conf.d/foo for service foo. |
||||
# The format is to specify the setting and value followed by a newline. |
||||
# Multiple settings and values can be specified. |
||||
# For example, you would use this to set the maximum memory and maximum |
||||
# number of pids for a service. |
||||
#rc_cgroup_settings=" |
||||
#memory.max 10485760 |
||||
#pids.max max |
||||
#" |
||||
# |
||||
# For more information about the adjustments that can be made with |
||||
# cgroups version 2, see Documentation/cgroups-v2.txt in the linux kernel |
||||
# source tree. |
||||
#rc_cgroup_settings="" |
||||
|
||||
# This switch controls whether or not cgroups version 1 controllers are |
||||
# individually mounted under |
||||
# /sys/fs/cgroup in hybrid or legacy mode. |
||||
#rc_controller_cgroups="YES" |
||||
|
||||
# The following setting turns on the memory.use_hierarchy setting in the |
||||
# root memory cgroup for cgroups v1. |
||||
# It must be set to yes in this file if you want this functionality. |
||||
#rc_cgroup_memory_use_hierarchy="NO" |
||||
|
||||
# The following settings allow you to set up values for the cgroups version 1 |
||||
# controllers for your services. |
||||
# They can be set in this file;, however, if you do this, the settings |
||||
# will apply to all of your services. |
||||
# If you want different settings for each service, place the settings in |
||||
# /etc/conf.d/foo for service foo. |
||||
# The format is to specify the names of the settings followed by their |
||||
# values. Each variable can hold multiple settings. |
||||
# For example, you would use this to set the cpu.shares setting in the |
||||
# cpu controller to 512 for your service. |
||||
# rc_cgroup_cpu=" |
||||
# cpu.shares 512 |
||||
# " |
||||
# |
||||
# For more information about the adjustments that can be made with |
||||
# cgroups version 1, see Documentation/cgroups-v1/* in the linux kernel |
||||
# source tree. |
||||
|
||||
# Set the blkio controller settings for this service. |
||||
#rc_cgroup_blkio="" |
||||
|
||||
# Set the cpu controller settings for this service. |
||||
#rc_cgroup_cpu="" |
||||
|
||||
# Add this service to the cpuacct controller (any value means yes). |
||||
#rc_cgroup_cpuacct="" |
||||
|
||||
# Set the cpuset controller settings for this service. |
||||
#rc_cgroup_cpuset="" |
||||
|
||||
# Set the devices controller settings for this service. |
||||
#rc_cgroup_devices="" |
||||
|
||||
# Set the hugetlb controller settings for this service. |
||||
#rc_cgroup_hugetlb="" |
||||
|
||||
# Set the memory controller settings for this service. |
||||
#rc_cgroup_memory="" |
||||
|
||||
# Set the net_cls controller settings for this service. |
||||
#rc_cgroup_net_cls="" |
||||
|
||||
# Set the net_prio controller settings for this service. |
||||
#rc_cgroup_net_prio="" |
||||
|
||||
# Set the pids controller settings for this service. |
||||
#rc_cgroup_pids="" |
||||
|
||||
# Set this to YES if you want all of the processes in a service's cgroup |
||||
# killed when the service is stopped or restarted. |
||||
# Be aware that setting this to yes means all of a service's |
||||
# child processes will be killed. Keep this in mind if you set this to |
||||
# yes here instead of for the individual services in |
||||
# /etc/conf.d/<service>. |
||||
# To perform this cleanup manually for a stopped service, you can |
||||
# execute cgroup_cleanup with /etc/init.d/<service> cgroup_cleanup or |
||||
# rc-service <service> cgroup_cleanup. |
||||
# The process followed in this cleanup is the following: |
||||
# 1. send stopsig (sigterm if it isn't set) to all processes left in the |
||||
# cgroup immediately followed by sigcont. |
||||
# 2. Send sighup to all processes in the cgroup if rc_send_sighup is |
||||
# yes. |
||||
# 3. delay for rc_timeout_stopsec seconds. |
||||
# 4. send sigkill to all processes in the cgroup unless disabled by |
||||
# setting rc_send_sigkill to no. |
||||
# rc_cgroup_cleanup="NO" |
||||
|
||||
# If this is yes, we will send sighup to the processes in the cgroup |
||||
# immediately after stopsig and sigcont. |
||||
#rc_send_sighup="NO" |
||||
|
||||
# This is the amount of time in seconds that we delay after sending sigcont |
||||
# and optionally sighup, before we optionally send sigkill to all |
||||
# processes in the # cgroup. |
||||
# The default is 90 seconds. |
||||
#rc_timeout_stopsec="90" |
||||
|
||||
# If this is set to no, we do not send sigkill to all processes in the |
||||
# cgroup. |
||||
#rc_send_sigkill="YES" |
@ -0,0 +1,10 @@
@@ -0,0 +1,10 @@
|
||||
# |
||||
# $ lspci -k |
||||
# |
||||
# https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi |
||||
# |
||||
|
||||
iwlwifi-Qu-b0-hr-b0-48.ucode |
||||
iwlwifi-Qu-b0-jf-b0-48.ucode |
||||
iwlwifi-Qu-c0-hr-b0-48.ucode |
||||
iwlwifi-Qu-c0-jf-b0-48.ucode |
@ -0,0 +1,104 @@
@@ -0,0 +1,104 @@
|
||||
Section "ServerLayout" |
||||
Identifier "Layout0" |
||||
Screen 0 "Screen0" 0 0 |
||||
Screen 1 "Screen1" RightOf "Screen0" |
||||
InputDevice "Keyboard0" "CoreKeyboard" |
||||
InputDevice "Mouse0" "CorePointer" |
||||
Option "Xinerama" "0" |
||||
EndSection |
||||
|
||||
Section "Module" |
||||
Load "dri" |
||||
Load "i2c" |
||||
Load "bitmap" |
||||
Load "ddc" |
||||
Load "int10" |
||||
Load "vbe" |
||||
Load "glx" # OpenGL X protocol interface |
||||
Load "extmod" # Misc. required extension |
||||
EndSection |
||||
|
||||
Section "InputDevice" |
||||
Identifier "Keyboard0" |
||||
Driver "kbd" |
||||
EndSection |
||||
|
||||
Section "InputDevice" |
||||
Identifier "Mouse0" |
||||
Driver "mouse" |
||||
Option "Protocol" "IMPS/2" |
||||
Option "Device" "/dev/psaux" |
||||
Option "Emulate3Buttons" "no" |
||||
Option "ZAxisMapping" "4 5" |
||||
EndSection |
||||
|
||||
Section "Monitor" |
||||
Identifier "eDP1" |
||||
VendorName "Monitor Vendor" |
||||
ModelName "Monitor Model" |
||||
Option "Primary" "true" |
||||
Option "PreferredMode" "1920x1080" |
||||
Option "DPMS" |
||||
EndSection |
||||
|
||||
Section "Monitor" |
||||
Identifier "DP1" |
||||
VendorName "Monitor Vendor" |
||||
ModelName "Monitor Model" |
||||
Option "Below" "eDP1" |
||||
Option "PreferredMode" "1920x515" |
||||
Option "DPMS" |
||||
EndSection |
||||
|
||||
Section "Device" |
||||
Identifier "Card0" |
||||
Driver "intel" |
||||
# Option "DRI" "2" |
||||
Option "DRI" "False" |
||||
BusID "PCI:0:2:0" |
||||
#Screen 0 |
||||
EndSection |
||||
|
||||
Section "Device" |
||||
Identifier "Card1" |
||||
Driver "intel" |
||||
#Driver "nouveau" |
||||
BusID "PCI:2:0:0" |
||||
#BusID "PCI:0:2:0" |
||||
#Screen 1 |
||||
EndSection |
||||
|
||||
Section "Screen" |
||||
Identifier "Screen0" |
||||
Device "Card0" |
||||
Monitor "eDP1" |
||||
DefaultDepth 24 |
||||
#Option "AutoServerLayout" "on" |
||||
#Option "AccelMethod" "sna" |
||||
Option "TearFree" "on" |
||||
Option "eDP1" "eDP1" |
||||
Option "ZaphodHeads" "eDP1" |
||||
SubSection "Display" |
||||
Viewport 0 0 |
||||
Depth 24 |
||||
Modes "1920x1080" |
||||
EndSubSection |
||||
EndSection |
||||
|
||||
Section "Screen" |
||||
Identifier "Screen1" |
||||
Device "Card1" |
||||
Monitor "DP1" |
||||
DefaultDepth 24 |
||||
#Option "AutoServerLayout" "on" |
||||
#Option "AccelMethod" "sna" |
||||
Option "TearFree" "on" |
||||
Option "DP1" "DP1" |
||||
Option "ZaphodHeads" "DP1" |
||||
SubSection "Display" |
||||
Viewport 0 0 |
||||
Depth 24 |
||||
Modes "1920x515" |
||||
EndSubSection |
||||
EndSection |
||||
|
@ -0,0 +1,375 @@
@@ -0,0 +1,375 @@
|
||||
use: |
||||
disabled: |
||||
# - ppp |
||||
# - gif |
||||
# - tiff |
||||
# - gphoto2 # Add digital camera support |
||||
# - libnotify |
||||
# - mplayer |
||||
# - mp3 |
||||
# - gtk # Add support for x11-libs/gtk |
||||
# - v4l2 # Include Video4Linux v2 support in the build |
||||
# - webp # Add support for the WebP image format |
||||
# - aes |
||||
# - amd64 |
||||
# - avi |
||||
# - dftk |
||||
# - fma3 |
||||
# - fma4 |
||||
# - libwww |
||||
# - lm-sensors |
||||
# - upower |
||||
# - libglvnd #Use media-libs/libglvnd for dispatch |
||||
# - id3tag #Enables ID3 tagging with id3tag library |
||||
# - openexr #Support for the OpenEXR graphics file format |
||||
# - logrotate #Use app-admin/logrotate for rotating logs rather than custom cron scripts |
||||
# - gadu #Enable the Gadu protocol handler. |
||||
# - xvid #Add support for xvid.org |
||||
# - dv #Enable support for a codec used by many camcorders |
||||
# - wimax #Add support for Wimax EAP-PEER authentication algorithm |
||||
# - xinerama #Add support for querying multi-monitor screen geometry through the Xinerama API |
||||
# - foomaticdb |
||||
# - x264 #Enable h264 encoding using x264 |
||||
# - x265 #Enable h265 encoding using x265 |
||||
# - imagemagick #Enable optional support for the ImageMagick or GraphicsMagick image converter |
||||
# - iconv #Enable support for the iconv character set conversion library |
||||
# - mpeg #Add libmpeg3 support to various packages |
||||
# - xv #Add in optional support for the Xvideo extension (an X API for video playback) |
||||
# - mimap |
||||
# - opencore-amr |
||||
# - padlock |
||||
# - real |
||||
# - userlocales |
||||
# - win32codecs |
||||
# - cli # Enable sample cli based on readline |
||||
# - xanim |
||||
# - smtp |
||||
# - usb |
||||
# - spell |
||||
# - dvdr |
||||
# - dvdread |
||||
# - vhosts |
||||
# - vcd |
||||
# - taglib |
||||
# - xop |
||||
# - semantic-desktop |
||||
# - css |
||||
# - ebook |
||||
# - ftp |
||||
# - hunspell |
||||
# - ipod |
||||
# - flash |
||||
# - ncurses |
||||
# - oggvorbis |
||||
# - oscar |
||||
# - faac |
||||
# - exif |
||||
# - djvu |
||||
# - fexif |
||||
# - imap # Add support for IMAP (Internet Mail Application Protocol). |
||||
# - xattr # Add support for extended attributes (filesystem-stored metadata) |
||||
# - 32bit |
||||
# - nouveau |
||||
# - a52 # Enable support for decoding ATSC A/52 streams used in DVD. |
||||
# - aac # Enable support for MPEG-4 AAC Audio. |
||||
# - acl # Add support for Access Control Lists. |
||||
# - ada |
||||
# - apparmor |
||||
# - arts |
||||
# - audacious |
||||
# - bash-completion |
||||
# - bcrypt |
||||
# - berkdb # Add support for sys-libs/db (Berkeley DB for MySQL). |
||||
# - bidi # Enable bidirectional language support. |
||||
# - blink |
||||
# - bluetooth # Enable Bluetooth Support. |
||||
# - bluray |
||||
# - boost |
||||
# - btrfs # containerd, docker: Support for BTRFS snapshot driver. |
||||
# - caps # Use Linux capabilities library to control privilege. |
||||
# - cdda # Add Compact Disk Digital Audio (Standard Audio CD) support. |
||||
# - cddb # Access cddb servers to retrieve and submit information about compact disks. |
||||
# - cdio |
||||
# - cdparanoia |
||||
# - cdrkit |
||||
# - cgi # Add CGI script support. |
||||
# - cgroups |
||||
# - chm |
||||
# - chromecast |
||||
# - chromium |
||||
# - client |
||||
# - cmus |
||||
# - consolekit |
||||
# - container-init |
||||
# - cue |
||||
# - cups # Add support for CUPS (Common Unix Printing System). |
||||
# - cvs # Enable CVS (Concurrent Versions System) integration. |
||||
# - darcs |
||||
# - dbm # Add support for generic DBM databases. |
||||
# - dbmmaker |
||||
# - dbus # Enable dbus support for anything that needs it (gpsd, gnomemeeting, etc). |
||||
# - debug # Enable extra debug codepaths, like asserts and extra output. |
||||
# - desktop |
||||
# - device-mapper # Enable support for device-mapper from sys-fs/lvm2 |
||||
# - dga # Add DGA (Direct Graphic Access) support for X. |
||||
# - directx |
||||
# - doc # Add extra documentation (API, Javadoc, etc). |
||||
# - doctool |
||||
# - dvbpsi |
||||
# - dvd # Add support for DVDs. |
||||
# - dvdnav |
||||
# - eds # Enable support for Evolution-Data-Server (EDS). |
||||
# - emacs # Add support for GNU Emacs. |
||||
# - emoji |
||||
# - epydoc |
||||
# - equalizer |
||||
# - esd |
||||
# - ethernet |
||||
# - eve |
||||
# - examples # Install examples, usually source code. |
||||
# - fax |
||||
# - ffmpeg # Enable ffmpeg/libav-based audio/video codec support. |
||||
# - flac # Add support for FLAC: Free Lossless Audio Codec. |
||||
# - foomatic |
||||
# - fortran # Add support for fortran. |
||||
# - gdbm # Add support for sys-libs/gdbm (GNU database libraries). |
||||
# - geoip # Add geoip support for country and city lookup based on IPs. |
||||
# - geoloc |
||||
# - ghostscript |
||||
# - glamor |
||||
# - gnome # Add GNOME support. |
||||
# - gnome-keyring # Add GNOME support. |
||||
# - gpg |
||||
# - gpgme |
||||
# - gpm # Add support for sys-libs/gpm (Console-based mouse driver). |
||||
# - gstreamer # Add support for media-libs/gstreamer (Streaming media). |
||||
# - gtk-doc # Add support for x11-libs/gtk+ (The GIMP Toolkit). |
||||
# - guile # Add support for the guile Scheme interpreter. |
||||
# - handbook # Enable handbooks generation for packages by KDE. |
||||
# - hangouts |
||||
# - hcache |
||||
# - ieee1394 # Enable FireWire/iLink IEEE1394 support (dv, camera, ...). |
||||
# - inifile |
||||
# - install |
||||
# - introspection # Add support for GObject based introspection. |
||||
# - ios # Enable support for Apple's iDevice with iOS operating system (iPad, iPhone, iPod, etc). |
||||
# - ipv6 # Add support for IP version 6. |
||||
# - irc |
||||
# - jabber |
||||
# - jack # Add support for the JACK Audio Connection Kit. |
||||
# - java # Add support for Java. |
||||
# - joystick # Add support for joysticks in all packages. |
||||
# - kde # Add support for software made by KDE, a free software community. |
||||
# - kerberos # Add kerberos support. |
||||
# - l2tp |
||||
# - lame # Prefer using LAME libraries for MP3 encoding support. |
||||
# - lastfm |
||||
# - latex # Add support for LaTeX (typesetting package). |
||||
# - ldap # Add LDAP support (Lightweight Directory Access Protocol). |
||||
# - libass # SRT/SSA/ASS (SubRip / SubStation Alpha) subtitle support. |
||||
# - libcaca # Add support for colored ASCII-art graphics. |
||||
# - libproxy |
||||
# - lirc # Add support for lirc (Linuxs Infra-Red Remote Control). |
||||
# - live |
||||
# - lua # Enable Lua scripting support. |
||||
# - matroska # Add support for the matroska container format (extensions .mkv, .mka and .mks). |
||||
# - mikmod # Трекерная музыка. Add libmikmod support to allow playing of SoundTracker-style music files. |
||||
# - modemmanager |
||||
# - mono # Build Mono bindings to support dotnet type stuff. |
||||
# - mp4 # Support for MP4 container format. |
||||
# - multilib # On 64bit systems, if you want to be able to compile 32bit and 64bit binaries. |
||||
# - musepack # Enable support for the musepack audio codec. |
||||
# - native-headset |
||||
# - networkmanager # Enable net-misc/networkmanager support. |
||||
# - nfs |
||||
# - ntfsdecrypt |
||||
# - ntp |
||||
# - nvidia |
||||
# - ofono |
||||
# - ofono-headset |
||||
# - ogg # Add support for the Ogg container format (commonly used by Vorbis, Theora and flac). |
||||
# - opencl # Требует драйвер nvidia. |
||||
# - openconnect |
||||
# - openvpn |
||||
# - opus # Enable Opus audio codec support. |
||||
# - orc # Use dev-lang/orc for just-in-time optimization of array operations. |
||||
# - osdmenu |
||||
# - oss # Add support for OSS (Open Sound System). |
||||
# - pam # Add support for PAM (Pluggable Authentication Modules) - DANGEROUS to arbitrarily flip. |
||||
# - elogind # Enable session tracking via sys-auth/elogind. |
||||
# - pdf # Add general support for PDF (Portable Document Format), this replaces the pdflib and cpdflib flags. |
||||
# - perl # Add optional support/bindings for the Perl language. |
||||
# - pinentry |
||||
# - policykit # Enable PolicyKit authentication support. |
||||
# - portmon |
||||
# - postgres # Add support for the postgresql database. |
||||
# - postscript # Enable support for the PostScript language (often with ghostscript-gpl or libspectre). |
||||
# - pptp |
||||
# - pulseaudio # Add support for PulseAudio sound server. |
||||
# - pxe # Enables support for PXE installation. |
||||
# - python # Add optional support/bindings for the Python language. |
||||
# - qt |
||||
# - qt3support |
||||
# - qt4 |
||||
# - qt4 |
||||
# - qt5 # Add support for the Qt 5 application and UI framework. |
||||
# - raw # Add support for raw image formats. |
||||
# - readline # Enable support for libreadline, a GNU line-editing library that almost everyone wants. |
||||
# - reiserfs |
||||
# - rsync-verify |
||||
# - ruby # Add support/bindings for the Ruby language. |
||||
# - samba # Add support for SAMBA (Windows File and Printer sharing). |
||||
# - scanner # Add support for scanner hardware (e.g. build the sane frontend in kdegraphics). |
||||
# - screensaver |
||||
# - scrypt |
||||
# - sec |
||||
# - server |
||||
# - skins |
||||
# - smartcard # Enable smartcard support. |
||||
# - snappy # Enable support for Snappy compression (as implemented in app-arch/snappy). |
||||
# - speex # Add support for the speex audio codec (used for speech). |
||||
# - srt |
||||
# - svg # Add support for SVG (Scalable Vector Graphics). |
||||
# - systemd # Enable use of systemd-specific libraries and features like socket activation or session tracking. |
||||
# - tcl # Add support the Tcl language. |
||||
# - test # Enable dependencies and/or preparations necessary to run tests. |
||||
# - tga |
||||
# - themes |
||||
# - theora # Add support for the Theora Video Compression Codec. |
||||
# - timidity # Build with Timidity++ (MIDI sequencer) support. |
||||
# - tinfo |
||||
# - tk # Add support for Tk GUI toolkit. |
||||
# - totp |
||||
# - uchardet |
||||
# - udisks # Enable storage management support (automounting, volume monitoring, etc). |
||||
# - update_drivedb |
||||
# - upnp # Enable UPnP port mapping support. |
||||
# - v4l # Enable support for video4linux (using linux-headers or userspace libv4l libraries). |
||||
# - vaapi # Enable Video Acceleration API for hardware decoding. |
||||
# - vala # Enable bindings for dev-lang/vala. |
||||
# - vdpau # Enable the Video Decode and Presentation API for Unix acceleration interface. |
||||
# - vim |
||||
# - vmware |
||||
# - vnc # Enable VNC (remote desktop viewer) support. |
||||
# - vorbis # Add support for the OggVorbis audio codec. |
||||
# - vpnc |
||||
# - vpx |
||||
# - vulkan |
||||
# - wavpack # Add support for wavpack audio compression tools. |
||||
# - wayland # Enable dev-libs/wayland backend. |
||||
# - webkit # Add support for the WebKit HTML rendering/layout engine. |
||||
# - wispr |
||||
# - wmf # Add support for the Windows Metafile vector image format. |
||||
# - wxwidgets # Add support for wxWidgets/wxGTK GUI toolkit. |
||||
# - wxwindows |
||||
# - xa |
||||
# - xcomposite # Enable support for the Xorg composite extension. |
||||
# - xmp # Enable support for Extensible Metadata Platform (Adobe XMP). |
||||
# - xscreensaver # Add support for XScreenSaver extension. |
||||
# - zsh-completion |
||||
# - cramfs |
||||
|
||||
# LANGUAGES |
||||
- l10n_am |
||||
- l10n_ar |
||||
- l10n_bg |
||||
- l10n_bn |
||||
- l10n_ca |
||||
- l10n_cs |
||||
- l10n_da |
||||
- l10n_de |
||||
- l10n_el |
||||
- l10n_en-GB |
||||
- l10n_es |
||||
- l10n_es-419 |
||||
- l10n_et |
||||
- l10n_fa |
||||
- l10n_fi |
||||
- l10n_fil |
||||
- l10n_fr |
||||
- l10n_gu |
||||
- l10n_he |
||||
- l10n_hi |
||||
- l10n_hr |
||||
- l10n_hu |
||||
- l10n_id |
||||
- l10n_it |
||||
- l10n_ja |
||||
- l10n_kn |
||||
- l10n_ko |
||||
- l10n_lt |
||||
- l10n_lv |
||||
- l10n_ml |
||||
- l10n_mr |
||||
- l10n_ms |
||||
- l10n_nb |
||||
- l10n_nl |
||||
- l10n_pl |
||||
- l10n_pt-BR |
||||
- l10n_pt-PT |
||||
- l10n_ro |
||||
- l10n_sk |
||||
- l10n_sl |
||||
- l10n_sr |
||||
- l10n_sv |
||||
- l10n_sw |
||||
- l10n_ta |
||||
- l10n_te |
||||
- l10n_th |
||||
- l10n_tr |
||||
- l10n_uk |
||||
- l10n_vi |
||||
- l10n_zh-CN |
||||
- l10n_zh-TW |
||||
- linguas_am |
||||
- linguas_ar |
||||
- linguas_bg |
||||
- linguas_bn |
||||
- linguas_ca |
||||
- linguas_cs |
||||
- linguas_da |
||||
- linguas_de |
||||
- linguas_el |
||||
- linguas_en_GB |
||||
- linguas_es |
||||
- linguas_es_LA |
||||
- linguas_et |
||||
- linguas_fa |
||||
- linguas_fi |
||||
- linguas_fil |
||||
- linguas_fr |
||||
- linguas_gu |
||||
- linguas_he |
||||
- linguas_hi |
||||
- linguas_hr |
||||
- linguas_hu |
||||
- linguas_id |
||||
- linguas_it |
||||
- linguas_ja |
||||
- linguas_kn |
||||
- linguas_ko |
||||
- linguas_lt |
||||
- linguas_lv |
||||
- linguas_ml |
||||
- linguas_mr |
||||
- linguas_ms |
||||
- linguas_nb |
||||
- linguas_nl |
||||
- linguas_pl |
||||
- linguas_pt_BR |
||||
- linguas_pt_PT |
||||
- linguas_ro |
||||
- linguas_sk |
||||
- linguas_sl |
||||
- linguas_sr |
||||
- linguas_sv |
||||
- linguas_sw |
||||
- linguas_ta |
||||
- linguas_te |
||||
- linguas_th |
||||
- linguas_tr |
||||
- linguas_uk |
||||
- linguas_vi |
||||
- linguas_zh_CN |
||||
- linguas_zh_TW |
||||
|
@ -0,0 +1,5 @@
@@ -0,0 +1,5 @@
|
||||
iso: |
||||
directory: /boot/iso |
||||
images: |
||||
- url: https://ftp.halifax.rwth-aachen.de/osdn/storage/g/s/sy/systemrescuecd/releases/7.00/systemrescue-7.00-amd64.iso |
||||
filename: /boot/iso/systemrescuecd.iso |
@ -1,10 +1,11 @@
@@ -1,10 +1,11 @@
|
||||
|
||||
system: |
||||
hostname: calculate |
||||
tty_consoles: 4 |
||||
console_font: cyr-sun16 |
||||
display_brightness: 30 |
||||
|
||||
optimisation: |
||||
prelink: yes |
||||
prelink: no |
||||
preload: yes |
||||
|
||||
|
Loading…
Reference in new issue