]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
kernel: configure: Replace update command with olddefconfig
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 29 Dec 2018 11:49:05 +0000 (11:49 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 29 Dec 2018 11:49:05 +0000 (11:49 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
kernel/scripts/configure

index f9959f5d3f0ed3796127931cf5c0d6de79160b44..1b1830b4b44bcdcd1bcb5e945da9e8bf73f2f002 100755 (executable)
@@ -302,12 +302,12 @@ while [ $# -gt 0 ]; do
                help|"")
                        echo "${0} - available commands:"
                        echo "    * merge <arch> <flavour> <output filename>"
-                       echo "    * update"
                        echo "    * menuconfig"
                        echo "    * oldconfig"
+                       echo "    * olddefconfig"
                        exit 0
                        ;;
-               menuconfig|merge|oldconfig|update)
+               menuconfig|merge|oldconfig|olddefconfig)
                        action=${arg}
                        break
                        ;;
@@ -329,14 +329,10 @@ case "${action}" in
                merge_config $@
                exit $?
                ;;
-       menuconfig|oldconfig)
+       menuconfig|oldconfig|olddefconfig)
                make_config "${action}"
                exit $?
                ;;
-       update)
-               diff_configs $@
-               exit $?
-               ;;
 esac
 
 exit 1