Skip to content

Commit

Permalink
bootmanager: update to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterPawn committed Jan 12, 2023
1 parent ee2751b commit 6fe027d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions files/bootmanager/bootmanager
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# vim: set tabstop=4 syntax=sh :
# SPDX-License-Identifier: GPL-2.0-or-later WITH exception (do not use in other places) for functions imported from YourFritz shell framework
yf_bootmanager_version="0.8.6"
yf_bootmanager_timestamp=202204152119
yf_bootmanager_timestamp=202301121629
#######################################################################################################
# #
# extension for the 'restart' page of AVM's FRITZ!OS GUI to provide a selection between the two #
Expand Down Expand Up @@ -2832,8 +2832,8 @@ load_device_configuration()
[ -n "$BM_DEBUG_EVA" ] && printf -- "EVA device configuration lookup lasted %s seconds.\n" "$(duration "$time1" "$time2")" 1>&2 && \
cat "$device_cache_file" 1>&2
else
device_cbs="$(sed -n -e "s|^\(immutable\|changeable\|undetectable\)=.*\$|\1|p" "$device_cache_file")"
device_branding="$(sed -n -e "s|^\(immutable\|changeable\|undetectable\)=\(.*\)\$|\2|p" "$device_cache_file")"
device_cbs="$(sed -n -e "s;^\(immutable\|changeable\|undetectable\)=.*\$;\1;p" "$device_cache_file")"
device_branding="$(sed -n -e "s;^\(immutable\|changeable\|undetectable\)=\(.*\)\$;\2;p" "$device_cache_file")"
[ "$device_cbs" = "changeable" ] && device_branding_is_changeable="true" || device_branding_is_changeable="false"
[ -n "$BM_DEBUG_EVA" ] && printf -- "Device configuration info loaded from cache file.\n" 1>&2 && cat "$device_cache_file" 1>&2
fi
Expand Down Expand Up @@ -2863,6 +2863,7 @@ error_description=""
error_code=0
case "$1" in
("is_supported")
system_type="$(get_system_type)"
is_dualboot_supported && rc=0 || rc=1
;;
("is_blocked")
Expand Down

0 comments on commit 6fe027d

Please sign in to comment.