dtx_diff (8c57a5e7b2820f349c95b8c8393fec1e0f4070d2) | dtx_diff (ca0cd118a15f9a1e25fa6086543ab49ddd96df99) |
---|---|
1#! /bin/bash 2 3# Copyright (C) 2015 Frank Rowand 4# 5# This program is free software; you can redistribute it and/or modify 6# it under the terms of the GNU General Public License as published by 7# the Free Software Foundation; version 2 of the License. 8 --- 252 unchanged lines hidden (view full) --- 261else 262 __KBUILD_OUTPUT="${KBUILD_OUTPUT}" 263fi 264 265DTC="${__KBUILD_OUTPUT}/scripts/dtc/dtc" 266 267if [ ! -x ${DTC} ] ; then 268 __DTC="dtc" | 1#! /bin/bash 2 3# Copyright (C) 2015 Frank Rowand 4# 5# This program is free software; you can redistribute it and/or modify 6# it under the terms of the GNU General Public License as published by 7# the Free Software Foundation; version 2 of the License. 8 --- 252 unchanged lines hidden (view full) --- 261else 262 __KBUILD_OUTPUT="${KBUILD_OUTPUT}" 263fi 264 265DTC="${__KBUILD_OUTPUT}/scripts/dtc/dtc" 266 267if [ ! -x ${DTC} ] ; then 268 __DTC="dtc" |
269 if grep -q "^CONFIG_DTC=y" ${__KBUILD_OUTPUT}/.config ; then | 269 if grep -q "^CONFIG_DTC=y" ${__KBUILD_OUTPUT}/.config 2>/dev/null; then |
270 make_command=' 271 make scripts' 272 else 273 make_command=' 274 Enable CONFIG_DTC in the kernel configuration 275 make scripts' 276 fi 277 if ( ! which ${__DTC} >/dev/null ) ; then --- 72 unchanged lines hidden --- | 270 make_command=' 271 make scripts' 272 else 273 make_command=' 274 Enable CONFIG_DTC in the kernel configuration 275 make scripts' 276 fi 277 if ( ! which ${__DTC} >/dev/null ) ; then --- 72 unchanged lines hidden --- |