#!/bin/bash # # gen_kselftest_tar # Generate kselftest tarball # Author: Shuah Khan # Copyright (C) 2015 Samsung Electronics Co., Ltd. # This software may be freely redistributed under the terms of the GNU # General Public License (GPLv2). # main main() { if [ "$#" -eq 0 ]; then echo "$0: Generating default compression gzip" copts="cvzf" ext=".tar.gz" else case "$1" in tar) copts="cvf" ext=".tar" ;; targz) copts="cvzf" ext=".tar.gz" ;; tarbz2) copts="cvjf" ext=".tar.bz2" ;; tarxz) copts="cvJf" ext=".tar.xz" ;; *) echo "Unknown tarball format $1" exit 1 ;; esac fi install_dir=./kselftest # Run install using INSTALL_KSFT_PATH override to generate install # directory ./kselftest_install.sh tar $copts kselftest${ext} $install_dir echo "Kselftest archive kselftest${ext} created!" # clean up install directory rm -rf kselftest } main "$@" alue='feb3cbea0946c67060e2d5bcb7499b0a6f6700fe'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/irda/irlan/Makefile
diff options
context:
space:
mode:
authorJerome Brunet <jbrunet@baylibre.com>2017-01-20 08:20:24 -0800
committerArnd Bergmann <arnd@arndb.de>2017-01-27 16:46:42 +0100
commitfeb3cbea0946c67060e2d5bcb7499b0a6f6700fe (patch)
tree4789978854a7fd97de08f4b77f220bcd9278417b /net/irda/irlan/Makefile
parent7a308bb3016f57e5be11a677d15b821536419d36 (diff)
ARM64: dts: meson-gxbb-odroidc2: fix GbE tx link breakage
OdroidC2 GbE link breaks under heavy tx transfer. This happens even if the MAC does not enable Energy Efficient Ethernet (No Low Power state Idle on the Tx path). The problem seems to come from the phy Rx path, entering the LPI state. Disabling EEE advertisement on the phy prevent this feature to be negociated with the link partner and solve the issue. Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Signed-off-by: Kevin Hilman <khilman@baylibre.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'net/irda/irlan/Makefile')