File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -554,21 +554,20 @@ make_basefs() {
554554# Additional packages (airootfs)
555555make_packages_repo () {
556556 msg_debug " pkglist.sh ${pkglist_args[*]} "
557- readarray -t _pkglist < <( " ${tools_dir} /pkglist.sh" " ${pkglist_args[@]} " )
558557
559- # pacman -Sy --config "${build_pacman_conf}"
560- readarray -t repopkgs < <( pacman-conf -c " ${build_pacman_conf} " -l | xargs -I{} pacman -Sql --config " ${build_pacman_conf} " --color=never {} && pacman -Sg )
561-
562- local _pkg
563- for _pkg in " ${_pkglist[@]} " ; do
564- msg_info " Checking ${_pkg} ..."
565- if printf " %s\n" " ${repopkgs[@]} " | grep -qx " ${_pkg} " ; then
566- _pkglist_install+=(" ${_pkg} " )
567- else
568- msg_info " ${_pkg} was not found. Install it with yay from AUR"
569- norepopkg+=(" ${_pkg} " )
570- fi
571- done
558+ # Package check
559+ # readarray -t _pkglist < <("${tools_dir}/pkglist.sh" "${pkglist_args[@]}" )
560+ # readarray -t repopkgs < <(pacman-conf -c "${build_pacman_conf}" -l | xargs -I{} pacman -Sql --config "${build_pacman_conf}" --color=never {} && pacman -Sg)
561+ # local _pkg
562+ # for _pkg in "${_pkglist[@]}"; do
563+ # msg_info "Checking ${_pkg}..."
564+ # if printf "%s\n" "${repopkgs[@]}" | grep -qx "${_pkg}"; then
565+ # _pkglist_install+=("${_pkg}")
566+ # else
567+ # msg_info "${_pkg} was not found. Install it with yay from AUR"
568+ # norepopkg+=("${_pkg}")
569+ # fi
570+ # done
572571
573572 # Create a list of packages to be finally installed as packages.list directly under the working directory.
574573 echo -e " # The list of packages that is installed in live cd.\n#\n" > " ${build_dir} /packages.list"
You can’t perform that action at this time.
0 commit comments