diff options
Diffstat (limited to '.a/Config Backups')
47 files changed, 2975 insertions, 0 deletions
diff --git a/.a/Config Backups/libinput-gestures.settings b/.a/Config Backups/libinput-gestures.settings new file mode 100644 index 0000000..a0d34e7 --- /dev/null +++ b/.a/Config Backups/libinput-gestures.settings @@ -0,0 +1,193 @@ +# Configuration file for libinput-gestures. +# Mark Blakeney, Sep 2015 +# +# The default configuration file exists at /etc/libinput-gestures.conf +# but a user can create a personal custom configuration file at +# ~/.config/libinput-gestures.conf. +# +# Lines starting with '#' and blank lines are ignored. Currently +# "gesture" and "device" configuration keywords are supported as +# described below. The keyword can optionally be appended with a ":" (to +# maintain compatibility with original format configuration files). +# +# Each gesture line has 3 [or 4] arguments separated by whitespace: +# +# action motion [finger_count] command +# +# where action and motion is either: +# swipe up +# swipe down +# swipe left +# swipe right +# swipe left_up +# swipe left_down +# swipe right_up +# swipe right_down +# pinch in +# pinch out +# pinch clockwise +# pinch anticlockwise +# +# command is the remainder of the line and is any valid shell command + +# arguments. +# +# finger_count is a single numeric digit and is optional (and is +# typically 3 or 4). If specified then the command is executed when +# exactly that number of fingers is used in the gesture. If not +# specified then the command is executed when that gesture is executed +# with any number of fingers. Gesture lines specified with finger_count +# have priority over the same gesture specified without any +# finger_count. +# +# Typically command will be xdotool, or wmctrl. See "man xdotool" for +# the many things you can action with that tool. Note that unfortunately +# xdotool does not work with native Wayland clients. + +############################################################################### +# SWIPE GESTURES: +############################################################################### + +# Note the default is an "internal" command that uses wmctrl to switch +# workspaces and, unlike xdotool, works on both Xorg and Wayland (via +# XWayland). It also can be configured for vertical and horizontal +# switching over tabular workspaces, as per the example below. You can +# also add "-w" to the internal command to allow wrapping workspaces. + +# Move to next workspace (works for GNOME/KDE/etc on Wayland and Xorg) +gesture swipe up _internal ws_up + +# NOTE ABOUT FINGER COUNT: +# The above command will configure this command for all fingers (i.e. 3 +# for 4) but to configure it for 3 fingers only, change it to: +# gesture swipe up 3 _internal ws_up +# Then you can configure something else for 4 fingers or leave 4 fingers +# unconfigured. You can configure an explicit finger count like this for +# all example commands in this configuration file. +# +# gesture swipe up xdotool key super+Page_Down + +# Move to prev workspace (works for GNOME/KDE/etc on Wayland and Xorg) +gesture swipe down _internal ws_down +# gesture swipe down xdotool key super+Page_Up + +# Browser go forward (works only for Xorg, and Xwayland clients) +gesture swipe left xdotool key alt+Right + +# Browser go back (works only for Xorg, and Xwayland clients) +gesture swipe right xdotool key alt+Left + +# NOTE: If you don't use "natural" scrolling direction for your touchpad +# then you may want to swap the above default left/right and up/down +# configurations. + +# Optional extended swipe gestures, e.g. for browser tab navigation: +# +# Jump to next open browser tab +# gesture swipe right_up xdotool key control+Tab +# +# Jump to previous open browser tab +# gesture swipe left_up xdotool key control+shift+Tab +# +# Close current browser tab +# gesture swipe left_down xdotool key control+w +# +# Reopen and jump to last closed browser tab +# gesture swipe right_down xdotool key control+shift+t + +# Example of 8 static workspaces, e.g. using KDE virtual-desktops, +# arranged in 2 rows of 4 columns across using swipe up/down/left/right +# to navigate in fixed planes. You can also add the "-w/--wrap" option +# to allow wrapping in any direction. You must configure your virtual +# desktops with the same column dimension. +# gesture swipe up _internal --cols 4 ws_up +# gesture swipe down _internal --cols 4 ws_down +# gesture swipe left _internal --cols 4 ws_left +# gesture swipe right _internal --cols 4 ws_right +# +# Example of 16 static workspaces, e.g. using KDE virtual-desktops, +# arranged in 4 rows of 4 columns across using swipe up/down/left/right +# to navigate in fixed planes, and also using swipe +# left_up/left_down/right_up/right_down to navigate diagonally. You can +# also add the "-w/--wrap" option to allow wrapping in any direction +# and/or diagonally. You must configure your virtual desktops with the +# same column dimension. +# gesture swipe up _internal --cols 4 ws_up +# gesture swipe down _internal --cols 4 ws_down +# gesture swipe left _internal --cols 4 ws_left +# gesture swipe right _internal --cols 4 ws_right +# gesture swipe left_up _internal --cols 4 ws_left_up +# gesture swipe left_down _internal --cols 4 ws_left_down +# gesture swipe right_up _internal --cols 4 ws_right_up +# gesture swipe right_down _internal --cols 4 ws_right_down + +# Example virtual desktop switching for Ubuntu Unity/Compiz. The +# _internal command does not work for Compiz but you can explicitly +# configure the swipe commands to work for a Compiz virtual 2 +# dimensional desktop as follows: +# gesture swipe up xdotool key ctrl+alt+Up +# gesture swipe down xdotool key ctrl+alt+Down +# gesture swipe left xdotool key ctrl+alt+Left +# gesture swipe right xdotool key ctrl+alt+Right + +# Example to change audio volume: +# Note this only works on an Xorg desktop (not Wayland). +# gesture swipe up xdotool key XF86AudioRaiseVolume +# gesture swipe down xdotool key XF86AudioLowerVolume + +############################################################################### +# PINCH GESTURES: +############################################################################### + +# GNOME SHELL open/close overview (works for GNOME on Xorg only) +gesture pinch in xdotool key super+s +gesture pinch out xdotool key super+s + +# KDE Plasma open/close overview +# gesture pinch in xdotool key ctrl+F9 +# gesture pinch out xdotool key ctrl+F9 + +# GNOME SHELL open/close overview (works for GNOME on Wayland and Xorg) +# Note since GNOME 3.24 on Wayland this is implemented natively so no +# real point configuring for Wayland. +# gesture pinch in dbus-send --session --type=method_call --dest=org.gnome.Shell /org/gnome/Shell org.gnome.Shell.Eval string:'Main.overview.toggle();' +# gesture pinch out dbus-send --session --type=method_call --dest=org.gnome.Shell /org/gnome/Shell org.gnome.Shell.Eval string:'Main.overview.toggle();' + +# Optional extended pinch gestures: +# gesture pinch clockwise <whatever command> +# gesture pinch anticlockwise <whatever command> + +############################################################################### +# This application normally determines your touchpad device +# automatically. Some users may have multiple touchpads but by default +# we use only the first one found. However, you can choose to specify +# the explicit device name to use. Run "libinput list-devices" to work +# out the name of your device (from the "Device:" field). Then add a +# device line specifying that name, e.g: +# +# device DLL0665:01 06CB:76AD Touchpad +# +# If the device name starts with a '/' then it is instead considered as +# the explicit device path although since device paths can change +# through reboots this is best to be a symlink. E.g. instead of specifying +# /dev/input/event12, you should use the corresponding full path link +# under /dev/input/by-path/ or /dev/input/by-id/. +# +# You can choose to use ALL touchpad devices by setting the device name +# to "all". E.g. Do this if you have multiple touchpads which you want +# to use in parallel. This reduces performance slightly so only set this +# if you have to. +# +# device all + +############################################################################### +# You can set a minimum travel distance threshold before swipe gestures +# are actioned using the swipe_threshold configuration command. +# Specify this value in dots. The default is 0. +# E.g. set it to 100 dots with "swipe_threshold 100". +# swipe_threshold 0 + +############################################################################### +# You can set a timeout on gestures from start to end. The default is +# the value commented below. It can be any value in float secs >= 0. +# 0 = no timeout. E.g. set it to 2 secs with "timeout 2". +# timeout 1.5 diff --git a/.a/Config Backups/lightdm/Xsession b/.a/Config Backups/lightdm/Xsession new file mode 100755 index 0000000..50ce80f --- /dev/null +++ b/.a/Config Backups/lightdm/Xsession @@ -0,0 +1,74 @@ +#!/bin/sh +# +# LightDM wrapper to run around X sessions. + +echo "Running X session wrapper" + +# Load profile +for file in "/etc/profile" "$HOME/.profile" "/etc/xprofile" "$HOME/.xprofile"; do + if [ -f "$file" ]; then + echo "Loading profile from $file"; + . "$file" + fi +done + +# Load resources +for file in "/etc/X11/Xresources" "$HOME/.Xresources"; do + if [ -f "$file" ]; then + echo "Loading resource: $file" + xrdb -nocpp -merge "$file" + fi +done + +# Load keymaps +for file in "/etc/X11/Xkbmap" "$HOME/.Xkbmap"; do + if [ -f "$file" ]; then + echo "Loading keymap: $file" + setxkbmap `cat "$file"` + XKB_IN_USE=yes + fi +done + +# Load xmodmap if not using XKB +if [ -z "$XKB_IN_USE" ]; then + for file in "/etc/X11/Xmodmap" "$HOME/.Xmodmap"; do + if [ -f "$file" ]; then + echo "Loading modmap: $file" + xmodmap "$file" + fi + done +fi + +unset XKB_IN_USE + +# /etc/X11/xinit/xinitrc.d/80-dbus expects $command to be +# set to the Xsession arguments. So make it happy. See +# https://bugs.gentoo.org/show_bug.cgi?id=533456 +command="$@" + +# Run all system xinitrc shell scripts. +xinitdir="/etc/X11/xinit/xinitrc.d" +if [ -d "$xinitdir" ]; then + for script in $xinitdir/*; do + echo "Loading xinit script $script" + if [ -x "$script" -a ! -d "$script" ]; then + . "$script" + fi + done +fi + +# Load Xsession scripts +xsessionddir="/etc/X11/Xsession.d" +if [ -d "$xsessionddir" ]; then + for i in `ls $xsessionddir`; do + script="$xsessionddir/$i" + echo "Loading X session script $script" + if [ -r "$script" -a -f "$script" ] && expr "$i" : '^[[:alnum:]_-]\+$' > /dev/null; then + . "$script" + fi + done +fi + +echo "X session wrapper complete, running session $@" + +exec $command diff --git a/.a/Config Backups/lightdm/lightdm-gtk-greeter.conf b/.a/Config Backups/lightdm/lightdm-gtk-greeter.conf new file mode 100644 index 0000000..4e87dd0 --- /dev/null +++ b/.a/Config Backups/lightdm/lightdm-gtk-greeter.conf @@ -0,0 +1,72 @@ +# LightDM GTK Configuration +# Available configuration options listed below. +# Please list the configuration options that you want to use after [greeter] without the # for example: +# [greeter] +# example-option=example-value +# +# Appearance: +# theme-name = GTK theme to use +# icon-theme-name = Icon theme to use +# cursor-theme-name = Cursor theme to use +# cursor-theme-size = Cursor size to use +# background = Background file to use, either an image path or a color (e.g. #772953) +# user-background = false|true ("true" by default) Display user background (if available) +# transition-duration = Length of time (in milliseconds) to transition between background images ("500" by default) +# transition-type = ease-in-out|linear|none ("ease-in-out" by default) +# +# Fonts: +# font-name = Font to use +# xft-antialias = false|true Whether to antialias Xft fonts +# xft-dpi = Resolution for Xft in dots per inch (e.g. 96) +# xft-hintstyle = none|slight|medium|hintfull What degree of hinting to use +# xft-rgba = none|rgb|bgr|vrgb|vbgr Type of subpixel antialiasing +# +# Login window: +# active-monitor = Monitor to display greeter window (name or number). Use #cursor value to display greeter at monitor with cursor. Can be a semicolon separated list +# position = x y ("50% 50%" by default) Login window position +# default-user-image = Image used as default user icon, path or #icon-name +# hide-user-image = false|true ("false" by default) +# round-user-image = false|true ("true" by default) +# highlight-logged-user = false|true ("true" by default) +# +# Panel: +# panel-position = top|bottom ("top" by default) +# clock-format = strftime-format string, e.g. %H:%M +# indicators = semi-colon ";" separated list of allowed indicator modules. Built-in indicators include "~a11y", "~language", "~session", "~power", "~clock", "~host", "~spacer". Unity indicators can be represented by short name (e.g. "sound", "power"), service file name, or absolute path +# +# Accessibility: +# a11y-states = states of accessibility features: "name" - save state on exit, "-name" - disabled at start (default value for unlisted), "+name" - enabled at start. Allowed names: contrast, font, keyboard, reader. +# keyboard = command to launch on-screen keyboard (e.g. "onboard") +# keyboard-position = x y[;width height] ("50%,center -0;50% 25%" by default) Works only for "onboard" +# reader = command to launch screen reader (e.g. "orca") +# at-spi-enabled = false|true ("true" by default) Enables accessibility at-spi-command if the greeter is built with it enabled +# +# Security: +# allow-debugging = false|true ("false" by default) +# screensaver-timeout = Timeout (in seconds) until the screen blanks when the greeter is called as lockscreen +# +# Template for per-monitor configuration: +# [monitor: name] +# background = overrides default value +# user-background = overrides default value +# laptop = false|true ("false" by default) Marks monitor as laptop display +# transition-duration = overrides default value +# +[greeter] +theme-name = Mint-Y-Dark-Blue +icon-theme-name = Mint-Y-Dark-Blue +cursor-theme-name = oreo_black_bordered_cursors +background = /home/kamen/Pictures/Wallpapers/foundation-fred-gambino.jpg +user-background = false + +font-name = MesloLGS NF 11 +xft-antialias = 1 +xft-hintstyle = hintfull +xft-rgba = rgb + +default-user-image = /home/kamen/Nextcloud/Logo/logo512x512-dark-blue-outline-black-bg-white.gif + +clock-format = %H:%M - %d.%m.%Y +indicators = ~host;~session;~spacer;~clock;~spacer;~layout;~language;~ally;~power + +screensaver-timeout = 0 diff --git a/.a/Config Backups/lightdm/lightdm.conf b/.a/Config Backups/lightdm/lightdm.conf new file mode 100644 index 0000000..824c13d --- /dev/null +++ b/.a/Config Backups/lightdm/lightdm.conf @@ -0,0 +1,163 @@ +# +# General configuration +# +# start-default-seat = True to always start one seat if none are defined in the configuration +# greeter-user = User to run greeter as +# minimum-display-number = Minimum display number to use for X servers +# minimum-vt = First VT to run displays on +# lock-memory = True to prevent memory from being paged to disk +# user-authority-in-system-dir = True if session authority should be in the system location +# guest-account-script = Script to be run to setup guest account +# logind-check-graphical = True to on start seats that are marked as graphical by logind +# log-directory = Directory to log information to +# run-directory = Directory to put running state in +# cache-directory = Directory to cache to +# sessions-directory = Directory to find sessions +# remote-sessions-directory = Directory to find remote sessions +# greeters-directory = Directory to find greeters +# backup-logs = True to move add a .old suffix to old log files when opening new ones +# dbus-service = True if LightDM provides a D-Bus service to control it +# +[LightDM] +#start-default-seat=true +#greeter-user=lightdm +#minimum-display-number=0 +#minimum-vt=7 +#lock-memory=true +#user-authority-in-system-dir=false +#guest-account-script=guest-account +#logind-check-graphical=false +#log-directory=/var/log/lightdm +#run-directory=/var/run/lightdm +#cache-directory=/var/cache/lightdm +#sessions-directory=/usr/share/lightdm/sessions:/usr/share/xsessions:/usr/share/wayland-sessions +#remote-sessions-directory=/usr/share/lightdm/remote-sessions +#greeters-directory=$XDG_DATA_DIRS/lightdm/greeters:$XDG_DATA_DIRS/xgreeters +#backup-logs=true +#dbus-service=true + +# +# Seat configuration +# +# Seat configuration is matched against the seat name glob in the section, for example: +# [Seat:*] matches all seats and is applied first. +# [Seat:seat0] matches the seat named "seat0". +# [Seat:seat-thin-client*] matches all seats that have names that start with "seat-thin-client". +# +# type = Seat type (local, xremote) +# pam-service = PAM service to use for login +# pam-autologin-service = PAM service to use for autologin +# pam-greeter-service = PAM service to use for greeters +# xserver-command = X server command to run (can also contain arguments e.g. X -special-option) +# xmir-command = Xmir server command to run (can also contain arguments e.g. Xmir -special-option) +# xserver-config = Config file to pass to X server +# xserver-layout = Layout to pass to X server +# xserver-allow-tcp = True if TCP/IP connections are allowed to this X server +# xserver-share = True if the X server is shared for both greeter and session +# xserver-hostname = Hostname of X server (only for type=xremote) +# xserver-display-number = Display number of X server (only for type=xremote) +# xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true) +# xdmcp-port = XDMCP UDP/IP port to communicate on +# xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf) +# greeter-session = Session to load for greeter +# greeter-hide-users = True to hide the user list +# greeter-allow-guest = True if the greeter should show a guest login option +# greeter-show-manual-login = True if the greeter should offer a manual login option +# greeter-show-remote-login = True if the greeter should offer a remote login option +# user-session = Session to load for users +# allow-user-switching = True if allowed to switch users +# allow-guest = True if guest login is allowed +# guest-session = Session to load for guests (overrides user-session) +# session-wrapper = Wrapper script to run session with +# greeter-wrapper = Wrapper script to run greeter with +# guest-wrapper = Wrapper script to run guest sessions with +# display-setup-script = Script to run when starting a greeter session (runs as root) +# display-stopped-script = Script to run after stopping the display server (runs as root) +# greeter-setup-script = Script to run when starting a greeter (runs as root) +# session-setup-script = Script to run when starting a user session (runs as root) +# session-cleanup-script = Script to run when quitting a user session (runs as root) +# autologin-guest = True to log in as guest by default +# autologin-user = User to log in with by default (overrides autologin-guest) +# autologin-user-timeout = Number of seconds to wait before loading default user +# autologin-session = Session to load for automatic login (overrides user-session) +# autologin-in-background = True if autologin session should not be immediately activated +# exit-on-failure = True if the daemon should exit if this seat fails +# +[Seat:*] +#type=local +#pam-service=lightdm +#pam-autologin-service=lightdm-autologin +#pam-greeter-service=lightdm-greeter +#xserver-command=X +#xmir-command=Xmir +#xserver-config= +#xserver-layout= +#xserver-allow-tcp=false +#xserver-share=true +#xserver-hostname= +#xserver-display-number= +#xdmcp-manager= +#xdmcp-port=177 +#xdmcp-key= +#greeter-session=example-gtk-gnome +#greeter-hide-users=false +#greeter-allow-guest=true +#greeter-show-manual-login=false +#greeter-show-remote-login=true +#user-session=default +#allow-user-switching=true +#allow-guest=true +#guest-session= +session-wrapper=/etc/lightdm/Xsession +#greeter-wrapper= +#guest-wrapper= +#display-setup-script= +#display-stopped-script= +#greeter-setup-script= +#session-setup-script= +#session-cleanup-script= +#autologin-guest=false +#autologin-user= +#autologin-user-timeout=0 +#autologin-in-background=false +#autologin-session= +#exit-on-failure=false + +# +# XDMCP Server configuration +# +# enabled = True if XDMCP connections should be allowed +# port = UDP/IP port to listen for connections on +# listen-address = Host/address to listen for XDMCP connections (use all addresses if not present) +# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf) +# hostname = Hostname to report to XDMCP clients (defaults to system hostname if unset) +# +# The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively +# it can be a word and the first 7 characters are used as the key. +# +[XDMCPServer] +#enabled=false +#port=177 +#listen-address= +#key= +#hostname= + +# +# VNC Server configuration +# +# enabled = True if VNC connections should be allowed +# command = Command to run Xvnc server with +# port = TCP/IP port to listen for connections on +# listen-address = Host/address to listen for VNC connections (use all addresses if not present) +# width = Width of display to use +# height = Height of display to use +# depth = Color depth of display to use +# +[VNCServer] +#enabled=false +#command=Xvnc +#port=5900 +#listen-address= +#width=1024 +#height=768 +#depth=8 diff --git a/.a/Config Backups/portage/categories b/.a/Config Backups/portage/categories new file mode 100644 index 0000000..431a76f --- /dev/null +++ b/.a/Config Backups/portage/categories @@ -0,0 +1 @@ +acct-group diff --git a/.a/Config Backups/portage/make.conf b/.a/Config Backups/portage/make.conf new file mode 100644 index 0000000..748e1bb --- /dev/null +++ b/.a/Config Backups/portage/make.conf @@ -0,0 +1,4 @@ +USE="X policykit png" +L10N="en bg" +PORTDIR_OVERLAY=/usr/local/portage +FEATURES="ccache" diff --git a/.a/Config Backups/portage/make.profile/parent b/.a/Config Backups/portage/make.profile/parent new file mode 100644 index 0000000..8e8530b --- /dev/null +++ b/.a/Config Backups/portage/make.profile/parent @@ -0,0 +1,38 @@ +core-kit:funtoo/1.0/linux-gnu/arch/x86-64bit +core-kit:funtoo/1.0/linux-gnu/arch/x86-64bit/subarch/intel64-haswell +core-kit:funtoo/1.0/linux-gnu/build/current +core-kit:funtoo/1.0/linux-gnu/flavor/core +core-kit:funtoo/1.0/linux-gnu/mix-ins/media +core-kit:funtoo/1.0/linux-gnu/mix-ins/X +core-kit:funtoo/1.0/linux-gnu/mix-ins/audio +core-kit:funtoo/1.0/linux-gnu/mix-ins/gfxcard-amdgpu +browser-kit:funtoo/kits/python-kit/3.7-release +core-gl-kit:funtoo/kits/python-kit/3.7-release +core-hw-kit:funtoo/kits/python-kit/3.7-release +core-kit:funtoo/kits/python-kit/3.7-release +core-server-kit:funtoo/kits/python-kit/3.7-release +desktop-kit:funtoo/kits/python-kit/3.7-release +dev-kit:funtoo/kits/python-kit/3.7-release +editors-kit:funtoo/kits/python-kit/3.7-release +games-kit:funtoo/kits/python-kit/3.7-release +gnome-kit:funtoo/kits/python-kit/3.7-release +haskell-kit:funtoo/kits/python-kit/3.7-release +java-kit:funtoo/kits/python-kit/3.7-release +kde-kit:funtoo/kits/python-kit/3.7-release +lang-kit:funtoo/kits/python-kit/3.7-release +lisp-scheme-kit:funtoo/kits/python-kit/3.7-release +llvm-kit:funtoo/kits/python-kit/3.7-release +mate-kit:funtoo/kits/python-kit/3.7-release +media-kit:funtoo/kits/python-kit/3.7-release +ml-lang-kit:funtoo/kits/python-kit/3.7-release +net-kit:funtoo/kits/python-kit/3.7-release +nokit:funtoo/kits/python-kit/3.7-release +perl-kit:funtoo/kits/python-kit/3.7-release +python-kit:funtoo/kits/python-kit/3.7-release +python-modules-kit:funtoo/kits/python-kit/3.7-release +qt-kit:funtoo/kits/python-kit/3.7-release +ruby-kit:funtoo/kits/python-kit/3.7-release +science-kit:funtoo/kits/python-kit/3.7-release +security-kit:funtoo/kits/python-kit/3.7-release +text-kit:funtoo/kits/python-kit/3.7-release +xfce-kit:funtoo/kits/python-kit/3.7-release diff --git a/.a/Config Backups/portage/package.accept_keywords/audacious b/.a/Config Backups/portage/package.accept_keywords/audacious new file mode 100644 index 0000000..22a24b9 --- /dev/null +++ b/.a/Config Backups/portage/package.accept_keywords/audacious @@ -0,0 +1,2 @@ +media-sound/audacious ** +media-plugins/audacious-plugins ** diff --git a/.a/Config Backups/portage/package.mask/libcrypt b/.a/Config Backups/portage/package.mask/libcrypt new file mode 100644 index 0000000..aa5449e --- /dev/null +++ b/.a/Config Backups/portage/package.mask/libcrypt @@ -0,0 +1 @@ +=virtual/libcrypt-2::x-portage diff --git a/.a/Config Backups/portage/package.unmask/python b/.a/Config Backups/portage/package.unmask/python new file mode 100644 index 0000000..a98b053 --- /dev/null +++ b/.a/Config Backups/portage/package.unmask/python @@ -0,0 +1 @@ +=dev-lang/python-3.8.12_p1-r1::x-portage diff --git a/.a/Config Backups/portage/package.use b/.a/Config Backups/portage/package.use new file mode 100644 index 0000000..4d8362f --- /dev/null +++ b/.a/Config Backups/portage/package.use @@ -0,0 +1,150 @@ +# ----------------- # +# Custom local repo # +# ----------------- # + +# barrier +>=x11-misc/barrier-2.4.0::x-portage gui + +# libratbag +>=dev-libs/libratbag-0.15::x-portage python_single_target_python3_8 elogind +>=dev-lang/python-exec-2.4.6 python_targets_python3_8 +>=dev-python/pygobject-3.36.1 python_targets_python3_8 +>=dev-python/python-evdev-1.4.0 python_targets_python3_8 +>=dev-python/setuptools-59.7.0 python_targets_python3_8 +>=dev-python/certifi-10001 python_targets_python3_8 +>=dev-python/pyparsing-2.4.7 python_targets_python3_8 +>=dev-python/pycairo-1.17.0-r1 python_targets_python3_8 +>=dev-python/tomli-2.0.0 python_targets_python3_8 +>=dev-python/packaging-21.3 python_targets_python3_8 # Might require to be emerge with --nodeps flag +>=dev-python/setuptools_scm-6.3.2 python_targets_python3_8 # Might require to be emerged with --nodeps flag + +# ------------------------------------------- # +# https://github.com/dywisor/tlp-portage repo # +# ------------------------------------------- # + +# tlp +>=app-laptop/tlp-1.4.0-r1 bluetooth + +# -------------- # +# Official repos # +# -------------- # + +# NetworkManager +>=media-libs/gd-2.3.0 fontconfig jpeg png truetype + +# gtk+ +>=x11-libs/cairo-1.16.0-r3 X xcb + +# neofetch +>=www-client/w3m-0.5.3_p20190105 imlib + +# brave-bin +>=app-text/ghostscript-gpl-9.53.3-r2 cups + +# vim +>=app-editors/vim-8.2.3582 x11 perl lua + +# tint2 +>=x11-misc/tint2-16.6.1 tint2conf + +# pipewire +>=media-video/pipewire-0.3.0 ffmpeg gstreamer jack pulseaudio +>=media-plugins/alsa-plugins-1.2.2 pulseaudio + +# nm-applet +>=dev-libs/glib-2.70.0-r1 dbus +>=sys-auth/consolekit-1.2.1 policykit +>=app-crypt/pinentry-1.1.1 gnome-keyring + +# copyq +>=dev-libs/libpcre2-10.35 pcre16 + +# redshift +>=x11-misc/redshift-1.12-r3 gtk + +# gimp +>=app-text/poppler-21.11.0 cairo +>=media-libs/gegl-0.4.32 cairo + +# nemo +>=dev-libs/libdbusmenu-16.04.0-r1 gtk3 +>=virtual/libusb-1-r2 udev + +# eog +>=dev-libs/libdbusmenu-16.04.0-r1 gtk3 +>=x11-libs/gdk-pixbuf-2.40.0-r1 jpeg + +# evince +>=dev-libs/libusb-1.0.22 udev + +# dunst +>=x11-misc/dunst-1.3.2::desktop-kit dunstify + +# picom +>=x11-misc/picom-8::desktop-kit opengl + +# pnmixer +>=media-sound/pnmixer-0.7.2::media-kit libnotify + +# cheese +>=media-libs/gst-plugins-base-1.14.4-r1 theora + +# blueberry +>=x11-libs/xapps-2.0.4 introspection + +# texmaker +>=app-text/poppler-21.11.0 qt5 +>=dev-qt/qtwebengine-5.15.5 widgets +>=app-text/texlive-core-2020-r13 xetex + +# pgadmin4 +>=dev-python/flask-wtf-0.14.2-r1 -python_targets_python2_7 +>=dev-python/flask-sqlalchemy-2.3.2 -python_targets_python2_7 +>=dev-python/flask-security-3.0.0 -python_targets_python2_7 + +# audacious +>=media-plugins/audacious-plugins-4.1::media-kit aac ampache bs2b cdda cue ffmpeg flac fluidsynth gme http jack lame libnotify libsamplerate lirc mms modplug mp3 opengl pulseaudio scrobbler sdl sid sndfile soxr speedpitch streamtuner vorbis wavpack + +# simple-scan +>=media-gfx/iscan-2.30.3.1::media-kit gimp +>=media-gfx/sane-backends-1.0.27-r3::media-kit usb +>=media-gfx/sane-frontends-1.0.14-r4::media-kit gimp gtk +>=dev-libs/libgusb-0.3.0 vala +>=x11-misc/colord-1.3.5 vala + +# moc +>=media-sound/moc-2.6_alpha3::media-kit aac alsa ffmpeg flac libsamplerate mad modplug musepack oss sid sndfile speex timidity tremor vorbis wavpack + +# polkit +>=sys-auth/polkit-0.119-r2::gnome-kit elogind gtk + +# virt-manager +>=net-misc/spice-gtk-0.35-r1 usbredir +>=net-dns/dnsmasq-2.86 script + +# blender +>=sys-libs/ncurses-6.2 tinfo + +# gajim +>=net-libs/gssdp-1.2.3:1.2::gnome-kit gtk +>=net-im/gajim-1.1.3::net-kit jingle networkmanager remote rst upnp +>=dev-libs/gobject-introspection-1.70.0 cairo + +# cups +>=net-print/cups-2.2.11-r1::desktop-kit static-libs usb xinetd zeroconf +>=gnome-base/libgnomeprint-2.18.8-r1:2.2::gnome-kit cups +>=x11-libs/gtk+-3.24.23-r2:3::gnome-kit cups + +# clang +#>=sys-devel/clang-11.0.0:11::llvm-kit default-compiler-rt default-lld default-libcxx +>=sys-devel/llvm-11.0.0:11::llvm-kit -ncurses + +>=dev-qt/qtwidgets-5.15.2-r1:5/5.15::qt-kit gtk + +# zdoom +>=media-libs/libsdl2-2.0.10 opengl + +# mpv +>=media-video/mpv-0.34.0.20211228::media-kit -vulkan # Because of error "libshaderc_shared.so: undefined reference to `spvtools::utils::Timer::Start()'" +>=media-libs/libplacebo-4.157.0:0/157::media-kit -shaderc glslang # Because of error "libshaderc_shared.so: undefined reference to `spvtools::utils::Timer::Start()'" +>=dev-lang/python-exec-2.4.6 python_targets_python3_8 diff --git a/.a/Config Backups/portage/repo.postsync.d/example b/.a/Config Backups/portage/repo.postsync.d/example new file mode 100644 index 0000000..72d91a6 --- /dev/null +++ b/.a/Config Backups/portage/repo.postsync.d/example @@ -0,0 +1,64 @@ +#!/bin/bash +# Example /etc/portage/repo.postsync.d script. Make it executable (chmod +x) for +# Portage to process it. +# +# With portage-2.2.16 and newer, all repo.postsync.d hooks will be called multiple +# times after syncing each repository. +# +# Older versions of Portage support syncing only one repository. +# In those versions, the postsync.d hooks will be called only once, +# and they will not be passed any parameters. + +# On a repo.postsync.d hook call, positional parameters contain +# information about the just-synced repository. + +# Your hook can control it's actions depending on any of the three +# parameters passed in to it. +# +# They are as follows: +# +# The repository name. +repository_name=${1} +# The URI to which the repository was synced. +sync_uri=${2} +# The path to the repository. +repository_path=${3} + +# Portage assumes that a hook succeeded if it exits with 0 code. If no +# explicit exit is done, the exit code is the exit code of last spawned +# command. Since our script is a bit more complex, we want to control +# the exit code explicitly. +ret=0 + +if [ -n "${repository_name}" ]; then + # Repository name was provided, so we're in a post-repository hook. + echo "* In post-repository hook for ${repository_name}" + echo "** synced from remote repository ${sync_uri}" + echo "** synced into ${repository_path}" + + # Gentoo comes with pregenerated cache but the other repositories + # usually don't. Generate them to improve performance. + if [ "${repository_name}" != "gentoo" ]; then + if ! egencache --update --repo="${repository_name}" --jobs=4 + then + echo "!!! egencache failed!" + ret=1 + fi + fi +fi +if [ -n "${repository_name}" ] && ! [ -e "${repository_path}/metadata/pkg_desc_index" ]; then + # Regenerate the metadata/pkg_desc_index file. This is not + # needed for https://gitweb.gentoo.org/repo/sync/gentoo.git which + # provides a freshly generated copy. The --external-cache-only + # option causes the metadata/pkg_desc_index file to be written under + # /var/cache/edb/dep instead of the repository itself, so that it + # does not interfere with repository verification. + if ! egencache --update-pkg-desc-index --external-cache-only --repo="${repository_name}" ${PORTAGE_VERBOSE+--verbose} + then + echo "!!! egencache failed!" + ret=1 + fi +fi + +# Return explicit status. +exit "${ret}" diff --git a/.a/Config Backups/portage/repos.conf/ego-browser-kit b/.a/Config Backups/portage/repos.conf/ego-browser-kit new file mode 100644 index 0000000..33fbc4c --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-browser-kit @@ -0,0 +1,4 @@ +[browser-kit] +location = /var/git/meta-repo/kits/browser-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-core-gl-kit b/.a/Config Backups/portage/repos.conf/ego-core-gl-kit new file mode 100644 index 0000000..1b42c76 --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-core-gl-kit @@ -0,0 +1,4 @@ +[core-gl-kit] +location = /var/git/meta-repo/kits/core-gl-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-core-hw-kit b/.a/Config Backups/portage/repos.conf/ego-core-hw-kit new file mode 100644 index 0000000..66496c3 --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-core-hw-kit @@ -0,0 +1,4 @@ +[core-hw-kit] +location = /var/git/meta-repo/kits/core-hw-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-core-kit b/.a/Config Backups/portage/repos.conf/ego-core-kit new file mode 100644 index 0000000..2a1b7b5 --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-core-kit @@ -0,0 +1,7 @@ +[DEFAULT] +main-repo = core-kit + +[core-kit] +location = /var/git/meta-repo/kits/core-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-core-server-kit b/.a/Config Backups/portage/repos.conf/ego-core-server-kit new file mode 100644 index 0000000..2653d1a --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-core-server-kit @@ -0,0 +1,4 @@ +[core-server-kit] +location = /var/git/meta-repo/kits/core-server-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-desktop-kit b/.a/Config Backups/portage/repos.conf/ego-desktop-kit new file mode 100644 index 0000000..4735129 --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-desktop-kit @@ -0,0 +1,4 @@ +[desktop-kit] +location = /var/git/meta-repo/kits/desktop-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-dev-kit b/.a/Config Backups/portage/repos.conf/ego-dev-kit new file mode 100644 index 0000000..8d0fa1d --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-dev-kit @@ -0,0 +1,4 @@ +[dev-kit] +location = /var/git/meta-repo/kits/dev-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-editors-kit b/.a/Config Backups/portage/repos.conf/ego-editors-kit new file mode 100644 index 0000000..27f6973 --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-editors-kit @@ -0,0 +1,4 @@ +[editors-kit] +location = /var/git/meta-repo/kits/editors-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-games-kit b/.a/Config Backups/portage/repos.conf/ego-games-kit new file mode 100644 index 0000000..2bc7728 --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-games-kit @@ -0,0 +1,4 @@ +[games-kit] +location = /var/git/meta-repo/kits/games-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-gnome-kit b/.a/Config Backups/portage/repos.conf/ego-gnome-kit new file mode 100644 index 0000000..9082436 --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-gnome-kit @@ -0,0 +1,4 @@ +[gnome-kit] +location = /var/git/meta-repo/kits/gnome-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-haskell-kit b/.a/Config Backups/portage/repos.conf/ego-haskell-kit new file mode 100644 index 0000000..0d04d64 --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-haskell-kit @@ -0,0 +1,4 @@ +[haskell-kit] +location = /var/git/meta-repo/kits/haskell-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-java-kit b/.a/Config Backups/portage/repos.conf/ego-java-kit new file mode 100644 index 0000000..89c2876 --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-java-kit @@ -0,0 +1,4 @@ +[java-kit] +location = /var/git/meta-repo/kits/java-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-kde-kit b/.a/Config Backups/portage/repos.conf/ego-kde-kit new file mode 100644 index 0000000..67bd5fd --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-kde-kit @@ -0,0 +1,4 @@ +[kde-kit] +location = /var/git/meta-repo/kits/kde-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-lang-kit b/.a/Config Backups/portage/repos.conf/ego-lang-kit new file mode 100644 index 0000000..c35bfec --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-lang-kit @@ -0,0 +1,4 @@ +[lang-kit] +location = /var/git/meta-repo/kits/lang-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-lisp-scheme-kit b/.a/Config Backups/portage/repos.conf/ego-lisp-scheme-kit new file mode 100644 index 0000000..b37b9d7 --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-lisp-scheme-kit @@ -0,0 +1,4 @@ +[lisp-scheme-kit] +location = /var/git/meta-repo/kits/lisp-scheme-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-llvm-kit b/.a/Config Backups/portage/repos.conf/ego-llvm-kit new file mode 100644 index 0000000..d5bd6ae --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-llvm-kit @@ -0,0 +1,4 @@ +[llvm-kit] +location = /var/git/meta-repo/kits/llvm-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-mate-kit b/.a/Config Backups/portage/repos.conf/ego-mate-kit new file mode 100644 index 0000000..d805a4a --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-mate-kit @@ -0,0 +1,4 @@ +[mate-kit] +location = /var/git/meta-repo/kits/mate-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-media-kit b/.a/Config Backups/portage/repos.conf/ego-media-kit new file mode 100644 index 0000000..dfefd7a --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-media-kit @@ -0,0 +1,4 @@ +[media-kit] +location = /var/git/meta-repo/kits/media-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-ml-lang-kit b/.a/Config Backups/portage/repos.conf/ego-ml-lang-kit new file mode 100644 index 0000000..b30030f --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-ml-lang-kit @@ -0,0 +1,4 @@ +[ml-lang-kit] +location = /var/git/meta-repo/kits/ml-lang-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-net-kit b/.a/Config Backups/portage/repos.conf/ego-net-kit new file mode 100644 index 0000000..a19ddb9 --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-net-kit @@ -0,0 +1,4 @@ +[net-kit] +location = /var/git/meta-repo/kits/net-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-nokit b/.a/Config Backups/portage/repos.conf/ego-nokit new file mode 100644 index 0000000..794b2ab --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-nokit @@ -0,0 +1,4 @@ +[nokit] +location = /var/git/meta-repo/kits/nokit +auto-sync = no +priority = -500 diff --git a/.a/Config Backups/portage/repos.conf/ego-perl-kit b/.a/Config Backups/portage/repos.conf/ego-perl-kit new file mode 100644 index 0000000..bf93bdc --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-perl-kit @@ -0,0 +1,4 @@ +[perl-kit] +location = /var/git/meta-repo/kits/perl-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-python-kit b/.a/Config Backups/portage/repos.conf/ego-python-kit new file mode 100644 index 0000000..a519318 --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-python-kit @@ -0,0 +1,4 @@ +[python-kit] +location = /var/git/meta-repo/kits/python-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-python-modules-kit b/.a/Config Backups/portage/repos.conf/ego-python-modules-kit new file mode 100644 index 0000000..af916bb --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-python-modules-kit @@ -0,0 +1,4 @@ +[python-modules-kit] +location = /var/git/meta-repo/kits/python-modules-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-qt-kit b/.a/Config Backups/portage/repos.conf/ego-qt-kit new file mode 100644 index 0000000..929274b --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-qt-kit @@ -0,0 +1,4 @@ +[qt-kit] +location = /var/git/meta-repo/kits/qt-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-ruby-kit b/.a/Config Backups/portage/repos.conf/ego-ruby-kit new file mode 100644 index 0000000..2248a2f --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-ruby-kit @@ -0,0 +1,4 @@ +[ruby-kit] +location = /var/git/meta-repo/kits/ruby-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-science-kit b/.a/Config Backups/portage/repos.conf/ego-science-kit new file mode 100644 index 0000000..c24768b --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-science-kit @@ -0,0 +1,4 @@ +[science-kit] +location = /var/git/meta-repo/kits/science-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-security-kit b/.a/Config Backups/portage/repos.conf/ego-security-kit new file mode 100644 index 0000000..08c7e5e --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-security-kit @@ -0,0 +1,4 @@ +[security-kit] +location = /var/git/meta-repo/kits/security-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-text-kit b/.a/Config Backups/portage/repos.conf/ego-text-kit new file mode 100644 index 0000000..59c6712 --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-text-kit @@ -0,0 +1,4 @@ +[text-kit] +location = /var/git/meta-repo/kits/text-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/ego-xfce-kit b/.a/Config Backups/portage/repos.conf/ego-xfce-kit new file mode 100644 index 0000000..63f2bd0 --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/ego-xfce-kit @@ -0,0 +1,4 @@ +[xfce-kit] +location = /var/git/meta-repo/kits/xfce-kit +auto-sync = no +priority = 1 diff --git a/.a/Config Backups/portage/repos.conf/eselect-repo.conf b/.a/Config Backups/portage/repos.conf/eselect-repo.conf new file mode 100644 index 0000000..4873e6f --- /dev/null +++ b/.a/Config Backups/portage/repos.conf/eselect-repo.conf @@ -0,0 +1,6 @@ +# created by eselect-repo + +[guru] +location = /var/db/repos/guru +sync-type = git +sync-uri = https://github.com/gentoo-mirror/guru.git diff --git a/.a/Config Backups/portage/savedconfig/sys-apps/busybox-1.32.0 b/.a/Config Backups/portage/savedconfig/sys-apps/busybox-1.32.0 new file mode 100644 index 0000000..ddabfc4 --- /dev/null +++ b/.a/Config Backups/portage/savedconfig/sys-apps/busybox-1.32.0 @@ -0,0 +1,1195 @@ +# +# Automatically generated make config: don't edit +# Busybox version: 1.32.0 +# Sun May 30 06:16:21 2021 +# +CONFIG_HAVE_DOT_CONFIG=y + +# +# Settings +# +CONFIG_DESKTOP=y +CONFIG_EXTRA_COMPAT=y +CONFIG_FEDORA_COMPAT=y +CONFIG_INCLUDE_SUSv2=y +CONFIG_LONG_OPTS=y +CONFIG_SHOW_USAGE=y +CONFIG_FEATURE_VERBOSE_USAGE=y +CONFIG_FEATURE_COMPRESS_USAGE=y +CONFIG_LFS=y +CONFIG_PAM=y +CONFIG_FEATURE_DEVPTS=y +CONFIG_FEATURE_UTMP=y +CONFIG_FEATURE_WTMP=y +CONFIG_FEATURE_PIDFILE=y +CONFIG_PID_FILE_PATH="/run" +CONFIG_BUSYBOX=y +CONFIG_FEATURE_SHOW_SCRIPT=y +CONFIG_FEATURE_INSTALLER=y +CONFIG_INSTALL_NO_USR=y +CONFIG_FEATURE_SUID=y +# CONFIG_FEATURE_SUID_CONFIG is not set +# CONFIG_FEATURE_SUID_CONFIG_QUIET is not set +CONFIG_FEATURE_PREFER_APPLETS=y +CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +# CONFIG_SELINUX is not set +# CONFIG_FEATURE_CLEAN_UP is not set +CONFIG_FEATURE_SYSLOG_INFO=y +CONFIG_FEATURE_SYSLOG=y +CONFIG_PLATFORM_LINUX=y + +# +# Build Options +# +# CONFIG_STATIC is not set +# CONFIG_PIE is not set +# CONFIG_NOMMU is not set +# CONFIG_BUILD_LIBBUSYBOX is not set +# CONFIG_FEATURE_LIBBUSYBOX_STATIC is not set +# CONFIG_FEATURE_INDIVIDUAL is not set +# CONFIG_FEATURE_SHARED_BUSYBOX is not set +CONFIG_CROSS_COMPILER_PREFIX="" +CONFIG_SYSROOT="" +CONFIG_EXTRA_CFLAGS="" +CONFIG_EXTRA_LDFLAGS="" +CONFIG_EXTRA_LDLIBS="" +# CONFIG_USE_PORTABLE_CODE is not set +CONFIG_STACK_OPTIMIZATION_386=y + +# +# Installation Options ("make install" behavior) +# +CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_INSTALL_APPLET_DONT is not set +# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set +# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set +# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set +CONFIG_PREFIX="./_install" + +# +# Debugging Options +# +# CONFIG_DEBUG is not set +# CONFIG_DEBUG_PESSIMIZE is not set +# CONFIG_DEBUG_SANITIZE is not set +CONFIG_UNIT_TEST=y +# CONFIG_WERROR is not set +CONFIG_WARN_SIMPLE_MSG=y +CONFIG_NO_DEBUG_LIB=y +# CONFIG_DMALLOC is not set +# CONFIG_EFENCE is not set + +# +# Library Tuning +# +# CONFIG_FEATURE_USE_BSS_TAIL is not set +CONFIG_FLOAT_DURATION=y +CONFIG_FEATURE_RTMINMAX=y +CONFIG_FEATURE_RTMINMAX_USE_LIBC_DEFINITIONS=y +CONFIG_FEATURE_BUFFERS_USE_MALLOC=y +# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set +# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +CONFIG_PASSWORD_MINLEN=6 +CONFIG_MD5_SMALL=1 +CONFIG_SHA3_SMALL=1 +CONFIG_FEATURE_FAST_TOP=y +CONFIG_FEATURE_ETC_NETWORKS=y +CONFIG_FEATURE_ETC_SERVICES=y +CONFIG_FEATURE_EDITING=y +CONFIG_FEATURE_EDITING_MAX_LEN=1024 +CONFIG_FEATURE_EDITING_VI=y +CONFIG_FEATURE_EDITING_HISTORY=255 +CONFIG_FEATURE_EDITING_SAVEHISTORY=y +CONFIG_FEATURE_EDITING_SAVE_ON_EXIT=y +CONFIG_FEATURE_REVERSE_SEARCH=y +CONFIG_FEATURE_TAB_COMPLETION=y +CONFIG_FEATURE_USERNAME_COMPLETION=y +CONFIG_FEATURE_EDITING_FANCY_PROMPT=y +CONFIG_FEATURE_EDITING_WINCH=y +CONFIG_FEATURE_EDITING_ASK_TERMINAL=y +# CONFIG_LOCALE_SUPPORT is not set +CONFIG_UNICODE_SUPPORT=y +# CONFIG_UNICODE_USING_LOCALE is not set +# CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set +CONFIG_SUBST_WCHAR=63 +CONFIG_LAST_SUPPORTED_WCHAR=767 +CONFIG_UNICODE_COMBINING_WCHARS=y +CONFIG_UNICODE_WIDE_WCHARS=y +# CONFIG_UNICODE_BIDI_SUPPORT is not set +# CONFIG_UNICODE_NEUTRAL_TABLE is not set +CONFIG_UNICODE_PRESERVE_BROKEN=y +CONFIG_FEATURE_NON_POSIX_CP=y +CONFIG_FEATURE_VERBOSE_CP_MESSAGE=y +CONFIG_FEATURE_USE_SENDFILE=y +CONFIG_FEATURE_COPYBUF_KB=4 +CONFIG_FEATURE_SKIP_ROOTFS=y +# CONFIG_MONOTONIC_SYSCALL is not set +CONFIG_IOCTL_HEX2STR_ERROR=y +CONFIG_FEATURE_HWIB=y + +# +# Applets +# + +# +# Archival Utilities +# +CONFIG_FEATURE_SEAMLESS_XZ=y +CONFIG_FEATURE_SEAMLESS_LZMA=y +CONFIG_FEATURE_SEAMLESS_BZ2=y +CONFIG_FEATURE_SEAMLESS_GZ=y +CONFIG_FEATURE_SEAMLESS_Z=y +CONFIG_AR=y +CONFIG_FEATURE_AR_LONG_FILENAMES=y +CONFIG_FEATURE_AR_CREATE=y +CONFIG_UNCOMPRESS=y +CONFIG_GUNZIP=y +CONFIG_ZCAT=y +CONFIG_FEATURE_GUNZIP_LONG_OPTIONS=y +CONFIG_BUNZIP2=y +CONFIG_BZCAT=y +CONFIG_UNLZMA=y +CONFIG_LZCAT=y +CONFIG_LZMA=y +CONFIG_UNXZ=y +CONFIG_XZCAT=y +CONFIG_XZ=y +CONFIG_BZIP2=y +CONFIG_BZIP2_SMALL=8 +CONFIG_FEATURE_BZIP2_DECOMPRESS=y +CONFIG_CPIO=y +CONFIG_FEATURE_CPIO_O=y +CONFIG_FEATURE_CPIO_P=y +# CONFIG_DPKG is not set +# CONFIG_DPKG_DEB is not set +CONFIG_GZIP=y +CONFIG_FEATURE_GZIP_LONG_OPTIONS=y +CONFIG_GZIP_FAST=0 +CONFIG_FEATURE_GZIP_LEVELS=y +CONFIG_FEATURE_GZIP_DECOMPRESS=y +CONFIG_LZOP=y +CONFIG_UNLZOP=y +CONFIG_LZOPCAT=y +CONFIG_LZOP_COMPR_HIGH=y +# CONFIG_RPM is not set +# CONFIG_RPM2CPIO is not set +CONFIG_TAR=y +CONFIG_FEATURE_TAR_LONG_OPTIONS=y +CONFIG_FEATURE_TAR_CREATE=y +CONFIG_FEATURE_TAR_AUTODETECT=y +CONFIG_FEATURE_TAR_FROM=y +CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY=y +CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY=y +CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +CONFIG_FEATURE_TAR_TO_COMMAND=y +CONFIG_FEATURE_TAR_UNAME_GNAME=y +CONFIG_FEATURE_TAR_NOPRESERVE_TIME=y +# CONFIG_FEATURE_TAR_SELINUX is not set +CONFIG_UNZIP=y +CONFIG_FEATURE_UNZIP_CDF=y +CONFIG_FEATURE_UNZIP_BZIP2=y +CONFIG_FEATURE_UNZIP_LZMA=y +CONFIG_FEATURE_UNZIP_XZ=y +CONFIG_FEATURE_LZMA_FAST=y + +# +# Coreutils +# +CONFIG_BASENAME=y +CONFIG_CAT=y +CONFIG_FEATURE_CATN=y +CONFIG_FEATURE_CATV=y +CONFIG_CHGRP=y +CONFIG_CHMOD=y +CONFIG_CHOWN=y +CONFIG_FEATURE_CHOWN_LONG_OPTIONS=y +CONFIG_CHROOT=y +CONFIG_CKSUM=y +CONFIG_COMM=y +CONFIG_CP=y +CONFIG_FEATURE_CP_LONG_OPTIONS=y +CONFIG_FEATURE_CP_REFLINK=y +CONFIG_CUT=y +CONFIG_DATE=y +CONFIG_FEATURE_DATE_ISOFMT=y +CONFIG_FEATURE_DATE_NANO=y +CONFIG_FEATURE_DATE_COMPAT=y +CONFIG_DD=y +CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +CONFIG_FEATURE_DD_THIRD_STATUS_LINE=y +CONFIG_FEATURE_DD_IBS_OBS=y +CONFIG_FEATURE_DD_STATUS=y +CONFIG_DF=y +CONFIG_FEATURE_DF_FANCY=y +CONFIG_DIRNAME=y +CONFIG_DOS2UNIX=y +CONFIG_UNIX2DOS=y +CONFIG_DU=y +CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y +CONFIG_ECHO=y +CONFIG_FEATURE_FANCY_ECHO=y +CONFIG_ENV=y +CONFIG_EXPAND=y +CONFIG_UNEXPAND=y +CONFIG_EXPR=y +CONFIG_EXPR_MATH_SUPPORT_64=y +CONFIG_FACTOR=y +CONFIG_FALSE=y +# CONFIG_FOLD is not set +CONFIG_HEAD=y +CONFIG_FEATURE_FANCY_HEAD=y +# CONFIG_HOSTID is not set +CONFIG_ID=y +CONFIG_GROUPS=y +CONFIG_INSTALL=y +CONFIG_FEATURE_INSTALL_LONG_OPTIONS=y +CONFIG_LINK=y +CONFIG_LN=y +# CONFIG_LOGNAME is not set +CONFIG_LS=y +CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_FEATURE_LS_WIDTH=y +CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_FEATURE_LS_USERNAME=y +CONFIG_FEATURE_LS_COLOR=y +CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y +CONFIG_MD5SUM=y +CONFIG_SHA1SUM=y +CONFIG_SHA256SUM=y +CONFIG_SHA512SUM=y +CONFIG_SHA3SUM=y + +# +# Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum +# +CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y +CONFIG_MKDIR=y +CONFIG_MKFIFO=y +CONFIG_MKNOD=y +CONFIG_MKTEMP=y +CONFIG_MV=y +CONFIG_NICE=y +CONFIG_NL=y +CONFIG_NOHUP=y +CONFIG_NPROC=y +# CONFIG_OD is not set +CONFIG_PASTE=y +CONFIG_PRINTENV=y +CONFIG_PRINTF=y +CONFIG_PWD=y +CONFIG_READLINK=y +CONFIG_FEATURE_READLINK_FOLLOW=y +CONFIG_REALPATH=y +CONFIG_RM=y +CONFIG_RMDIR=y +CONFIG_SEQ=y +CONFIG_SHRED=y +CONFIG_SHUF=y +CONFIG_SLEEP=y +CONFIG_FEATURE_FANCY_SLEEP=y +CONFIG_SORT=y +CONFIG_FEATURE_SORT_BIG=y +CONFIG_FEATURE_SORT_OPTIMIZE_MEMORY=y +CONFIG_SPLIT=y +CONFIG_FEATURE_SPLIT_FANCY=y +CONFIG_STAT=y +CONFIG_FEATURE_STAT_FORMAT=y +CONFIG_FEATURE_STAT_FILESYSTEM=y +CONFIG_STTY=y +CONFIG_SUM=y +CONFIG_SYNC=y +CONFIG_FEATURE_SYNC_FANCY=y +CONFIG_FSYNC=y +CONFIG_TAC=y +CONFIG_TAIL=y +CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_TEE=y +CONFIG_FEATURE_TEE_USE_BLOCK_IO=y +CONFIG_TEST=y +CONFIG_TEST1=y +CONFIG_TEST2=y +CONFIG_FEATURE_TEST_64=y +CONFIG_TIMEOUT=y +CONFIG_TOUCH=y +CONFIG_FEATURE_TOUCH_NODEREF=y +CONFIG_FEATURE_TOUCH_SUSV3=y +CONFIG_TR=y +CONFIG_FEATURE_TR_CLASSES=y +CONFIG_FEATURE_TR_EQUIV=y +CONFIG_TRUE=y +CONFIG_TRUNCATE=y +CONFIG_TTY=y +CONFIG_UNAME=y +CONFIG_UNAME_OSNAME="GNU/Linux" +CONFIG_BB_ARCH=y +CONFIG_UNIQ=y +CONFIG_UNLINK=y +CONFIG_USLEEP=y +# CONFIG_UUDECODE is not set +CONFIG_BASE64=y +# CONFIG_UUENCODE is not set +CONFIG_WC=y +CONFIG_FEATURE_WC_LARGE=y +CONFIG_WHO=y +CONFIG_W=y +CONFIG_USERS=y +CONFIG_WHOAMI=y +CONFIG_YES=y + +# +# Common options +# +CONFIG_FEATURE_VERBOSE=y + +# +# Common options for cp and mv +# +CONFIG_FEATURE_PRESERVE_HARDLINKS=y + +# +# Common options for df, du, ls +# +CONFIG_FEATURE_HUMAN_READABLE=y + +# +# Console Utilities +# +CONFIG_CHVT=y +CONFIG_CLEAR=y +CONFIG_DEALLOCVT=y +CONFIG_DUMPKMAP=y +CONFIG_FGCONSOLE=y +CONFIG_KBD_MODE=y +CONFIG_LOADFONT=y +CONFIG_SETFONT=y +CONFIG_FEATURE_SETFONT_TEXTUAL_MAP=y +CONFIG_DEFAULT_SETFONT_DIR="" + +# +# Common options for loadfont and setfont +# +CONFIG_FEATURE_LOADFONT_PSF2=y +CONFIG_FEATURE_LOADFONT_RAW=y +CONFIG_LOADKMAP=y +CONFIG_OPENVT=y +CONFIG_RESET=y +CONFIG_RESIZE=y +CONFIG_FEATURE_RESIZE_PRINT=y +CONFIG_SETCONSOLE=y +CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS=y +CONFIG_SETKEYCODES=y +CONFIG_SETLOGCONS=y +CONFIG_SHOWKEY=y + +# +# Debian Utilities +# +CONFIG_PIPE_PROGRESS=y +# CONFIG_RUN_PARTS is not set +# CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS is not set +# CONFIG_FEATURE_RUN_PARTS_FANCY is not set +CONFIG_START_STOP_DAEMON=y +CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS=y +CONFIG_FEATURE_START_STOP_DAEMON_FANCY=y +CONFIG_WHICH=y + +# +# klibc-utils +# +CONFIG_MINIPS=y +CONFIG_NUKE=y +CONFIG_RESUME=y +CONFIG_RUN_INIT=y + +# +# Editors +# +CONFIG_AWK=y +# CONFIG_FEATURE_AWK_LIBM is not set +CONFIG_FEATURE_AWK_GNU_EXTENSIONS=y +CONFIG_CMP=y +CONFIG_DIFF=y +CONFIG_FEATURE_DIFF_LONG_OPTIONS=y +CONFIG_FEATURE_DIFF_DIR=y +CONFIG_ED=y +CONFIG_PATCH=y +CONFIG_SED=y +CONFIG_VI=y +CONFIG_FEATURE_VI_MAX_LEN=4096 +CONFIG_FEATURE_VI_8BIT=y +CONFIG_FEATURE_VI_COLON=y +CONFIG_FEATURE_VI_YANKMARK=y +CONFIG_FEATURE_VI_SEARCH=y +CONFIG_FEATURE_VI_REGEX_SEARCH=y +CONFIG_FEATURE_VI_USE_SIGNALS=y +CONFIG_FEATURE_VI_DOT_CMD=y +CONFIG_FEATURE_VI_READONLY=y +CONFIG_FEATURE_VI_SETOPTS=y +CONFIG_FEATURE_VI_SET=y +CONFIG_FEATURE_VI_WIN_RESIZE=y +CONFIG_FEATURE_VI_ASK_TERMINAL=y +CONFIG_FEATURE_VI_UNDO=y +CONFIG_FEATURE_VI_UNDO_QUEUE=y +CONFIG_FEATURE_VI_UNDO_QUEUE_MAX=256 +CONFIG_FEATURE_ALLOW_EXEC=y + +# +# Finding Utilities +# +CONFIG_FIND=y +CONFIG_FEATURE_FIND_PRINT0=y +CONFIG_FEATURE_FIND_MTIME=y +CONFIG_FEATURE_FIND_MMIN=y +CONFIG_FEATURE_FIND_PERM=y +CONFIG_FEATURE_FIND_TYPE=y +CONFIG_FEATURE_FIND_EXECUTABLE=y +CONFIG_FEATURE_FIND_XDEV=y +CONFIG_FEATURE_FIND_MAXDEPTH=y +CONFIG_FEATURE_FIND_NEWER=y +CONFIG_FEATURE_FIND_INUM=y +CONFIG_FEATURE_FIND_EXEC=y +CONFIG_FEATURE_FIND_EXEC_PLUS=y +CONFIG_FEATURE_FIND_USER=y +CONFIG_FEATURE_FIND_GROUP=y +CONFIG_FEATURE_FIND_NOT=y +CONFIG_FEATURE_FIND_DEPTH=y +CONFIG_FEATURE_FIND_PAREN=y +CONFIG_FEATURE_FIND_SIZE=y +CONFIG_FEATURE_FIND_PRUNE=y +CONFIG_FEATURE_FIND_QUIT=y +CONFIG_FEATURE_FIND_DELETE=y +CONFIG_FEATURE_FIND_EMPTY=y +CONFIG_FEATURE_FIND_PATH=y +CONFIG_FEATURE_FIND_REGEX=y +# CONFIG_FEATURE_FIND_CONTEXT is not set +CONFIG_FEATURE_FIND_LINKS=y +CONFIG_GREP=y +CONFIG_EGREP=y +CONFIG_FGREP=y +CONFIG_FEATURE_GREP_CONTEXT=y +CONFIG_XARGS=y +CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y +CONFIG_FEATURE_XARGS_SUPPORT_REPL_STR=y +CONFIG_FEATURE_XARGS_SUPPORT_PARALLEL=y +CONFIG_FEATURE_XARGS_SUPPORT_ARGS_FILE=y + +# +# Init Utilities +# +# CONFIG_BOOTCHARTD is not set +# CONFIG_FEATURE_BOOTCHARTD_BLOATED_HEADER is not set +# CONFIG_FEATURE_BOOTCHARTD_CONFIG_FILE is not set +CONFIG_GINIT=y +CONFIG_HALT=y +CONFIG_POWEROFF=y +CONFIG_REBOOT=y +CONFIG_FEATURE_WAIT_FOR_INIT=y +# CONFIG_FEATURE_CALL_TELINIT is not set +CONFIG_TELINIT_PATH="" +CONFIG_INIT=y +CONFIG_LINUXRC=y +CONFIG_FEATURE_USE_INITTAB=y +CONFIG_FEATURE_KILL_REMOVED=y +CONFIG_FEATURE_KILL_DELAY=0 +CONFIG_FEATURE_INIT_SCTTY=y +CONFIG_FEATURE_INIT_SYSLOG=y +CONFIG_FEATURE_INIT_QUIET=y +CONFIG_FEATURE_INIT_COREDUMPS=y +CONFIG_INIT_TERMINAL_TYPE="linux" +CONFIG_FEATURE_INIT_MODIFY_CMDLINE=y + +# +# Login/Password Management Utilities +# +CONFIG_FEATURE_SHADOWPASSWDS=y +CONFIG_USE_BB_PWD_GRP=y +CONFIG_USE_BB_SHADOW=y +CONFIG_USE_BB_CRYPT=y +CONFIG_USE_BB_CRYPT_SHA=y +# CONFIG_ADD_SHELL is not set +# CONFIG_REMOVE_SHELL is not set +CONFIG_ADDGROUP=y +CONFIG_FEATURE_ADDUSER_TO_GROUP=y +CONFIG_ADDUSER=y +CONFIG_FEATURE_CHECK_NAMES=y +CONFIG_LAST_ID=60000 +CONFIG_FIRST_SYSTEM_ID=100 +CONFIG_LAST_SYSTEM_ID=999 +CONFIG_CHPASSWD=y +CONFIG_FEATURE_DEFAULT_PASSWD_ALGO="des" +CONFIG_CRYPTPW=y +CONFIG_MKPASSWD=y +CONFIG_DELUSER=y +CONFIG_DELGROUP=y +CONFIG_FEATURE_DEL_USER_FROM_GROUP=y +CONFIG_GETTY=y +CONFIG_LOGIN=y +CONFIG_LOGIN_SESSION_AS_CHILD=y +CONFIG_LOGIN_SCRIPTS=y +CONFIG_FEATURE_NOLOGIN=y +CONFIG_FEATURE_SECURETTY=y +CONFIG_PASSWD=y +CONFIG_FEATURE_PASSWD_WEAK_CHECK=y +CONFIG_SU=y +CONFIG_FEATURE_SU_SYSLOG=y +CONFIG_FEATURE_SU_CHECKS_SHELLS=y +CONFIG_FEATURE_SU_BLANK_PW_NEEDS_SECURE_TTY=y +# CONFIG_SULOGIN is not set +CONFIG_VLOCK=y + +# +# Linux Ext2 FS Progs +# +CONFIG_CHATTR=y +CONFIG_FSCK=y +CONFIG_LSATTR=y +CONFIG_TUNE2FS=y + +# +# Linux Module Utilities +# +CONFIG_MODPROBE_SMALL=y +CONFIG_DEPMOD=y +CONFIG_INSMOD=y +CONFIG_LSMOD=y +# CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set +CONFIG_MODINFO=y +CONFIG_MODPROBE=y +# CONFIG_FEATURE_MODPROBE_BLACKLIST is not set +CONFIG_RMMOD=y + +# +# Options common to multiple modutils +# +CONFIG_FEATURE_CMDLINE_MODULE_OPTIONS=y +CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED=y +# CONFIG_FEATURE_2_4_MODULES is not set +# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set +# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set +# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set +# CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set +# CONFIG_FEATURE_INSMOD_TRY_MMAP is not set +# CONFIG_FEATURE_MODUTILS_ALIAS is not set +# CONFIG_FEATURE_MODUTILS_SYMBOLS is not set +CONFIG_DEFAULT_MODULES_DIR="/lib/modules" +CONFIG_DEFAULT_DEPMOD_FILE="modules.dep" + +# +# Linux System Utilities +# +CONFIG_ACPID=y +CONFIG_FEATURE_ACPID_COMPAT=y +CONFIG_BLKDISCARD=y +CONFIG_BLKID=y +CONFIG_FEATURE_BLKID_TYPE=y +CONFIG_BLOCKDEV=y +CONFIG_CAL=y +CONFIG_CHRT=y +CONFIG_DMESG=y +CONFIG_FEATURE_DMESG_PRETTY=y +CONFIG_EJECT=y +CONFIG_FEATURE_EJECT_SCSI=y +CONFIG_FALLOCATE=y +CONFIG_FATATTR=y +CONFIG_FBSET=y +CONFIG_FEATURE_FBSET_FANCY=y +CONFIG_FEATURE_FBSET_READMODE=y +CONFIG_FDFORMAT=y +CONFIG_FDISK=y +# CONFIG_FDISK_SUPPORT_LARGE_DISKS is not set +CONFIG_FEATURE_FDISK_WRITABLE=y +CONFIG_FEATURE_AIX_LABEL=y +CONFIG_FEATURE_SGI_LABEL=y +CONFIG_FEATURE_SUN_LABEL=y +CONFIG_FEATURE_OSF_LABEL=y +CONFIG_FEATURE_GPT_LABEL=y +CONFIG_FEATURE_FDISK_ADVANCED=y +CONFIG_FINDFS=y +CONFIG_FLOCK=y +CONFIG_FDFLUSH=y +CONFIG_FREERAMDISK=y +# CONFIG_FSCK_MINIX is not set +CONFIG_FSFREEZE=y +CONFIG_FSTRIM=y +CONFIG_GETOPT=y +CONFIG_FEATURE_GETOPT_LONG=y +CONFIG_HEXDUMP=y +CONFIG_FEATURE_HEXDUMP_REVERSE=y +CONFIG_HD=y +CONFIG_XXD=y +CONFIG_HWCLOCK=y +CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS=y +CONFIG_IONICE=y +CONFIG_IPCRM=y +CONFIG_IPCS=y +CONFIG_LAST=y +CONFIG_FEATURE_LAST_FANCY=y +CONFIG_LOSETUP=y +CONFIG_LSPCI=y +CONFIG_LSUSB=y +CONFIG_MDEV=y +CONFIG_FEATURE_MDEV_CONF=y +CONFIG_FEATURE_MDEV_RENAME=y +CONFIG_FEATURE_MDEV_RENAME_REGEXP=y +CONFIG_FEATURE_MDEV_EXEC=y +CONFIG_FEATURE_MDEV_LOAD_FIRMWARE=y +CONFIG_FEATURE_MDEV_DAEMON=y +CONFIG_MESG=y +CONFIG_FEATURE_MESG_ENABLE_ONLY_GROUP=y +CONFIG_MKE2FS=y +CONFIG_MKFS_EXT2=y +# CONFIG_MKFS_MINIX is not set +# CONFIG_FEATURE_MINIX2 is not set +CONFIG_MKFS_REISER=y +CONFIG_MKDOSFS=y +CONFIG_MKFS_VFAT=y +CONFIG_MKSWAP=y +CONFIG_FEATURE_MKSWAP_UUID=y +CONFIG_MORE=y +CONFIG_MOUNT=y +CONFIG_FEATURE_MOUNT_FAKE=y +CONFIG_FEATURE_MOUNT_VERBOSE=y +CONFIG_FEATURE_MOUNT_HELPERS=y +CONFIG_FEATURE_MOUNT_LABEL=y +# CONFIG_FEATURE_MOUNT_NFS is not set +CONFIG_FEATURE_MOUNT_CIFS=y +CONFIG_FEATURE_MOUNT_FLAGS=y +CONFIG_FEATURE_MOUNT_FSTAB=y +CONFIG_FEATURE_MOUNT_OTHERTAB=y +CONFIG_MOUNTPOINT=y +CONFIG_NOLOGIN=y +CONFIG_NOLOGIN_DEPENDENCIES=y +CONFIG_NSENTER=y +CONFIG_PIVOT_ROOT=y +CONFIG_RDATE=y +# CONFIG_RDEV is not set +# CONFIG_READPROFILE is not set +CONFIG_RENICE=y +CONFIG_REV=y +CONFIG_RTCWAKE=y +CONFIG_SCRIPT=y +CONFIG_SCRIPTREPLAY=y +CONFIG_SETARCH=y +CONFIG_LINUX32=y +CONFIG_LINUX64=y +CONFIG_SETPRIV=y +CONFIG_FEATURE_SETPRIV_DUMP=y +CONFIG_FEATURE_SETPRIV_CAPABILITIES=y +CONFIG_FEATURE_SETPRIV_CAPABILITY_NAMES=y +CONFIG_SETSID=y +CONFIG_SWAPON=y +CONFIG_FEATURE_SWAPON_DISCARD=y +CONFIG_FEATURE_SWAPON_PRI=y +CONFIG_SWAPOFF=y +CONFIG_FEATURE_SWAPONOFF_LABEL=y +CONFIG_SWITCH_ROOT=y +# CONFIG_TASKSET is not set +# CONFIG_FEATURE_TASKSET_FANCY is not set +# CONFIG_FEATURE_TASKSET_CPULIST is not set +CONFIG_UEVENT=y +CONFIG_UMOUNT=y +CONFIG_FEATURE_UMOUNT_ALL=y +CONFIG_UNSHARE=y +CONFIG_WALL=y + +# +# Common options for mount/umount +# +CONFIG_FEATURE_MOUNT_LOOP=y +CONFIG_FEATURE_MOUNT_LOOP_CREATE=y +CONFIG_FEATURE_MTAB_SUPPORT=y +CONFIG_VOLUMEID=y + +# +# Filesystem/Volume identification +# +CONFIG_FEATURE_VOLUMEID_BCACHE=y +CONFIG_FEATURE_VOLUMEID_BTRFS=y +CONFIG_FEATURE_VOLUMEID_CRAMFS=y +CONFIG_FEATURE_VOLUMEID_EXFAT=y +CONFIG_FEATURE_VOLUMEID_EXT=y +CONFIG_FEATURE_VOLUMEID_F2FS=y +CONFIG_FEATURE_VOLUMEID_FAT=y +CONFIG_FEATURE_VOLUMEID_HFS=y +CONFIG_FEATURE_VOLUMEID_ISO9660=y +CONFIG_FEATURE_VOLUMEID_JFS=y +CONFIG_FEATURE_VOLUMEID_LFS=y +CONFIG_FEATURE_VOLUMEID_LINUXRAID=y +CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y +CONFIG_FEATURE_VOLUMEID_LUKS=y +CONFIG_FEATURE_VOLUMEID_MINIX=y +CONFIG_FEATURE_VOLUMEID_NILFS=y +CONFIG_FEATURE_VOLUMEID_NTFS=y +CONFIG_FEATURE_VOLUMEID_OCFS2=y +CONFIG_FEATURE_VOLUMEID_REISERFS=y +CONFIG_FEATURE_VOLUMEID_ROMFS=y +CONFIG_FEATURE_VOLUMEID_SQUASHFS=y +CONFIG_FEATURE_VOLUMEID_SYSV=y +CONFIG_FEATURE_VOLUMEID_UBIFS=y +CONFIG_FEATURE_VOLUMEID_UDF=y +CONFIG_FEATURE_VOLUMEID_XFS=y + +# +# Miscellaneous Utilities +# +CONFIG_ADJTIMEX=y +CONFIG_BBCONFIG=y +CONFIG_FEATURE_COMPRESS_BBCONFIG=y +CONFIG_BC=y +# CONFIG_DC is not set +CONFIG_FEATURE_DC_BIG=y +# CONFIG_FEATURE_DC_LIBM is not set +CONFIG_FEATURE_BC_INTERACTIVE=y +CONFIG_FEATURE_BC_LONG_OPTIONS=y +# CONFIG_BEEP is not set +CONFIG_FEATURE_BEEP_FREQ=0 +CONFIG_FEATURE_BEEP_LENGTH_MS=0 +CONFIG_CHAT=y +CONFIG_FEATURE_CHAT_NOFAIL=y +CONFIG_FEATURE_CHAT_TTY_HIFI=y +CONFIG_FEATURE_CHAT_IMPLICIT_CR=y +CONFIG_FEATURE_CHAT_SWALLOW_OPTS=y +CONFIG_FEATURE_CHAT_SEND_ESCAPES=y +CONFIG_FEATURE_CHAT_VAR_ABORT_LEN=y +CONFIG_FEATURE_CHAT_CLR_ABORT=y +CONFIG_CONSPY=y +CONFIG_CROND=y +CONFIG_FEATURE_CROND_D=y +CONFIG_FEATURE_CROND_CALL_SENDMAIL=y +CONFIG_FEATURE_CROND_SPECIAL_TIMES=y +CONFIG_FEATURE_CROND_DIR="/var/spool/cron" +# CONFIG_CRONTAB is not set +# CONFIG_DEVFSD is not set +# CONFIG_DEVFSD_MODLOAD is not set +# CONFIG_DEVFSD_FG_NP is not set +# CONFIG_DEVFSD_VERBOSE is not set +# CONFIG_FEATURE_DEVFS is not set +CONFIG_DEVMEM=y +# CONFIG_FBSPLASH is not set +CONFIG_FLASH_ERASEALL=y +CONFIG_FLASH_LOCK=y +CONFIG_FLASH_UNLOCK=y +CONFIG_FLASHCP=y +CONFIG_HDPARM=y +CONFIG_FEATURE_HDPARM_GET_IDENTITY=y +CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET=y +CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA=y +CONFIG_HEXEDIT=y +CONFIG_I2CGET=y +CONFIG_I2CSET=y +CONFIG_I2CDUMP=y +CONFIG_I2CDETECT=y +CONFIG_I2CTRANSFER=y +# CONFIG_INOTIFYD is not set +CONFIG_LESS=y +CONFIG_FEATURE_LESS_MAXLINES=9999999 +CONFIG_FEATURE_LESS_BRACKETS=y +CONFIG_FEATURE_LESS_FLAGS=y +CONFIG_FEATURE_LESS_TRUNCATE=y +CONFIG_FEATURE_LESS_MARKS=y +CONFIG_FEATURE_LESS_REGEXP=y +CONFIG_FEATURE_LESS_WINCH=y +CONFIG_FEATURE_LESS_ASK_TERMINAL=y +CONFIG_FEATURE_LESS_DASHCMD=y +CONFIG_FEATURE_LESS_LINENUMS=y +CONFIG_FEATURE_LESS_RAW=y +CONFIG_FEATURE_LESS_ENV=y +CONFIG_LSSCSI=y +CONFIG_MAKEDEVS=y +# CONFIG_FEATURE_MAKEDEVS_LEAF is not set +CONFIG_FEATURE_MAKEDEVS_TABLE=y +CONFIG_MAN=y +CONFIG_MICROCOM=y +CONFIG_MIM=y +CONFIG_MT=y +CONFIG_NANDWRITE=y +CONFIG_NANDDUMP=y +CONFIG_PARTPROBE=y +CONFIG_RAIDAUTORUN=y +CONFIG_READAHEAD=y +# CONFIG_RFKILL is not set +CONFIG_RUNLEVEL=y +CONFIG_RX=y +CONFIG_SETFATTR=y +CONFIG_SETSERIAL=y +CONFIG_STRINGS=y +CONFIG_TIME=y +CONFIG_TS=y +CONFIG_TTYSIZE=y +CONFIG_UBIATTACH=y +CONFIG_UBIDETACH=y +CONFIG_UBIMKVOL=y +CONFIG_UBIRMVOL=y +CONFIG_UBIRSVOL=y +CONFIG_UBIUPDATEVOL=y +CONFIG_UBIRENAME=y +CONFIG_VOLNAME=y +CONFIG_WATCHDOG=y + +# +# Networking Utilities +# +CONFIG_FEATURE_IPV6=y +CONFIG_FEATURE_UNIX_LOCAL=y +CONFIG_FEATURE_PREFER_IPV4_ADDRESS=y +CONFIG_VERBOSE_RESOLUTION_ERRORS=y +CONFIG_FEATURE_TLS_SHA1=y +CONFIG_ARP=y +CONFIG_ARPING=y +CONFIG_BRCTL=y +CONFIG_FEATURE_BRCTL_FANCY=y +CONFIG_FEATURE_BRCTL_SHOW=y +# CONFIG_DNSD is not set +CONFIG_ETHER_WAKE=y +CONFIG_FTPD=y +CONFIG_FEATURE_FTPD_WRITE=y +CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST=y +CONFIG_FEATURE_FTPD_AUTHENTICATION=y +# CONFIG_FTPGET is not set +# CONFIG_FTPPUT is not set +# CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS is not set +CONFIG_HOSTNAME=y +CONFIG_DNSDOMAINNAME=y +CONFIG_HTTPD=y +CONFIG_FEATURE_HTTPD_RANGES=y +CONFIG_FEATURE_HTTPD_SETUID=y +CONFIG_FEATURE_HTTPD_BASIC_AUTH=y +CONFIG_FEATURE_HTTPD_AUTH_MD5=y +CONFIG_FEATURE_HTTPD_CGI=y +CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR=y +CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV=y +CONFIG_FEATURE_HTTPD_ENCODE_URL_STR=y +CONFIG_FEATURE_HTTPD_ERROR_PAGES=y +CONFIG_FEATURE_HTTPD_PROXY=y +CONFIG_FEATURE_HTTPD_GZIP=y +CONFIG_IFCONFIG=y +CONFIG_FEATURE_IFCONFIG_STATUS=y +CONFIG_FEATURE_IFCONFIG_SLIP=y +CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ=y +CONFIG_FEATURE_IFCONFIG_HW=y +CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y +CONFIG_IFENSLAVE=y +CONFIG_IFPLUGD=y +CONFIG_IFUP=y +CONFIG_IFDOWN=y +CONFIG_IFUPDOWN_IFSTATE_PATH="/run/ifstate" +CONFIG_FEATURE_IFUPDOWN_IP=y +CONFIG_FEATURE_IFUPDOWN_IPV4=y +CONFIG_FEATURE_IFUPDOWN_IPV6=y +CONFIG_FEATURE_IFUPDOWN_MAPPING=y +CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP=y +# CONFIG_INETD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN is not set +# CONFIG_FEATURE_INETD_RPC is not set +CONFIG_IP=y +CONFIG_IPADDR=y +CONFIG_IPLINK=y +CONFIG_IPROUTE=y +CONFIG_IPTUNNEL=y +CONFIG_IPRULE=y +CONFIG_IPNEIGH=y +CONFIG_FEATURE_IP_ADDRESS=y +CONFIG_FEATURE_IP_LINK=y +CONFIG_FEATURE_IP_ROUTE=y +CONFIG_FEATURE_IP_ROUTE_DIR="/etc/iproute2" +CONFIG_FEATURE_IP_TUNNEL=y +CONFIG_FEATURE_IP_RULE=y +CONFIG_FEATURE_IP_NEIGH=y +CONFIG_FEATURE_IP_RARE_PROTOCOLS=y +# CONFIG_IPCALC is not set +# CONFIG_FEATURE_IPCALC_LONG_OPTIONS is not set +# CONFIG_FEATURE_IPCALC_FANCY is not set +# CONFIG_FAKEIDENTD is not set +CONFIG_NAMEIF=y +CONFIG_FEATURE_NAMEIF_EXTENDED=y +CONFIG_NBDCLIENT=y +CONFIG_NC=y +CONFIG_NETCAT=y +CONFIG_NC_SERVER=y +CONFIG_NC_EXTRA=y +CONFIG_NC_110_COMPAT=y +CONFIG_NETSTAT=y +CONFIG_FEATURE_NETSTAT_WIDE=y +CONFIG_FEATURE_NETSTAT_PRG=y +CONFIG_NSLOOKUP=y +CONFIG_FEATURE_NSLOOKUP_BIG=y +CONFIG_FEATURE_NSLOOKUP_LONG_OPTIONS=y +CONFIG_NTPD=y +CONFIG_FEATURE_NTPD_SERVER=y +CONFIG_FEATURE_NTPD_CONF=y +CONFIG_FEATURE_NTP_AUTH=y +CONFIG_PING=y +CONFIG_PING6=y +CONFIG_FEATURE_FANCY_PING=y +CONFIG_PSCAN=y +CONFIG_ROUTE=y +# CONFIG_SLATTACH is not set +CONFIG_SSL_CLIENT=y +CONFIG_TC=y +CONFIG_FEATURE_TC_INGRESS=y +# CONFIG_TCPSVD is not set +# CONFIG_UDPSVD is not set +CONFIG_TELNET=y +CONFIG_FEATURE_TELNET_TTYPE=y +CONFIG_FEATURE_TELNET_AUTOLOGIN=y +CONFIG_FEATURE_TELNET_WIDTH=y +CONFIG_TELNETD=y +CONFIG_FEATURE_TELNETD_STANDALONE=y +CONFIG_FEATURE_TELNETD_INETD_WAIT=y +CONFIG_TFTP=y +CONFIG_FEATURE_TFTP_PROGRESS_BAR=y +CONFIG_FEATURE_TFTP_HPA_COMPAT=y +CONFIG_TFTPD=y +CONFIG_FEATURE_TFTP_GET=y +CONFIG_FEATURE_TFTP_PUT=y +CONFIG_FEATURE_TFTP_BLOCKSIZE=y +# CONFIG_TFTP_DEBUG is not set +CONFIG_TLS=y +CONFIG_TRACEROUTE=y +CONFIG_TRACEROUTE6=y +CONFIG_FEATURE_TRACEROUTE_VERBOSE=y +CONFIG_FEATURE_TRACEROUTE_USE_ICMP=y +CONFIG_TUNCTL=y +CONFIG_FEATURE_TUNCTL_UG=y +CONFIG_VCONFIG=y +CONFIG_WGET=y +CONFIG_FEATURE_WGET_LONG_OPTIONS=y +CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_FEATURE_WGET_AUTHENTICATION=y +CONFIG_FEATURE_WGET_TIMEOUT=y +CONFIG_FEATURE_WGET_HTTPS=y +CONFIG_FEATURE_WGET_OPENSSL=y +CONFIG_WHOIS=y +CONFIG_ZCIP=y +CONFIG_UDHCPD=y +CONFIG_FEATURE_UDHCPD_BASE_IP_ON_MAC=y +CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY=y +CONFIG_DHCPD_LEASES_FILE="/var/lib/misc/udhcpd.leases" +CONFIG_DUMPLEASES=y +CONFIG_DHCPRELAY=y +CONFIG_UDHCPC=y +CONFIG_FEATURE_UDHCPC_ARPING=y +CONFIG_FEATURE_UDHCPC_SANITIZEOPT=y +CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" +CONFIG_UDHCPC6=y +CONFIG_FEATURE_UDHCPC6_RFC3646=y +CONFIG_FEATURE_UDHCPC6_RFC4704=y +CONFIG_FEATURE_UDHCPC6_RFC4833=y +CONFIG_FEATURE_UDHCPC6_RFC5970=y + +# +# Common options for DHCP applets +# +CONFIG_FEATURE_UDHCP_PORT=y +CONFIG_UDHCP_DEBUG=2 +CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 +CONFIG_FEATURE_UDHCP_RFC3397=y +CONFIG_FEATURE_UDHCP_8021Q=y +CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -n" + +# +# Print Utilities +# +# CONFIG_LPD is not set +CONFIG_LPR=y +CONFIG_LPQ=y + +# +# Mail Utilities +# +# CONFIG_MAKEMIME is not set +CONFIG_POPMAILDIR=y +CONFIG_FEATURE_POPMAILDIR_DELIVERY=y +# CONFIG_REFORMIME is not set +# CONFIG_FEATURE_REFORMIME_COMPAT is not set +CONFIG_SENDMAIL=y +CONFIG_FEATURE_MIME_CHARSET="us-ascii" + +# +# Process Utilities +# +CONFIG_FREE=y +CONFIG_FUSER=y +CONFIG_IOSTAT=y +CONFIG_KILL=y +CONFIG_KILLALL=y +CONFIG_KILLALL5=y +CONFIG_LSOF=y +CONFIG_MPSTAT=y +CONFIG_NMETER=y +CONFIG_PGREP=y +CONFIG_PKILL=y +CONFIG_PIDOF=y +CONFIG_FEATURE_PIDOF_SINGLE=y +CONFIG_FEATURE_PIDOF_OMIT=y +CONFIG_PMAP=y +CONFIG_POWERTOP=y +CONFIG_FEATURE_POWERTOP_INTERACTIVE=y +CONFIG_PS=y +# CONFIG_FEATURE_PS_WIDE is not set +# CONFIG_FEATURE_PS_LONG is not set +CONFIG_FEATURE_PS_TIME=y +CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS=y +CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS=y +CONFIG_PSTREE=y +CONFIG_PWDX=y +# CONFIG_SMEMCAP is not set +CONFIG_BB_SYSCTL=y +CONFIG_TOP=y +CONFIG_FEATURE_TOP_INTERACTIVE=y +CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y +CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y +CONFIG_FEATURE_TOP_SMP_CPU=y +CONFIG_FEATURE_TOP_DECIMALS=y +CONFIG_FEATURE_TOP_SMP_PROCESS=y +CONFIG_FEATURE_TOPMEM=y +CONFIG_UPTIME=y +CONFIG_FEATURE_UPTIME_UTMP_SUPPORT=y +CONFIG_WATCH=y +CONFIG_FEATURE_SHOW_THREADS=y + +# +# Runit Utilities +# +CONFIG_CHPST=y +CONFIG_SETUIDGID=y +CONFIG_ENVUIDGID=y +CONFIG_ENVDIR=y +CONFIG_SOFTLIMIT=y +# CONFIG_RUNSV is not set +# CONFIG_RUNSVDIR is not set +# CONFIG_FEATURE_RUNSVDIR_LOG is not set +# CONFIG_SV is not set +CONFIG_SV_DEFAULT_SERVICE_DIR="/var/service" +CONFIG_SVC=y +CONFIG_SVOK=y +# CONFIG_SVLOGD is not set +# CONFIG_CHCON is not set +# CONFIG_GETENFORCE is not set +# CONFIG_GETSEBOOL is not set +# CONFIG_LOAD_POLICY is not set +# CONFIG_MATCHPATHCON is not set +# CONFIG_RUNCON is not set +# CONFIG_SELINUXENABLED is not set +# CONFIG_SESTATUS is not set +# CONFIG_SETENFORCE is not set +# CONFIG_SETFILES is not set +# CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set +# CONFIG_RESTORECON is not set +# CONFIG_SETSEBOOL is not set + +# +# Shells +# +CONFIG_SH_IS_ASH=y +# CONFIG_SH_IS_HUSH is not set +# CONFIG_SH_IS_NONE is not set +# CONFIG_BASH_IS_ASH is not set +# CONFIG_BASH_IS_HUSH is not set +CONFIG_BASH_IS_NONE=y +CONFIG_SHELL_ASH=y +CONFIG_ASH=y +CONFIG_ASH_OPTIMIZE_FOR_SIZE=y +CONFIG_ASH_INTERNAL_GLOB=y +CONFIG_ASH_BASH_COMPAT=y +# CONFIG_ASH_BASH_SOURCE_CURDIR is not set +CONFIG_ASH_BASH_NOT_FOUND_HOOK=y +CONFIG_ASH_JOB_CONTROL=y +CONFIG_ASH_ALIAS=y +CONFIG_ASH_RANDOM_SUPPORT=y +CONFIG_ASH_EXPAND_PRMT=y +CONFIG_ASH_IDLE_TIMEOUT=y +CONFIG_ASH_MAIL=y +CONFIG_ASH_ECHO=y +CONFIG_ASH_PRINTF=y +CONFIG_ASH_TEST=y +CONFIG_ASH_HELP=y +CONFIG_ASH_GETOPTS=y +CONFIG_ASH_CMDCMD=y +CONFIG_CTTYHACK=y +# CONFIG_HUSH is not set +CONFIG_SHELL_HUSH=y +CONFIG_HUSH_BASH_COMPAT=y +CONFIG_HUSH_BRACE_EXPANSION=y +CONFIG_HUSH_LINENO_VAR=y +CONFIG_HUSH_BASH_SOURCE_CURDIR=y +CONFIG_HUSH_INTERACTIVE=y +CONFIG_HUSH_SAVEHISTORY=y +CONFIG_HUSH_JOB=y +CONFIG_HUSH_TICK=y +CONFIG_HUSH_IF=y +CONFIG_HUSH_LOOPS=y +CONFIG_HUSH_CASE=y +CONFIG_HUSH_FUNCTIONS=y +CONFIG_HUSH_LOCAL=y +CONFIG_HUSH_RANDOM_SUPPORT=y +CONFIG_HUSH_MODE_X=y +CONFIG_HUSH_ECHO=y +CONFIG_HUSH_PRINTF=y +CONFIG_HUSH_TEST=y +CONFIG_HUSH_HELP=y +CONFIG_HUSH_EXPORT=y +CONFIG_HUSH_EXPORT_N=y +CONFIG_HUSH_READONLY=y +CONFIG_HUSH_KILL=y +CONFIG_HUSH_WAIT=y +CONFIG_HUSH_COMMAND=y +CONFIG_HUSH_TRAP=y +CONFIG_HUSH_TYPE=y +CONFIG_HUSH_TIMES=y +CONFIG_HUSH_READ=y +CONFIG_HUSH_SET=y +CONFIG_HUSH_UNSET=y +CONFIG_HUSH_ULIMIT=y +CONFIG_HUSH_UMASK=y +CONFIG_HUSH_GETOPTS=y +CONFIG_HUSH_MEMLEAK=y + +# +# Options common to all shells +# +CONFIG_FEATURE_SH_MATH=y +CONFIG_FEATURE_SH_MATH_64=y +CONFIG_FEATURE_SH_MATH_BASE=y +CONFIG_FEATURE_SH_EXTRA_QUIET=y +CONFIG_FEATURE_SH_STANDALONE=y +CONFIG_FEATURE_SH_NOFORK=y +CONFIG_FEATURE_SH_READ_FRAC=y +CONFIG_FEATURE_SH_HISTFILESIZE=y +CONFIG_FEATURE_SH_EMBEDDED_SCRIPTS=y + +# +# System Logging Utilities +# +# CONFIG_KLOGD is not set +# CONFIG_FEATURE_KLOGD_KLOGCTL is not set +# CONFIG_LOGGER is not set +CONFIG_LOGREAD=y +CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING=y +# CONFIG_SYSLOGD is not set +# CONFIG_FEATURE_ROTATE_LOGFILE is not set +# CONFIG_FEATURE_REMOTE_LOG is not set +# CONFIG_FEATURE_SYSLOGD_DUP is not set +# CONFIG_FEATURE_SYSLOGD_CFG is not set +# CONFIG_FEATURE_SYSLOGD_PRECISE_TIMESTAMPS is not set +CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE=0 +# CONFIG_FEATURE_IPC_SYSLOG is not set +CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=0 +# CONFIG_FEATURE_KMSG_SYSLOG is not set diff --git a/.a/Config Backups/portage/savedconfig/sys-firmware/ipxe-1.0.0_p20190728 b/.a/Config Backups/portage/savedconfig/sys-firmware/ipxe-1.0.0_p20190728 new file mode 100644 index 0000000..a165502 --- /dev/null +++ b/.a/Config Backups/portage/savedconfig/sys-firmware/ipxe-1.0.0_p20190728 @@ -0,0 +1,5 @@ +#undef BANNER_TIMEOUT +#define BANNER_TIMEOUT 0 +#define NET_PROTO_IPV6 +#define VMWARE_SETTINGS +#define CONSOLE_VMWARE diff --git a/.a/Config Backups/texmaker.ini b/.a/Config Backups/texmaker.ini new file mode 100644 index 0000000..4f5af47 --- /dev/null +++ b/.a/Config Backups/texmaker.ini @@ -0,0 +1,574 @@ +[General] +IniMode=true + +[texmaker] +Beamer\Author= +Beamer\BabelDefault=english +Beamer\Encoding=utf8 +Beamer\Size=11pt +Beamer\Theme=Warsaw +Color\Background=@Variant(\0\0\0\x43\x1\xff\xff......\0\0) +Color\Command=@Variant(\0\0\0\x43\x1\xff\xff\x8d\x8d\xa6\xa6\xce\xce\0\0) +Color\Comment=@Variant(\0\0\0\x43\x1\xff\xff\xae\xae\xae\xae\xae\xae\0\0) +Color\Highlight=@Variant(\0\0\0\x43\x1\xff\xff\xff\xff\0\0\0\0\0\0) +Color\Keyword=@Variant(\0\0\0\x43\x1\xff\xff\xfa\xfa\xdd\xdd--\0\0) +Color\KeywordGraphic=@Variant(\0\0\0\x43\x1\xff\xff\xf4\xf4{{\xda\xda\0\0) +Color\Line=@Variant(\0\0\0\x43\x1\xff\xffoooooo\0\0) +Color\Math=@Variant(\0\0\0\x43\x1\xff\xff\x61\x61\xce\xce<<\0\0) +Color\NumberGraphic=@Variant(\0\0\0\x43\x1\xff\xff\x66\x66\0\0\x66\x66\0\0) +Color\Standard=@Variant(\0\0\0\x43\x1\xff\xff\xf8\xf8\xf8\xf8\xf8\xf8\0\0) +Color\Todo=@Variant(\0\0\0\x43\x1\xff\xff\xff\xff\x64\x64\0\0\0\0) +Color\Verbatim=@Variant(\0\0\0\x43\x1\xff\xff\xe6\xe6\xa2\xa2RR\0\0) +Editor\AutoSave=false +Editor\Completion=true +Editor\Font%20Family=DejaVu Sans Mono +Editor\Font%20Size=12 +Editor\Line%20Numbers=true +Editor\Parentheses%20Matching=true +Editor\SvnEnable=false +Editor\SvnPath= +Editor\TabSpaces=false +Editor\TabWidth=4 +Editor\UserCompletion=@Invalid() +Editor\Watcher=false +Editor\WordWrap=true +Files\Input%20Encoding=UTF-8 +Files\Last%20Document=/home/kamen/Programming/GitLab-repos/uni-projects/Year 1/Algebra/Homework3/Exercise1.tex +Files\Last%20Script=/usr/share/texmaker/ +Files\Last%20Template= +Files\Recent%20Files%20New=/home/kamen/Programming/GitLab-repos/uni-projects/Year 1/Algebra/Homework3/Exercise1.tex, /home/kamen/Programming/GitLab-repos/uni-projects/Year 1/Algebra/Homework3/Exercise2.tex, /home/kamen/Programming/GitLab-repos/uni-projects/Year 1/Algebra/Homework3/Exercise4.tex, /home/kamen/Programming/GitLab-repos/uni-projects/Year 1/Algebra/Homework3/Exercise3.tex, /home/kamen/Programming/GitLab-repos/uni-projects/Year 1/Mathematical analysis/notes-appendix.tex, /home/kamen/Programming/GitLab-repos/uni-projects/Year 1/Mathematical analysis/notes.tex, /home/kamen/Programming/GitLab-repos/uni-projects/Year 1/Mathematical analysis/Homeworks/Homework2.tex, /home/kamen/Programming/GitLab-repos/uni-projects/Year 1/Mathematical analysis/Homeworks/Homework1.tex, /home/kamen/Programming/GitLab-repos/uni-projects/Year 1/Mathematical analysis/Homework1.tex, /home/kamen/Programming/source/test-latex/test.tex +GUI\New%20Version=true +GUI\Style=true +Geometries\MainwindowHeight=1053 +Geometries\MainwindowWidth=1920 +Geometries\MainwindowX=0 +Geometries\MainwindowY=0 +MainWindowMaximized=true +MainWindowState=@ByteArray(\0\0\0\xff\0\0\0\0\xfd\0\0\0\0\0\0\a\x80\0\0\x3\xc9\0\0\0\x4\0\0\0\x4\0\0\0\b\0\0\0\b\xfc\0\0\0\x1\0\0\0\x2\0\0\0\x3\0\0\0\b\0\x46\0i\0l\0\x65\x1\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\b\0\x45\0\x64\0i\0t\x1\0\0\0m\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\n\0T\0o\0o\0l\0s\x1\0\0\x1\x18\xff\xff\xff\xff\0\0\0\0\0\0\0\0) +PdfView\Scale=104 +Print\PaperSize=a4 +Quick\AMS=true +Quick\Author= +Quick\Babel=false +Quick\BabelDefault=english +Quick\Class=article +Quick\Encoding=utf8 +Quick\Fourier=false +Quick\Geometry=false +Quick\GeometryOptions="left=2cm,right=2cm,top=2cm,bottom=2cm" +Quick\Graphicx=false +Quick\Kpfonts=false +Quick\Lmodern=false +Quick\MakeIndex=false +Quick\Papersize=a4paper +Quick\Typeface=10pt +Shortcuts\data=$\x2022$/2/0/The math environment can be used in both paragraph and LR mode, Asymptote, BibTeX, Check Spelling, Clean, Comment, Convert to unicode, DVI->PDF, Dvi->PS, Export via TeX4ht, Find, Find In Directory, FindNext, Goto Line, Indent, LaTeX, Latexmk, LuaLaTeX, MPost, MakeIndex, Next, Open Terminal, PDFLaTeX, PS->PDF, Prev, Quick Build, R Sweave, Refresh Bibliography, Refresh Structure, Replace, Uncomment, Unindent, View Dvi, View Log, View PDF, View PS, XeLaTeX, "\\\"{}/3/0/ ", "\\'{}/3/0/ ", "\\,/2/0/ ", "\\.{}/3/0/ ", "\\:/2/0/ ", "\\;/2/0/ ", "\\={}/3/0/ ", "\\H{}/3/0/ ", \\[\x2022\\]/3/0/The displaymath environment can be used only in paragraph mode, \\\\\n/0/1/The \\newline command breaks the line right where it is., "\\^{}/3/0/ ", "\\`{}/3/0/ ", "\\acute{}/7/0/ ", "\\arccos /8/0/ ", "\\arcsin /8/0/ ", "\\arctan /8/0/ ", "\\author{}/8/0/\\author{names}\nThe \\author command declares the author(s), where names is a list of authors separated by \\and commands.", "\\bar{}/5/0/ ", \\begin{align}\n\n\\end{align}/0/1/\\begin{align}\nmath formula 1 \\\\\n\\end{align}\nThe AMS align environment is used to display a sequence of equations or inequalities., \\begin{array}{}\n\n\\end{array}/14/0/\\begin{array}{col1col2...coln}\ncolumn 1 entry & column 2 entry ... & column n entry \\\\\n...\n\\end{array}, \\begin{center}\n/\n\\end{center}/0/1, \\begin{description}\n\\item[]\n\\end{description}/6/1/The description environment is used to make labelled lists.\nEach item of the list begins with an \\item[label] command.\n, \\begin{document}\n\n\\end{document}/0/1/Text is allowed only between \\begin{document} and \\end{document}., \\begin{enumerate}\n\\item \n\\end{enumerate}/6/1/The enumerate environment produces a numbered list.\nEach item of an enumerated list begins with an \\item command., \\begin{eqnarray}\n\n\\end{eqnarray}/0/1/\\begin{eqnarray}\nmath formula 1 \\\\\n\\end{eqnarray}\nThe eqnarray environment is used to display a sequence of equations or inequalities., \\begin{equation}\n\n\\end{equation}/0/1/The equation environment centres your equation on the page and places the equation number in the right margin., \\begin{figure}\n/\n\\caption{}\n\\end{figure}/0/1, \\begin{flushleft}\n/\n\\end{flushleft}/0/1, \\begin{flushright}\n/\n\\end{flushright}/0/1, \\begin{itemize}\n\\item \n\\end{itemize}/6/1/The itemize environment produces a 'bulleted' list.\nEach item of an itemized list begins with an \\item command., \\begin{list}{}{}\n\\item \n\\end{list}/13/0/\\begin{list}{label}{spacing}\nThe {label} argument is a piece of text that is inserted in a box to form the label.\nThe {spacing} argument contains commands to change the spacing parameters for the list.\nEach item of the list begins with an \\item command., \\begin{minipage}{}\n/\n\\end{minipage}/0/1, \\begin{quotation}\n/\n\\end{quotation}/0/1, \\begin{quote}\n/\n\\end{quote}/0/1, "\\begin{tabbing}\n\n\\end{tabbing}/0/1/\\begin{tabbing}\ntext \\= more text \\= still more text \\= last text \\\\\nsecond row \\> \\> more \\\\\n\\end{tabbing}", \\begin{table}\n/\n\\caption{}\n\\end{table}/0/1, \\begin{tabular}{}\n\n\\end{tabular}/16/0/\\begin{tabular}[pos]{cols}\ncolumn 1 entry & column 2 entry ... & column n entry \\\\\n...\n\\end{tabular}, \\begin{titlepage}\n/\n\\end{titlepage}/0/1, \\begin{verbatim}\n/\n\\end{verbatim}/0/1, \\begin{verse}\n/\n\\end{verse}/0/1, "\\bibliographystyle{} /19/0/The argument to \\bibliographystyle refers to a file style.bst, which defines how your citations will look", \\bigskip /9/0/The \\bigskip command adds a 'big' vertical space., "\\breve{}/7/0/ ", \\chapter, "\\check{}/7/0/ ", \\cite{} /6/0/\\cite{ref} :\nThis command generates an in-text citation to the reference associated with the ref entry in the bib file, "\\cline{-} /7/0/The \\cline{i-j} command draws horizontal lines across the columns specified, beginning in column i and ending in column j", "\\cos /5/0/ ", "\\cosh /6/0/ ", "\\cot /5/0/ ", "\\coth /6/0/ ", "\\csc /5/0/ ", "\\ddot{}/6/0/ ", "\\deg /5/0/ ", "\\det /5/0/ ", "\\dfrac{}{}/7/0/ ", "\\dim /5/0/ ", \\documentclass[10pt]{}/21/0/\\documentclass[options]{class}, "\\dot{}/5/0/ ", \\emph{/}/6/0, "\\exp /5/0/ ", \\footnote{} /10/0/\\footnote[number]{text}\nThe \\footnote command places the numbered footnote text at the bottom of the current page., "\\frac{}{}/6/0/ ", "\\gcd /5/0/ ", "\\glqq /\\grqq/6/0/ ", "\\grave{}/7/0/ ", "\\hat{}/5/0/ ", \\hline /7/0/The \\hline command draws a horizontal line the width of the table., "\\hom /5/0/ ", "\\inf /5/0/ ", \\item/5/0/\\item[label] Hello, "\\ker /5/0/ ", \\label{} /7/0/\\label{key}, "\\left /6/0/ ", "\\lg /4/0/ ", "\\lim /5/0/ ", "\\liminf /8/0/ ", "\\limsup /8/0/ ", \\linebreak /11/0/The \\linebreak command tells LaTeX to break the current line at the point of the command., "\\ln /4/0/ ", "\\log /5/0/ ", "\\maketitle/10/0/This command generates a title on a separate title page\n- except in the article class, where the title normally goes at the top of the first page.", \\mathbb{/}/8/0, \\mathbf{/}/8/0, \\mathcal{/}/9/0, \\mathfrak{/}/10/0, \\mathit{/}/8/0, \\mathrm{/}/8/0, \\mathsf{/}/8/0, \\mathtt{/}/8/0, "\\max /5/0/ ", \\medskip /9/0/The \\medskip command adds a 'medium' vertical space., "\\min /5/0/ ", "\\multicolumn{}{}{} /13/0/\\multicolumn{cols}{pos}{text}\ncol, specifies the number of columns to span.\npos specifies the formatting of the entry: c for centred, l for flushleft, r for flushright.\ntext specifies what text is to make up the entry.", \\newpage /9/0/The \\newpage command ends the current page, "\\og / \\fg{}/4/0/ ", \\pagebreak /11/0/The \\pagebreak command tells LaTeX to break the current page at the point of the command., \\paragraph, \\part, "\\qquad/6/0/ ", "\\quad/5/0/ ", "\\quotedblbase /\\textquotedblright/14/0/ ", "\\right /7/0/ ", "\\sec /5/0/ ", \\section, "\\sin /5/0/ ", "\\sinh /6/0/ ", "\\sqrt{}/6/0/ ", \\subparagraph, \\subsection, \\subsubsection, "\\sup /5/0/ ", \\tableofcontents/16/0/Put this command where you want the table of contents to go, "\\tan /5/0/ ", "\\tanh /6/0/ ", \\textbf{/}/8/0, \\textit{/}/8/0, \\textsc{/}/8/0, \\textsf{/}/8/0, \\textsl{/}/8/0, \\texttt{/}/8/0, "\\tilde{}/7/0/ ", \\title{}/7/0/\\title{text}\nThe \\title command declares text to be the title., \\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\usepackage{amssymb}\n/0/3/The main American Mathematical Society packages, \\usepackage{} /12/0/\\usepackage[options]{pkg}, "\\u{}/3/0/ ", "\\vec{}/5/0/ ", \\vline /7/0/The \\vline command draws a vertical line extending the full height and depth of its row., "\\v{}/3/0/ ", "\\~{}/3/0/ ", "^{}/2/0/ ", "_{}/2/0/ " +Shortcuts\shortcut=Ctrl+Shift+M, none, F11, Ctrl+Shift+F7, none, Ctrl+T, none, F9, F4, none, Ctrl+F, none, Ctrl+M, Ctrl+G, Ctrl+>, F7, none, none, none, F12, Alt+PgDown, none, F6, F8, Alt+PgUp, F1, none, none, Ctrl+Shift+F1, Ctrl+R, Ctrl+U, Ctrl+<, F3, F10, F2, F5, none, none, none, none, none, none, none, none, none, Alt+Shift+M, Ctrl+Return, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, Ctrl+Shift+N, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, Ctrl+Shift+F, none, none, none, Ctrl+Shift+E, none, none, Alt+Shift+F, none, , none, none, none, none, none, Ctrl+Shift+I, none, none, Ctrl+Shift+L, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, none, , none, none, none, none, none, none, Ctrl+Shift+R, none, none, none, none, Ctrl+Shift+Q, none, none, none, none, none, none, none, Ctrl+B, Ctrl+I, Ctrl+Shift+C, Ctrl+Shift+A, Ctrl+Shift+S, Ctrl+Shift+T, none, none, none, none, none, none, none, none, none, Ctrl+Shift+U, Ctrl+Shift+D +Shortcuts\togglefocus=Ctrl+Space +Show\Asymptote=true +Show\Dfrac=true +Show\Emphasis=true +Show\Filesview=false +Show\Indice=true +Show\Mathmode=true +Show\Metapost=true +Show\Newline=true +Show\OutputView=true +Show\Pdfview=true +Show\Pstricks=true +Show\Puissance=true +Show\Racine=true +Show\Smallfrac=true +Show\Sourceview=false +Show\Structureview=false +Show\Tikz=true +Spell\Dic=/usr/share/texmaker/en_US.dic +Spell\Inline=false +Spell\Words= +Splitter1State=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x3\0\0\0\xd2\0\0\x3]\0\0\x3O\0\0\0\0\x1\x1\0\0\0\x1\0) +Splitter2State=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\x2\xbf\0\0\x1\t\0\0\0\0\x1\x1\0\0\0\x2\0) +Splitter3State=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\x3\xa2\0\0\0\x44\0\0\0\0\x1\x1\0\0\0\x2\0) +Structure\Structure%20Level%201=part +Structure\Structure%20Level%202=chapter +Structure\Structure%20Level%203=section +Structure\Structure%20Level%204=subsection +Structure\Structure%20Level%205=subsubsection +Symbols\Favorites=@Invalid() +Symbols\symbol0=0 +Symbols\symbol1=0 +Symbols\symbol10=0 +Symbols\symbol100=0 +Symbols\symbol101=0 +Symbols\symbol102=0 +Symbols\symbol103=0 +Symbols\symbol104=0 +Symbols\symbol105=0 +Symbols\symbol106=0 +Symbols\symbol107=0 +Symbols\symbol108=0 +Symbols\symbol109=0 +Symbols\symbol11=0 +Symbols\symbol110=0 +Symbols\symbol111=0 +Symbols\symbol112=0 +Symbols\symbol113=0 +Symbols\symbol114=0 +Symbols\symbol115=0 +Symbols\symbol116=0 +Symbols\symbol117=0 +Symbols\symbol118=0 +Symbols\symbol119=0 +Symbols\symbol12=0 +Symbols\symbol120=0 +Symbols\symbol121=0 +Symbols\symbol122=0 +Symbols\symbol123=0 +Symbols\symbol124=0 +Symbols\symbol125=0 +Symbols\symbol126=0 +Symbols\symbol127=0 +Symbols\symbol128=0 +Symbols\symbol129=0 +Symbols\symbol13=0 +Symbols\symbol130=0 +Symbols\symbol131=0 +Symbols\symbol132=0 +Symbols\symbol133=0 +Symbols\symbol134=0 +Symbols\symbol135=0 +Symbols\symbol136=0 +Symbols\symbol137=0 +Symbols\symbol138=0 +Symbols\symbol139=0 +Symbols\symbol14=0 +Symbols\symbol140=0 +Symbols\symbol141=0 +Symbols\symbol142=0 +Symbols\symbol143=0 +Symbols\symbol144=0 +Symbols\symbol145=0 +Symbols\symbol146=0 +Symbols\symbol147=0 +Symbols\symbol148=0 +Symbols\symbol149=0 +Symbols\symbol15=0 +Symbols\symbol150=0 +Symbols\symbol151=0 +Symbols\symbol152=0 +Symbols\symbol153=0 +Symbols\symbol154=0 +Symbols\symbol155=0 +Symbols\symbol156=0 +Symbols\symbol157=0 +Symbols\symbol158=0 +Symbols\symbol159=0 +Symbols\symbol16=0 +Symbols\symbol160=0 +Symbols\symbol161=0 +Symbols\symbol162=0 +Symbols\symbol163=0 +Symbols\symbol164=0 +Symbols\symbol165=0 +Symbols\symbol166=0 +Symbols\symbol167=0 +Symbols\symbol168=0 +Symbols\symbol169=0 +Symbols\symbol17=0 +Symbols\symbol170=0 +Symbols\symbol171=0 +Symbols\symbol172=0 +Symbols\symbol173=0 +Symbols\symbol174=0 +Symbols\symbol175=0 +Symbols\symbol176=0 +Symbols\symbol177=0 +Symbols\symbol178=0 +Symbols\symbol179=0 +Symbols\symbol18=0 +Symbols\symbol180=0 +Symbols\symbol181=0 +Symbols\symbol182=0 +Symbols\symbol183=0 +Symbols\symbol184=0 +Symbols\symbol185=0 +Symbols\symbol186=0 +Symbols\symbol187=0 +Symbols\symbol188=0 +Symbols\symbol189=0 +Symbols\symbol19=0 +Symbols\symbol190=0 +Symbols\symbol191=0 +Symbols\symbol192=0 +Symbols\symbol193=0 +Symbols\symbol194=0 +Symbols\symbol195=0 +Symbols\symbol196=0 +Symbols\symbol197=0 +Symbols\symbol198=0 +Symbols\symbol199=0 +Symbols\symbol2=0 +Symbols\symbol20=0 +Symbols\symbol200=0 +Symbols\symbol201=0 +Symbols\symbol202=0 +Symbols\symbol203=0 +Symbols\symbol204=0 +Symbols\symbol205=0 +Symbols\symbol206=0 +Symbols\symbol207=0 +Symbols\symbol208=0 +Symbols\symbol209=0 +Symbols\symbol21=0 +Symbols\symbol210=0 +Symbols\symbol211=0 +Symbols\symbol212=0 +Symbols\symbol213=0 +Symbols\symbol214=0 +Symbols\symbol215=0 +Symbols\symbol216=0 +Symbols\symbol217=0 +Symbols\symbol218=0 +Symbols\symbol219=0 +Symbols\symbol22=0 +Symbols\symbol220=0 +Symbols\symbol221=0 +Symbols\symbol222=0 +Symbols\symbol223=0 +Symbols\symbol224=0 +Symbols\symbol225=0 +Symbols\symbol226=0 +Symbols\symbol227=0 +Symbols\symbol228=0 +Symbols\symbol229=0 +Symbols\symbol23=0 +Symbols\symbol230=0 +Symbols\symbol231=0 +Symbols\symbol232=0 +Symbols\symbol233=0 +Symbols\symbol234=0 +Symbols\symbol235=0 +Symbols\symbol236=0 +Symbols\symbol237=0 +Symbols\symbol238=0 +Symbols\symbol239=0 +Symbols\symbol24=0 +Symbols\symbol240=0 +Symbols\symbol241=0 +Symbols\symbol242=0 +Symbols\symbol243=0 +Symbols\symbol244=0 +Symbols\symbol245=0 +Symbols\symbol246=0 +Symbols\symbol247=0 +Symbols\symbol248=0 +Symbols\symbol249=0 +Symbols\symbol25=0 +Symbols\symbol250=0 +Symbols\symbol251=0 +Symbols\symbol252=0 +Symbols\symbol253=0 +Symbols\symbol254=0 +Symbols\symbol255=0 +Symbols\symbol256=0 +Symbols\symbol257=0 +Symbols\symbol258=0 +Symbols\symbol259=0 +Symbols\symbol26=0 +Symbols\symbol260=0 +Symbols\symbol261=0 +Symbols\symbol262=0 +Symbols\symbol263=0 +Symbols\symbol264=0 +Symbols\symbol265=0 +Symbols\symbol266=0 +Symbols\symbol267=0 +Symbols\symbol268=0 +Symbols\symbol269=0 +Symbols\symbol27=0 +Symbols\symbol270=0 +Symbols\symbol271=0 +Symbols\symbol272=0 +Symbols\symbol273=0 +Symbols\symbol274=0 +Symbols\symbol275=0 +Symbols\symbol276=0 +Symbols\symbol277=0 +Symbols\symbol278=0 +Symbols\symbol279=0 +Symbols\symbol28=0 +Symbols\symbol280=0 +Symbols\symbol281=0 +Symbols\symbol282=0 +Symbols\symbol283=0 +Symbols\symbol284=0 +Symbols\symbol285=0 +Symbols\symbol286=0 +Symbols\symbol287=0 +Symbols\symbol288=0 +Symbols\symbol289=0 +Symbols\symbol29=0 +Symbols\symbol290=0 +Symbols\symbol291=0 +Symbols\symbol292=0 +Symbols\symbol293=0 +Symbols\symbol294=0 +Symbols\symbol295=0 +Symbols\symbol296=0 +Symbols\symbol297=0 +Symbols\symbol298=0 +Symbols\symbol299=0 +Symbols\symbol3=0 +Symbols\symbol30=0 +Symbols\symbol300=0 +Symbols\symbol301=0 +Symbols\symbol302=0 +Symbols\symbol303=0 +Symbols\symbol304=0 +Symbols\symbol305=0 +Symbols\symbol306=0 +Symbols\symbol307=0 +Symbols\symbol308=0 +Symbols\symbol309=0 +Symbols\symbol31=0 +Symbols\symbol310=0 +Symbols\symbol311=0 +Symbols\symbol312=0 +Symbols\symbol313=0 +Symbols\symbol314=0 +Symbols\symbol315=0 +Symbols\symbol316=0 +Symbols\symbol317=0 +Symbols\symbol318=0 +Symbols\symbol319=0 +Symbols\symbol32=0 +Symbols\symbol320=0 +Symbols\symbol321=0 +Symbols\symbol322=0 +Symbols\symbol323=0 +Symbols\symbol324=0 +Symbols\symbol325=0 +Symbols\symbol326=0 +Symbols\symbol327=0 +Symbols\symbol328=0 +Symbols\symbol329=0 +Symbols\symbol33=0 +Symbols\symbol330=0 +Symbols\symbol331=0 +Symbols\symbol332=0 +Symbols\symbol333=0 +Symbols\symbol334=0 +Symbols\symbol335=0 +Symbols\symbol336=0 +Symbols\symbol337=0 +Symbols\symbol338=0 +Symbols\symbol339=0 +Symbols\symbol34=0 +Symbols\symbol340=0 +Symbols\symbol341=0 +Symbols\symbol342=0 +Symbols\symbol343=0 +Symbols\symbol344=0 +Symbols\symbol345=0 +Symbols\symbol346=0 +Symbols\symbol347=0 +Symbols\symbol348=0 +Symbols\symbol349=0 +Symbols\symbol35=0 +Symbols\symbol350=0 +Symbols\symbol351=0 +Symbols\symbol352=0 +Symbols\symbol353=0 +Symbols\symbol354=0 +Symbols\symbol355=0 +Symbols\symbol356=0 +Symbols\symbol357=0 +Symbols\symbol358=0 +Symbols\symbol359=0 +Symbols\symbol36=0 +Symbols\symbol360=0 +Symbols\symbol361=0 +Symbols\symbol362=0 +Symbols\symbol363=0 +Symbols\symbol364=0 +Symbols\symbol365=0 +Symbols\symbol366=0 +Symbols\symbol367=0 +Symbols\symbol368=0 +Symbols\symbol369=0 +Symbols\symbol37=0 +Symbols\symbol370=0 +Symbols\symbol371=0 +Symbols\symbol372=0 +Symbols\symbol373=0 +Symbols\symbol374=0 +Symbols\symbol375=0 +Symbols\symbol376=0 +Symbols\symbol377=0 +Symbols\symbol378=0 +Symbols\symbol379=0 +Symbols\symbol38=0 +Symbols\symbol380=0 +Symbols\symbol381=0 +Symbols\symbol382=0 +Symbols\symbol383=0 +Symbols\symbol384=0 +Symbols\symbol385=0 +Symbols\symbol386=0 +Symbols\symbol387=0 +Symbols\symbol388=0 +Symbols\symbol389=0 +Symbols\symbol39=0 +Symbols\symbol390=0 +Symbols\symbol391=0 +Symbols\symbol392=0 +Symbols\symbol393=0 +Symbols\symbol394=0 +Symbols\symbol395=0 +Symbols\symbol396=0 +Symbols\symbol397=0 +Symbols\symbol398=0 +Symbols\symbol399=0 +Symbols\symbol4=0 +Symbols\symbol40=0 +Symbols\symbol400=0 +Symbols\symbol401=0 +Symbols\symbol402=0 +Symbols\symbol403=0 +Symbols\symbol404=0 +Symbols\symbol405=0 +Symbols\symbol406=0 +Symbols\symbol407=0 +Symbols\symbol408=0 +Symbols\symbol409=0 +Symbols\symbol41=0 +Symbols\symbol410=0 +Symbols\symbol411=0 +Symbols\symbol42=0 +Symbols\symbol43=0 +Symbols\symbol44=0 +Symbols\symbol45=0 +Symbols\symbol46=0 +Symbols\symbol47=0 +Symbols\symbol48=0 +Symbols\symbol49=0 +Symbols\symbol5=0 +Symbols\symbol50=0 +Symbols\symbol51=0 +Symbols\symbol52=0 +Symbols\symbol53=0 +Symbols\symbol54=0 +Symbols\symbol55=0 +Symbols\symbol56=0 +Symbols\symbol57=0 +Symbols\symbol58=0 +Symbols\symbol59=0 +Symbols\symbol6=0 +Symbols\symbol60=0 +Symbols\symbol61=0 +Symbols\symbol62=0 +Symbols\symbol63=0 +Symbols\symbol64=0 +Symbols\symbol65=0 +Symbols\symbol66=0 +Symbols\symbol67=0 +Symbols\symbol68=0 +Symbols\symbol69=0 +Symbols\symbol7=0 +Symbols\symbol70=0 +Symbols\symbol71=0 +Symbols\symbol72=0 +Symbols\symbol73=0 +Symbols\symbol74=0 +Symbols\symbol75=0 +Symbols\symbol76=0 +Symbols\symbol77=0 +Symbols\symbol78=0 +Symbols\symbol79=0 +Symbols\symbol8=0 +Symbols\symbol80=0 +Symbols\symbol81=0 +Symbols\symbol82=0 +Symbols\symbol83=0 +Symbols\symbol84=0 +Symbols\symbol85=0 +Symbols\symbol86=0 +Symbols\symbol87=0 +Symbols\symbol88=0 +Symbols\symbol89=0 +Symbols\symbol9=0 +Symbols\symbol90=0 +Symbols\symbol91=0 +Symbols\symbol92=0 +Symbols\symbol93=0 +Symbols\symbol94=0 +Symbols\symbol95=0 +Symbols\symbol96=0 +Symbols\symbol97=0 +Symbols\symbol98=0 +Symbols\symbol99=0 +Tools\Asymptote=asy %.asy +Tools\Bibtex=bibtex %.aux +Tools\CleanWhenExit=false +Tools\Dvi=xdg-open %.dvi +Tools\Dvipdf=dvipdfm %.dvi +Tools\Dvips=dvips -o %.ps %.dvi +Tools\ExtraPath= +Tools\Ghostscript=gs +Tools\HtOptions="\"\" \"\" \"\" -interaction=nonstopmode" +Tools\Htlatex=htlatex +Tools\IntegratedPdfViewer=true +Tools\LP=-o fitplot +Tools\Latex="latex -interaction=nonstopmode %.tex" +Tools\Latexmk="latexmk -e \"$pdflatex=q/pdflatex -synctex=1 -interaction=nonstopmode/\" -pdf %.tex" +Tools\Lualatex="lualatex -interaction=nonstopmode %.tex" +Tools\Makeindex=makeindex %.idx +Tools\Metapost="mpost --interaction nonstopmode " +Tools\OutputDir=false +Tools\Pdf=xdg-open %.pdf +Tools\PdfInternalViewEmbed=true +Tools\Pdflatex="pdflatex -synctex=1 -interaction=nonstopmode %.tex" +Tools\Ps=xdg-open %.ps +Tools\Ps2pdf=ps2pdf %.ps +Tools\Quick%20Mode=6 +Tools\QuickAsy=asy -f pdf -noView %.asy|xdg-open %.pdf +Tools\Run=0 +Tools\SingleViewerInstance=false +Tools\Sweave=R CMD Sweave %.Rnw +Tools\Texdoc=texdoc +Tools\Userquick="xelatex -synctex=1 -interaction=nonstopmode %.tex|xdg-open %.pdf" +Tools\View=2 +Tools\Xelatex="xelatex -synctex=1 -interaction=nonstopmode %.tex" +User\Menu1= +User\Menu10= +User\Menu2= +User\Menu3= +User\Menu4= +User\Menu5= +User\Menu6= +User\Menu7= +User\Menu8= +User\Menu9= +User\Tag1= +User\Tag10= +User\Tag2= +User\Tag3= +User\Tag4= +User\Tag5= +User\Tag6= +User\Tag7= +User\Tag8= +User\Tag9= +User\TagList=@Invalid() +User\Tool1= +User\Tool2= +User\Tool3= +User\Tool4= +User\Tool5= +User\ToolName1= +User\ToolName2= +User\ToolName3= +User\ToolName4= +User\ToolName5= +X11\Font%20Family=DejaVu Sans +X11\Font%20Size=10 +X11\Style=Fusion diff --git a/.a/Config Backups/tlp.conf b/.a/Config Backups/tlp.conf new file mode 100644 index 0000000..95caf8e --- /dev/null +++ b/.a/Config Backups/tlp.conf @@ -0,0 +1,309 @@ +# ------------------------------------------------------------------------------ +# tlp - Parameters for power saving +# See full explanation: http://linrunner.de/en/tlp/docs/tlp-configuration.html + +# Hint: some features are disabled by default, remove the leading # to enable +# them. + +# Set to 0 to disable, 1 to enable TLP. +TLP_ENABLE=1 + +# Operation mode when no power supply can be detected: AC, BAT. +# Concerns some desktop and embedded hardware only. +TLP_DEFAULT_MODE=BAT + +# Operation mode select: 0=depend on power source, 1=always use TLP_DEFAULT_MODE +# Hint: use in conjunction with TLP_DEFAULT_MODE=BAT for BAT settings on AC. +TLP_PERSISTENT_DEFAULT=0 + +# Seconds laptop mode has to wait after the disk goes idle before doing a sync. +# Non-zero value enables, zero disables laptop mode. +DISK_IDLE_SECS_ON_AC=0 +DISK_IDLE_SECS_ON_BAT=2 + +# Dirty page values (timeouts in secs). +MAX_LOST_WORK_SECS_ON_AC=15 +MAX_LOST_WORK_SECS_ON_BAT=15 + +# Hint: CPU parameters below are disabled by default, remove the leading # +# to enable them, otherwise kernel default values are used. + +# Select a CPU frequency scaling governor. +# Intel Core i processor with intel_pstate driver: +# powersave(*), performance. +# Older hardware with acpi-cpufreq driver: +# ondemand(*), powersave, performance, conservative, schedutil. +# (*) is recommended. +# Hint: use tlp-stat -p to show the active driver and available governors. +# Important: +# powersave for intel_pstate and ondemand for acpi-cpufreq are power +# efficient for *almost all* workloads and therefore kernel and most +# distributions have chosen them as defaults. If you still want to change, +# you should know what you're doing! You *must* disable your distribution's +# governor settings or conflicts will occur. +CPU_SCALING_GOVERNOR_ON_AC=performance +CPU_SCALING_GOVERNOR_ON_BAT=powersave + +# Set the min/max frequency available for the scaling governor. +# Possible values strongly depend on your CPU. For available frequencies see +# the output of tlp-stat -p. +#CPU_SCALING_MIN_FREQ_ON_AC=0 +#CPU_SCALING_MAX_FREQ_ON_AC=0 +#CPU_SCALING_MIN_FREQ_ON_BAT=0 +#CPU_SCALING_MAX_FREQ_ON_BAT=0 + +# Set energy performance hints (HWP) for Intel P-state governor: +# performance, balance_performance, default, balance_power, power +# Values are given in order of increasing power saving. +# Note: Intel Skylake or newer CPU and Kernel >= 4.10 required. +CPU_HWP_ON_AC=balance_performance +CPU_HWP_ON_BAT=power + +# Set Intel P-state performance: 0..100 (%). +# Limit the max/min P-state to control the power dissipation of the CPU. +# Values are stated as a percentage of the available performance. +# Requires an Intel Core i processor with intel_pstate driver. +CPU_MIN_PERF_ON_AC=0 +CPU_MAX_PERF_ON_AC=100 +CPU_MIN_PERF_ON_BAT=0 +CPU_MAX_PERF_ON_BAT=30 + +# Set the CPU "turbo boost" feature: 0=disable, 1=allow +# Requires an Intel Core i processor. +# Important: +# - This may conflict with your distribution's governor settings +# - A value of 1 does *not* activate boosting, it just allows it +CPU_BOOST_ON_AC=1 +CPU_BOOST_ON_BAT=0 + +# Minimize number of used CPU cores/hyper-threads under light load conditions: +# 0=disable, 1=enable. +SCHED_POWERSAVE_ON_AC=0 +SCHED_POWERSAVE_ON_BAT=1 + +# Kernel NMI Watchdog: +# 0=disable (default, saves power), 1=enable (for kernel debugging only). +NMI_WATCHDOG=0 + +# Change CPU voltages aka "undervolting" - Kernel with PHC patch required. +# Frequency voltage pairs are written to: +# /sys/devices/system/cpu/cpu0/cpufreq/phc_controls +# CAUTION: only use this, if you thoroughly understand what you are doing! +#PHC_CONTROLS="F:V F:V F:V F:V" + +# Set CPU performance versus energy savings policy: +# performance, balance-performance, default, balance-power, power. +# Values are given in order of increasing power saving. +# Requires kernel module msr and x86_energy_perf_policy from linux-tools. +ENERGY_PERF_POLICY_ON_AC=performance +ENERGY_PERF_POLICY_ON_BAT=power + +CPU_ENERGY_PERF_POLICY_ON_AC=performance +CPU_ENERGY_PERF_POLICY_ON_BAT=balance_power + +# Disk devices; separate multiple devices with spaces (default: sda). +# Devices can be specified by disk ID also (lookup with: tlp diskid). +DISK_DEVICES="sda sdb" + +# Disk advanced power management level: 1..254, 255 (max saving, min, off). +# Levels 1..127 may spin down the disk; 255 allowable on most drives. +# Separate values for multiple disks with spaces. Use the special value 'keep' +# to keep the hardware default for the particular disk. +DISK_APM_LEVEL_ON_AC="254 254" +DISK_APM_LEVEL_ON_BAT="128 128" + +# Hard disk spin down timeout: +# 0: spin down disabled +# 1..240: timeouts from 5s to 20min (in units of 5s) +# 241..251: timeouts from 30min to 5.5 hours (in units of 30min) +# See 'man hdparm' for details. +# Separate values for multiple disks with spaces. Use the special value 'keep' +# to keep the hardware default for the particular disk. +#DISK_SPINDOWN_TIMEOUT_ON_AC="0 0" +#DISK_SPINDOWN_TIMEOUT_ON_BAT="0 0" + +# Select IO scheduler for the disk devices: cfq, deadline, noop (Default: cfq). +# Separate values for multiple disks with spaces. Use the special value 'keep' +# to keep the kernel default scheduler for the particular disk. +#DISK_IOSCHED="cfq cfq" + +# AHCI link power management (ALPM) for disk devices: +# min_power, med_power_with_dipm(*), medium_power, max_performance. +# (*) Kernel >= 4.15 required, then recommended. +# Multiple values separated with spaces are tried sequentially until success. +SATA_LINKPWR_ON_AC="med_power_with_dipm max_performance" +SATA_LINKPWR_ON_BAT="med_power_with_dipm min_power" + +# Exclude host devices from AHCI link power management. +# Separate multiple hosts with spaces. +#SATA_LINKPWR_BLACKLIST="host1" + +# Runtime Power Management for AHCI host and disks devices: +# on=disable, auto=enable. +# EXPERIMENTAL ** WARNING: auto will most likely cause system lockups/data loss. +#AHCI_RUNTIME_PM_ON_AC=on +#AHCI_RUNTIME_PM_ON_BAT=on + +# Seconds of inactivity before disk is suspended. +AHCI_RUNTIME_PM_TIMEOUT=15 + +# PCI Express Active State Power Management (PCIe ASPM): +# default, performance, powersave. +PCIE_ASPM_ON_AC=performance +PCIE_ASPM_ON_BAT=powersave + +# Radeon graphics clock speed (profile method): low, mid, high, auto, default; +# auto = mid on BAT, high on AC; default = use hardware defaults. +RADEON_POWER_PROFILE_ON_AC=high +RADEON_POWER_PROFILE_ON_BAT=low + +# Radeon dynamic power management method (DPM): battery, performance. +RADEON_DPM_STATE_ON_AC=performance +RADEON_DPM_STATE_ON_BAT=battery + +# Radeon DPM performance level: auto, low, high; auto is recommended. +RADEON_DPM_PERF_LEVEL_ON_AC=auto +RADEON_DPM_PERF_LEVEL_ON_BAT=auto + +# WiFi power saving mode: on=enable, off=disable; not supported by all adapters. +WIFI_PWR_ON_AC=off +WIFI_PWR_ON_BAT=off + +# Disable wake on LAN: Y/N. +WOL_DISABLE=Y + +# Enable audio power saving for Intel HDA, AC97 devices (timeout in secs). +# A value of 0 disables, >=1 enables power saving (recommended: 1). +SOUND_POWER_SAVE_ON_AC=0 +SOUND_POWER_SAVE_ON_BAT=1 + +# Disable controller too (HDA only): Y/N. +SOUND_POWER_SAVE_CONTROLLER=Y + +# Power off optical drive in UltraBay/MediaBay: 0=disable, 1=enable. +# Drive can be powered on again by releasing (and reinserting) the eject lever +# or by pressing the disc eject button on newer models. +# Note: an UltraBay/MediaBay hard disk is never powered off. +BAY_POWEROFF_ON_AC=0 +BAY_POWEROFF_ON_BAT=0 +# Optical drive device to power off (default sr0). +BAY_DEVICE="sr0" + +# Runtime Power Management for PCI(e) bus devices: on=disable, auto=enable. +RUNTIME_PM_ON_AC=on +RUNTIME_PM_ON_BAT=auto + +# Exclude PCI(e) device adresses the following list from Runtime PM +# (separate with spaces). Use lspci to get the adresses (1st column). +#RUNTIME_PM_BLACKLIST="bb:dd.f 11:22.3 44:55.6" + +# Exclude PCI(e) devices assigned to the listed drivers from Runtime PM. +# Default when unconfigured is "amdgpu nouveau nvidia radeon" which +# prevents accidential power-on of dGPU in hybrid graphics setups. +# Use "" to disable the feature completely. +# Separate multiple drivers with spaces. +#RUNTIME_PM_DRIVER_BLACKLIST="amdgpu nouveau nvidia radeon" + +# Set to 0 to disable, 1 to enable USB autosuspend feature. +USB_AUTOSUSPEND=1 + +# Exclude listed devices from USB autosuspend (separate with spaces). +# Use lsusb to get the ids. +# Note: input devices (usbhid) are excluded automatically +#USB_BLACKLIST="1111:2222 3333:4444" + +# Bluetooth devices are excluded from USB autosuspend: +# 0=do not exclude, 1=exclude. +USB_BLACKLIST_BTUSB=0 + +# Phone devices are excluded from USB autosuspend: +# 0=do not exclude, 1=exclude (enable charging). +USB_BLACKLIST_PHONE=0 + +# Printers are excluded from USB autosuspend: +# 0=do not exclude, 1=exclude. +USB_BLACKLIST_PRINTER=1 + +# WWAN devices are excluded from USB autosuspend: +# 0=do not exclude, 1=exclude. +USB_BLACKLIST_WWAN=1 + +# Include listed devices into USB autosuspend even if already excluded +# by the blacklists above (separate with spaces). +# Use lsusb to get the ids. +#USB_WHITELIST="1111:2222 3333:4444" + +# Set to 1 to disable autosuspend before shutdown, 0 to do nothing +# (workaround for USB devices that cause shutdown problems). +#USB_AUTOSUSPEND_DISABLE_ON_SHUTDOWN=1 + +# Restore radio device state (Bluetooth, WiFi, WWAN) from previous shutdown +# on system startup: 0=disable, 1=enable. +# Hint: the parameters DEVICES_TO_DISABLE/ENABLE_ON_STARTUP/SHUTDOWN below +# are ignored when this is enabled! +RESTORE_DEVICE_STATE_ON_STARTUP=0 + +# Radio devices to disable on startup: bluetooth, wifi, wwan. +# Separate multiple devices with spaces. +#DEVICES_TO_DISABLE_ON_STARTUP="bluetooth wifi wwan" + +# Radio devices to enable on startup: bluetooth, wifi, wwan. +# Separate multiple devices with spaces. +#DEVICES_TO_ENABLE_ON_STARTUP="wifi" + +# Radio devices to disable on shutdown: bluetooth, wifi, wwan. +# (workaround for devices that are blocking shutdown). +#DEVICES_TO_DISABLE_ON_SHUTDOWN="bluetooth wifi wwan" + +# Radio devices to enable on shutdown: bluetooth, wifi, wwan. +# (to prevent other operating systems from missing radios). +#DEVICES_TO_ENABLE_ON_SHUTDOWN="wwan" + +# Radio devices to enable on AC: bluetooth, wifi, wwan. +#DEVICES_TO_ENABLE_ON_AC="bluetooth wifi wwan" + +# Radio devices to disable on battery: bluetooth, wifi, wwan. +#DEVICES_TO_DISABLE_ON_BAT="bluetooth wifi wwan" + +# Radio devices to disable on battery when not in use (not connected): +# bluetooth, wifi, wwan. +#DEVICES_TO_DISABLE_ON_BAT_NOT_IN_USE="bluetooth wifi wwan" + +# Battery charge thresholds (ThinkPad only, tp-smapi or acpi-call kernel module +# required). Charging starts when the remaining capacity falls below the +# START_CHARGE_THRESH value and stops when exceeding the STOP_CHARGE_THRESH value. +# Main / Internal battery (values in %) +#START_CHARGE_THRESH_BAT0=75 +#STOP_CHARGE_THRESH_BAT0=80 +# Ultrabay / Slice / Replaceable battery (values in %) +#START_CHARGE_THRESH_BAT1=75 +#STOP_CHARGE_THRESH_BAT1=80 + +# Restore charge thresholds when AC is unplugged: 0=disable, 1=enable. +#RESTORE_THRESHOLDS_ON_BAT=1 + +# ------------------------------------------------------------------------------ +# tlp-rdw - Parameters for the radio device wizard +# Possible devices: bluetooth, wifi, wwan. + +# Hints: +# - Parameters are disabled by default, remove the leading # to enable them +# - Separate multiple radio devices with spaces + +# Radio devices to disable on connect. +#DEVICES_TO_DISABLE_ON_LAN_CONNECT="wifi wwan" +#DEVICES_TO_DISABLE_ON_WIFI_CONNECT="wwan" +#DEVICES_TO_DISABLE_ON_WWAN_CONNECT="wifi" + +# Radio devices to enable on disconnect. +#DEVICES_TO_ENABLE_ON_LAN_DISCONNECT="wifi wwan" +#DEVICES_TO_ENABLE_ON_WIFI_DISCONNECT="" +#DEVICES_TO_ENABLE_ON_WWAN_DISCONNECT="" + +# Radio devices to enable/disable when docked. +#DEVICES_TO_ENABLE_ON_DOCK="" +#DEVICES_TO_DISABLE_ON_DOCK="" + +# Radio devices to enable/disable when undocked. +#DEVICES_TO_ENABLE_ON_UNDOCK="wifi" +#DEVICES_TO_DISABLE_ON_UNDOCK="" |
