summaryrefslogtreecommitdiff
path: root/packaging/linux-exynos-tm2.spec
blob: b12df4e6b72b6720d03deb3c7d36e4df1256ad48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
%define config_name tizen_tm2_defconfig
%define buildarch arm64
%define target_board tm2
%define variant %{buildarch}-%{target_board}

Name: %{target_board}-linux-kernel
Summary: The Linux Kernel for TM2/TM2E board
Version: 4.1
Release: 0
License: GPL-2.0
ExclusiveArch: aarch64
Group: System/Kernel
Vendor: The Linux Community
URL: https://www.kernel.org
Source0:   linux-kernel-%{version}.tar.xz
BuildRoot: %{_tmppath}/%{name}-%{PACKAGE_VERSION}-root

%define fullVersion %{version}-%{variant}
%define __spec_install_post /usr/lib/rpm/brp-compress || :
%define debug_package %{nil}

BuildRequires: bc
BuildRequires: module-init-tools
BuildRequires: u-boot-tools >= 2016.03

%if "%{?profile}" != "mobile"
ExcludeArch: aarch64
%endif

%description
The Linux Kernel, the operating system core itself

%package -n %{variant}-linux-kernel
License: GPL-2.0
Summary: Tizen kernel for %{target_board}
Group: System/Kernel
Provides: %{variant}-kernel-profile-%{profile} = %{version}-%{release}
Provides: %{variant}-kernel-uname-r = %{fullVersion}

%description -n %{variant}-linux-kernel
This package contains the Linux kernel for Tizen (%{profile} profile, arch %{buildarch}, target board %{target_board})

%package -n %{variant}-linux-kernel-modules
Summary: Kernel modules for %{target_board}
Group: System/Kernel
Provides: %{variant}-kernel-modules = %{fullVersion}
Provides: %{variant}-kernel-modules-uname-r = %{fullVersion}

%description -n %{variant}-linux-kernel-modules
Kernel-modules includes the loadable kernel modules(.ko files) for %{target_board}

%package -n %{variant}-linux-kernel-debuginfo
License: GPL-2.0
Summary: Linux support debug symbol
Group: System/Kernel

%description -n %{variant}-linux-kernel-debuginfo
This package provides the %{target_board} linux kernel's debugging files.

%package -n %{variant}-linux-kernel-devel
License: GPL-2.0
Summary: Linux support kernel map and etc for other packages
Group: System/Kernel
Provides: kernel-devel-tizen-dev
Provides: kernel-devel-tizen
Provides: %{variant}-kernel-devel = %{fullVersion}
Provides: %{variant}-kernel-devel-uname-r = %{fullVersion}

%description -n %{variant}-linux-kernel-devel
This package provides kernel map and etc information.

%package -n %{variant}-linux-kernel-headers
License: GPL-2.0
Summary: Linux support headers for userspace development
Group: System/Kernel
Provides: kernel-headers-tizen-dev

%description -n %{variant}-linux-kernel-headers
This package provides userspaces headers from the Linux kernel. These
headers are used by the installed headers for GNU glibc and other system
 libraries.

%prep
%setup -q -n linux-kernel-%{version}

%build
# Make sure EXTRAVERSION says what we want it to say
sed -i "s/^EXTRAVERSION.*/EXTRAVERSION = -%{variant}/" Makefile

# 1-1. extract uapi headers
mkdir -p uapi-headers/usr
make mrproper
make headers_check
make headers_install INSTALL_HDR_PATH=uapi-headers/usr

# 1-2. set config file
make %{config_name}

# 1-3. Build Image/Image.gz
make %{?_smp_mflags}

# 1-4. Build dtbs
make dtbs %{?_smp_mflags}

# 1-5. Build u-boot itb image
mkimage -f arch/arm64/boot/tizen-tm2.its kernel.img

# 1-6. Build modules
make modules %{?_smp_mflags}

%install
QA_SKIP_BUILD_ROOT="DO_NOT_WANT"; export QA_SKIP_BUILD_ROOT

# 2-1. Destination directories
mkdir -p %{_builddir}/boot
mkdir -p %{_builddir}/lib/modules

# 2-2. Install kernel.img
install -m 644 kernel.img %{_builddir}/boot/

# 2-3. Install Image.gz, dtbs, System.map, ...
install -m 644 arch/%{buildarch}/boot/Image.gz %{_builddir}/boot/
install -m 644 arch/%{buildarch}/boot/dts/exynos/*.dtb %{_builddir}/boot/
install -m 644 System.map %{_builddir}/boot/
install -m 644 .config %{_builddir}/boot/config-%{fullVersion}
install -m 644 vmlinux %{_builddir}/boot/
install -m 644 COPYING %{_builddir}/boot/

# 2-4. Install modules
make INSTALL_MOD_STRIP=1 INSTALL_MOD_PATH=%{_builddir} modules_install

# 2-5. Install uapi headers
find uapi-headers/usr/include -name ".install" | xargs rm -f
find uapi-headers/usr/include -name "..install.cmd" | xargs rm -f
rm -f uapi-headers/usr/include/asm*/atomic.h
rm -f uapi-headers/usr/include/asm*/io.h
mv uapi-headers/usr %{_builddir}/

# 3-1. remove unnecessary files to prepare for devel package
rm -rf arch/%{buildarch}/boot/vmlinux*
rm -rf System.map*
rm -rf vmlinux*
rm -rf kernel.img
rm -rf uapi-headers
rm -f tools/mkimage*
find %{_builddir}/linux-kernel-%{version} -name ".tmp_vmlinux*" -exec rm -f {} \;
find %{_builddir}/linux-kernel-%{version} -name ".gitignore" -exec rm -f {} \;
find %{_builddir}/linux-kernel-%{version} -name "\.*dtb*tmp" -exec rm -f {} \;
find %{_builddir}/linux-kernel-%{version} -name "\.*dtb" -exec rm -f {} \;
find %{_builddir}/linux-kernel-%{version} -name "*\.*tmp" -exec rm -f {} \;
find %{_builddir}/linux-kernel-%{version} -name "vmlinux" -exec rm -f {} \;
find %{_builddir}/linux-kernel-%{version} -name "Image" -exec rm -f {} \;
find %{_builddir}/linux-kernel-%{version} -name "Image.gz" -exec rm -f {} \;
find %{_builddir}/linux-kernel-%{version} -name "*.cmd" -exec rm -f {} \;
find %{_builddir}/linux-kernel-%{version} -name "*\.ko" -exec rm -f {} \;
find %{_builddir}/linux-kernel-%{version} -name "*\.o" -exec rm -f {} \;
find %{_builddir}/linux-kernel-%{version} -name "*\.S" -exec rm -f {} \;
find %{_builddir}/linux-kernel-%{version} -name "*\.c" -not -path "%{_builddir}/linux-kernel-%{version}/scripts/*" -exec rm -f {} \;

# 3-2. move files for devel package
cd %{_builddir}
mv linux-kernel-%{version} kernel-devel-%{variant}
mkdir -p linux-kernel-%{version}

# 4. Move files for each package
mkdir -p %{buildroot}/boot/kernel/devel
mv %{_builddir}/boot/COPYING %{buildroot}/
mv %{_builddir}/boot/* %{buildroot}/boot/
rm -rf %{_builddir}/boot
mv %{_builddir}/lib %{buildroot}/
mv %{_builddir}/usr %{buildroot}/
mv %{_builddir}/kernel-devel-%{variant} %{buildroot}/boot/kernel/devel/

ln -s kernel-devel-%{variant} %{buildroot}/boot/kernel/devel/tizen-devel

%clean
rm -rf %{buildroot}
rm -rf %{_builddir}/COPYING
rm -rf %{_builddir}/boot
rm -rf %{_builddir}/lib
rm -rf %{_builddir}/usr
rm -rf %{_builddir}/kernel-devel-%{variant}

%files -n %{variant}-linux-kernel
%license /COPYING
/boot/kernel.img

%files -n %{variant}-linux-kernel-modules
/lib/modules/

%files -n %{variant}-linux-kernel-devel
/boot/kernel/devel/*

%files -n %{variant}-linux-kernel-headers
/usr/include/*

%files -n %{variant}-linux-kernel-debuginfo
/boot/Image.gz
/boot/*.dtb
/boot/System.map*
/boot/config*
/boot/vmlinux*