54638ae2cf
OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=649
93 lines
2.4 KiB
Plaintext
93 lines
2.4 KiB
Plaintext
#
|
|
# spec file for package $NAME
|
|
#
|
|
# Copyright (c) @YEAR@ SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define patchversion @PATCHVERSION@
|
|
%define vanilla_only @VANILLA_ONLY@
|
|
|
|
%include %_sourcedir/kernel-spec-macros
|
|
|
|
Name: $NAME
|
|
Version: @RPMVERSION@
|
|
%if 0%{?is_kotd}
|
|
Release: <RELEASE>.g@COMMIT@
|
|
%else
|
|
Release: @RELEASE@
|
|
%endif
|
|
Summary: Device Tree files for $MACHINES
|
|
License: GPL-2.0
|
|
Group: System/Boot
|
|
Url: http://www.kernel.org/
|
|
%if %vanilla_only
|
|
BuildRequires: kernel-source-vanilla
|
|
%else
|
|
BuildRequires: kernel-source
|
|
%endif
|
|
$ARCH_RESTRICTIONS
|
|
BuildRequires: cpp
|
|
BuildRequires: dtc >= 1.4.0
|
|
BuildRequires: xz
|
|
Requires: kernel = %version
|
|
|
|
%description
|
|
Device Tree files for $MACHINES.
|
|
|
|
$SUBPKG_DESC
|
|
|
|
%prep
|
|
|
|
%build
|
|
source=/usr/src/linux-%kernelrelease
|
|
%if %vanilla_only
|
|
source=$source-vanilla
|
|
%endif
|
|
cp $source/COPYING .
|
|
mkdir pp
|
|
PPDIR=`pwd`/pp
|
|
export DTC_FLAGS="-R 4 -p 0x1000"
|
|
|
|
cd $source/$DTS_folder
|
|
for dts in $ALL_SUPPORTED_DTB; do
|
|
target=${dts%*.dts}
|
|
mkdir -p $PPDIR/$(dirname $target)
|
|
cpp -x assembler-with-cpp -undef -D__DTS__ -nostdinc -I. -I./include/ -P $target.dts -o $PPDIR/$target.dts
|
|
dtc $DTC_FLAGS -I dts -O dtb -i ./$(dirname $target) -o $PPDIR/$target.dtb $PPDIR/$target.dts
|
|
done
|
|
|
|
%define dtbdir /boot/dtb-%kernelrelease
|
|
|
|
%install
|
|
|
|
cd pp
|
|
for dts in $ALL_SUPPORTED_DTB; do
|
|
target=${dts%*.dts}
|
|
install -m 700 -d %{buildroot}%{dtbdir}/$(dirname $target)
|
|
install -m 644 $target.dtb %{buildroot}%{dtbdir}/$(dirname $target)
|
|
%ifarch aarch64
|
|
# HACK: work around U-Boot ignoring vendor dir
|
|
baselink=%{dtbdir}/$(basename $target).dtb
|
|
vendordir=$(basename $(dirname $target))
|
|
ln -s $target.dtb %{buildroot}$baselink
|
|
echo $baselink >> ../dtb-$vendordir.list
|
|
%endif
|
|
done
|
|
cd -
|
|
|
|
$SUBPKG_POST
|
|
$SUBPKG_FILES
|
|
%changelog
|