forked from Mirror/pmbootstrap
Signed-off-by: xtex <xtexchooser@duck.com> Reviewed-by: Oliver Smith <ollieparanoid@postmarketos.org> Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C20240113123358.6142-2-xtex@envs.net%3E
42 lines
1.1 KiB
Fish
42 lines
1.1 KiB
Fish
#!/usr/bin/env fish
|
|
# Copyright 2019 Oliver Smith
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
for arg in $argv
|
|
if not string match -q -- "--gcc6" $arg;
|
|
and not string match -q -- "--gcc4" $arg
|
|
echo "usage: source envkernel.fish"
|
|
echo "optional arguments:"
|
|
echo " --gcc4 Use GCC4 cross compiler"
|
|
echo " --gcc6 Use GCC6 cross compiler"
|
|
echo " --help Show this help message"
|
|
exit 1
|
|
end
|
|
end
|
|
|
|
# Fish compatibility code from envkernel.sh
|
|
set script_dir (dirname (status filename))
|
|
sh "$script_dir/envkernel.sh" $argv --fish 1>| read -z fishcode
|
|
set pmbootstrap_dir (realpath "$script_dir/..")
|
|
|
|
# Verbose output (enable with: 'set ENVKERNEL_FISH_VERBOSE 1')
|
|
if [ "$ENVKERNEL_FISH_VERBOSE" = "1" ]
|
|
echo "(eval code start)"
|
|
printf "$fishcode"
|
|
echo "(eval code end)"
|
|
end
|
|
|
|
# Execute generated code
|
|
echo -e "$fishcode" | source -
|
|
|
|
# Set prompt
|
|
if test -z "$ENVKERNEL_DISABLE_PROMPT"
|
|
functions -c fish_prompt _old_fish_prompt
|
|
|
|
function fish_prompt
|
|
set -l old_status $status
|
|
printf "[envkernel] "
|
|
echo "exit $old_status" | .
|
|
_old_fish_prompt
|
|
end
|
|
end
|