From: Christian Hofstaedtler Date: Wed, 16 Nov 2011 11:00:40 +0000 (+0100) Subject: Remove 915resolution support X-Git-Tag: v0.9.34~9 X-Git-Url: https://git.grml.org/?p=grml-autoconfig.git;a=commitdiff_plain;h=282d56843ab0fb7bbf43c23cfb7006ddb38f7e50 Remove 915resolution support Tool is gone since 2009 --- diff --git a/autoconfig b/autoconfig index 9c1ee17..88ee853 100644 --- a/autoconfig +++ b/autoconfig @@ -47,7 +47,6 @@ CONFIG_GPM='yes' ################################################################################ # Notice! Do not touch the following options except you really know # what you are doing! -CONFIG_915RESOLUTION='yes' # run 915resolution with specified options for adjusting resolution CONFIG_AUTOMOUNT='yes' # automounting of device labeled GRMLCFG CONFIG_BLANKING='yes' # check for bootoption noblank to disable console blanking CONFIG_CONFIG='yes' # do we want config unpacking to work? diff --git a/autoconfig.functions b/autoconfig.functions index a137626..ff1052f 100755 --- a/autoconfig.functions +++ b/autoconfig.functions @@ -1715,38 +1715,6 @@ fi } # }}} -# {{{ 915resolution -config_915resolution(){ -if checkbootparam '915resolution' ; then - OPTIONS="$(getbootparam '915resolution' 2>>$DEBUG)" - if [ -x /usr/sbin/915resolution ]; then - CMD=915resolution - MODE="" - XRESO="" - YRESO="" - if [ -n "$OPTIONS" ]; then - # Extra options - MODE="${OPTIONS%%,*}" - R="${OPTIONS#*,}" - if [ -n "$R" -a "$R" != "$OPTIONS" ]; then - OPTIONS="$R" - XRESO="${OPTIONS%%,*}" - R="${OPTIONS#*,}" - if [ -n "$R" -a "$R" != "$OPTIONS" ]; then - OPTIONS="$R" - YRESO="${OPTIONS%%,*}" - R="${OPTIONS#*,}" - fi - fi - fi - einfo "Running 915resolution with options ${MODE} ${XRESO} ${YRESO}." - [ -n "$MODE" ] && [ -n "$XRESO" ] && [ -n "$YRESO" ] && ( sh -c "$CMD $MODE $XRESO $YRESO" & ) - eend 0 - fi -fi -} -# }}} - # {{{ SW-RAID config_swraid(){ [ -n "$INSTALLED" ] && return 0 diff --git a/grml-autoconfig b/grml-autoconfig index c8584b6..192ebf7 100755 --- a/grml-autoconfig +++ b/grml-autoconfig @@ -210,8 +210,6 @@ checkvalue $CONFIG_CONSOLE && config_console checkvalue $CONFIG_FIX_UNIONFS && fix_unionfs -checkvalue $CONFIG_915RESOLUTION && config_915resolution - checkvalue $CONFIG_VIRTUALBOX_SHARED_FOLDERS && config_virtualbox_shared_folders checkvalue $CONFIG_MYPATH && config_mypath