remove unused code; upd menu overview

merge-requests/273/head
Bernhard Landauer 7 years ago
parent 78edc32b86
commit eb615dae06

@ -1,29 +1,29 @@
main_menu
├── prepare
Main Menu
├── Prepare
│ ├── keymap
│ ├── devices
│ ├── show devices
│ ├── partition
│ ├── luks
│ ├── lvm
│ └── mount
├── install_base
│ └── mount partitions
├── Install Base
│ ├── config_mirrors
│ ├── refresh_keys
│ ├── install_base
│ └── bootloader
├── config_base
│ ├── install_manjaro_DE_WM
│ └── install bootloader
├── Configure Base
│ ├── fstab
│ ├── hostname
│ ├── locale
│ ├── time_n_date
│ ├── time_n_date / hw_clock
│ ├── root_pw
│ ├── create_user
│ └── mkinitcpio
├── install_environment
│ ├── video_driver
│ └── xkbmap
│ └── manjaro_DE_WM
├── edit_config
│ └── create_user
├── Edit config files
│ ├── vconsole
│ ├── locale
│ ├── hostname
@ -36,16 +36,26 @@ main_menu
│ ├── lxdm/lightdm/sddm
│ ├── pacman
│ └── xinitrc
└── advanced_install
├── manjaro_git
├── unconfigured
│ ├── xorg
│ ├── de_wm
│ ├── dm
│ ├── network
│ ├── multimedia
│ │ ├── alsa_pulse
│ │ ├── codecs
│ │ └── acc
│ └── custom_pkgs
└── system_tweaks
└── Advanced Installation
├── install manjaro dev profiles
├── unconfigured desktops
│ ├── xorg
│ ├── de_wm
│ ├── dm
│ ├── network
│ ├── multimedia
│ │ ├── alsa_pulse
│ │ ├── codecs
│ │ └── acc
│ └── custom_pkgs
├── hardware drivers
│ ├── graphics drivers
│ │ ├── free drivers (automatic)
│ │ ├── proprietary drivers (automatic)
│ │ └── manual video-driver installation
│ └── network drivers
└── system_tweaks
├── journal logging
├── coredump logging
└── kernel log access

@ -278,7 +278,6 @@ install_network_menu() {
# ntp not exactly wireless, but this menu is the best fit.
install_wireless_packages() {
WIRELESS_PACKAGES=""
wireless_pkgs="dialog iw rp-pppoe wireless_tools wpa_actiond"

@ -48,8 +48,6 @@ main_menu() {
done
}
## 2nd level menus
# Preparation
prep_menu() {
local PARENT="$FUNCNAME"

@ -293,14 +293,6 @@ greeting() {
DIALOG " $_WelTitle $VERSION " --msgbox "$_WelBody" 0 0
}
# Choose between the compact and extended installer menu
menu_choice() {
DIALOG " $_ChMenu " --no-cancel --radiolist "\n$_ChMenuBody\n\n$_UseSpaceBar" 0 0 2 \
"$_InstStandBase" "" on \
"$_InstAdvBase" "" off 2>${ANSWER}
menu_opt=$(cat ${ANSWER})
}
# Originally adapted from AIS. Added option to allow users to edit the mirrorlist.
configure_mirrorlist() {
DIALOG " $_MirrorlistTitle " \
@ -389,14 +381,6 @@ inst_needed() {
fi
}
# install a pkg in the chroot if not installed
check_pkg() {
if ! arch_chroot "pacman -Q $1" ; then
basestrap "$1" 2>$ERR
check_for_error "install missing pkg $1 to target." $?
fi
}
# return list of profiles not containing >openrc flag in Packages-Desktop
evaluate_profiles() {
echo "" > /tmp/.systemd_only

Loading…
Cancel
Save