# APKBUILD based on linux-vanilla aport. Changes: # - disabled module installation # - add !check !tracedeps # - package: just install zImage-dtb and kernel.release, because the kernel config # does not generate modules or dtb files # - do not create -dev subpackage (makes no sense without module support) # # Kernel config changes, based on: arch/arm/configs/aosp_shinano_aries_defconfig # - enable devtmpfs (needed for udev -> touch support in weston) # - change compression from CONFIG_KERNEL_LZMA=y to # CONFIG_KERNEL_GZIP=y (so it works with busybox) # - disable proprietary graphics driver _vendor=sony _flavor=sony-aries _hash="b1ceda7b02ea29c526d329884db1e9f2694ab394" _config="config-${_flavor}.armhf" pkgname=linux-${_flavor} pkgver=3.10.84 case $pkgver in *.*.*) _kernver=${pkgver%.*};; *.*) _kernver=$pkgver;; esac pkgrel=1 arch="armhf" pkgdesc="Sony Xperia Z3 Compact kernel" url="https://github.com/sonyxperiadev/kernel" depends="postmarketos-mkinitfs" makedepends="perl sed installkernel bash gmp-dev bc linux-headers elfutils-dev" options="!strip !check !tracedeps" install= source=" $pkgname-$_hash.tar.gz::https://github.com/sonyxperiadev/kernel/archive/${_hash}.tar.gz $_config compiler-gcc6.h mdss_fb_refresh_rate.patch " subpackages="" license="GPL2" _abi_release=${pkgver} _carch="arm" HOSTCC="${CC:-gcc}" HOSTCC="${HOSTCC#${CROSS_COMPILE}}" ksrcdir="$srcdir/kernel-${_hash}" prepare() { local _patch_failed= cd "$ksrcdir" # first apply patches in specified order for i in $source; do case $i in *.patch) msg "Applying $i..." if ! patch -s -p1 -N -i "$srcdir"/$i; then echo $i >>failed _patch_failed=1 fi ;; esac done if ! [ -z "$_patch_failed" ]; then error "The following patches failed:" cat failed return 1 fi # gcc6 support cp -v "$srcdir/compiler-gcc6.h" "$ksrcdir/include/linux/" || return 1 mkdir -p "$srcdir"/build cp "$srcdir"/$_config "$srcdir"/build/.config || return 1 make -C "$ksrcdir" O="$srcdir"/build ARCH="$_carch" HOSTCC="$HOSTCC" \ silentoldconfig } # this is so we can do: 'abuild menuconfig' to reconfigure kernel menuconfig() { cd "$srcdir"/build || return 1 make ARCH="$_carch" menuconfig cp .config "$startdir"/$_config } build() { cd "$srcdir"/build unset LDFLAGS make ARCH="$_carch" CC="${CC:-gcc}" \ KBUILD_BUILD_VERSION="$((pkgrel + 1 ))-Alpine" \ || return 1 } package() { install -Dm644 "$srcdir/build/arch/arm/boot/zImage-dtb" \ "$pkgdir/boot/vmlinuz-$_flavor" install -D "$srcdir/build/include/config/kernel.release" \ "$pkgdir/usr/share/kernel/$_flavor/kernel.release" } sha512sums="e6b36c25be89d17b43d24cde6ab199012113ffa3fac438780cc9b05f83f13e84b1977cb078069d19dba1a78005cd7c8534d8fd0660c134ae388ea7f0d32c41b1 linux-sony-aries-b1ceda7b02ea29c526d329884db1e9f2694ab394.tar.gz 65607609ac5b03d33857dd5a12bf8a6fe2054e8f47e288f4f8c39dd881f052c0cef47e14dfc0e160d01ca37a326f6696200f5e4883ef57c895bef7d3dd39c229 config-sony-aries.armhf d80980e9474c82ba0ef1a6903b434d8bd1b092c40367ba543e72d2c119301c8b2d05265740e4104ca1ac5d15f6c4aa49e8776cb44264a9a28dc551e0d1850dcc compiler-gcc6.h a8c955bf718f155011e980f3d0948be98e1fee5649f418299a4851780543019daf7afa406aa7b0829375645107e4e6fbf241026b0cabe2b2ac895a47df83d2d8 mdss_fb_refresh_rate.patch"