unmaintained/samsung-a5lte-downstream: new device (Samsung Galaxy A5) (MR 2177)

[ci:skip-build] Already built fine on CI
This commit is contained in:
Minecrell 2021-05-18 12:58:13 +02:00 committed by Alexey Minnekhanov
parent 81e081b45b
commit 5012bf043e
No known key found for this signature in database
GPG Key ID: EBF5ECFFFEE34DED
9 changed files with 4415 additions and 0 deletions

View File

@ -0,0 +1,25 @@
# Unmaintained: Downstream port, only for testing. Use mainline port (samsung-a5lte)!
# Reference: <https://postmarketos.org/devicepkg>
pkgname=device-samsung-a5lte-downstream
pkgdesc="Samsung Galaxy A5 (SM-A500F)"
pkgver=1
pkgrel=0
url="https://postmarketos.org"
license="MIT"
arch="armv7"
options="!check !archcheck"
depends="postmarketos-base linux-samsung-a5lte-downstream mkbootimg mesa-dri-gallium msm-fb-refresher"
makedepends="devicepkg-dev"
source="deviceinfo"
build() {
devicepkg_build $startdir $pkgname
}
package() {
devicepkg_package $startdir $pkgname
}
sha512sums="
4456a4eeb4052037006b09790d8a24e3d013fc2fa2441c76fd993c736b8174919ec93486175102b6e434ab7187d8f1403327a665513d4a61a1adbc531bc9905e deviceinfo
"

View File

@ -0,0 +1,32 @@
# Reference: <https://postmarketos.org/deviceinfo>
# Please use double quotes only. You can source this file in shell scripts.
deviceinfo_format_version="0"
deviceinfo_name="Samsung Galaxy A5 (SM-A500F)"
deviceinfo_manufacturer="Samsung"
deviceinfo_codename="samsung-a5lte-downstream"
deviceinfo_year="2015"
deviceinfo_dtb=""
deviceinfo_modules_initfs=""
deviceinfo_arch="armv7"
# Device related
deviceinfo_chassis="handset"
deviceinfo_keyboard="false"
deviceinfo_external_storage="true"
deviceinfo_screen_width="720"
deviceinfo_screen_height="1280"
# Bootloader related
deviceinfo_flash_method="fastboot"
deviceinfo_kernel_cmdline="console=null androidboot.hardware=qcom user_debug=23 msm_rtb.filter=0x3F ehci-hcd.park=3 androidboot.bootdevice=7824900.sdhci"
deviceinfo_generate_bootimg="true"
deviceinfo_bootimg_qcdt="true"
deviceinfo_bootimg_dtb_second="false"
deviceinfo_flash_offset_base="0x80000000"
deviceinfo_flash_offset_kernel="0x00008000"
deviceinfo_flash_offset_ramdisk="0x02000000"
deviceinfo_flash_offset_second="0x00f00000"
deviceinfo_flash_offset_tags="0x01e00000"
deviceinfo_flash_pagesize="2048"
deviceinfo_flash_sparse="true"

View File

@ -0,0 +1,67 @@
# Unmaintained: Downstream port, only for testing. Use mainline port (samsung-a5lte)!
# Reference: <https://postmarketos.org/vendorkernel>
# Kernel config based on:
# make msm8916_sec_defconfig VARIANT_DEFCONFIG=msm8916_sec_a5_eur_defconfig SELINUX_DEFCONFIG=selinux_defconfig
pkgname=linux-samsung-a5lte-downstream
pkgver=3.10.49
pkgrel=0
pkgdesc="Samsung Galaxy A5 (SM-A500F) kernel fork"
arch="armv7"
_carch="arm"
_flavor="samsung-a5lte-downstream"
url="https://kernel.org"
license="GPL-2.0-only"
options="!strip !check !tracedeps pmb:cross-native"
makedepends="bash bc bison devicepkg-dev flex openssl-dev perl dtbtool gcc4 linux-headers"
# Compiler: GCC 4
if [ "${CC:0:5}" != "gcc4-" ]; then
CC="gcc4-$CC"
HOSTCC="gcc4-gcc"
CROSS_COMPILE="gcc4-$CROSS_COMPILE"
fi
# Source
_repository="android_kernel_qcom_msm8916"
_commit="f3644d9f7508b0e9384786e021c5adaa24a7f743"
_config="config-$_flavor.$arch"
source="
$pkgname-$_commit.tar.gz::https://github.com/msm8916-mainline/$_repository/archive/$_commit.tar.gz
$_config
cpr-dump.patch
gpio-debug.patch
memshare-debug.patch
remove-gcc-wrapper.patch
samsung-usb-ethaddr.patch
"
builddir="$srcdir/$_repository-$_commit"
_outdir="out"
prepare() {
default_prepare
REPLACE_GCCH=0 . downstreamkernel_prepare
}
build() {
unset LDFLAGS
make O="$_outdir" ARCH="$_carch" CC="$CC" HOSTCC="$HOSTCC" \
KBUILD_BUILD_VERSION="$((pkgrel + 1 ))-postmarketOS"
}
package() {
downstreamkernel_package "$builddir" "$pkgdir" "$_carch" "$_flavor" "$_outdir"
# Master DTB (deviceinfo_bootimg_qcdt)
dtbTool -p scripts/dtc/ -o "$pkgdir"/boot/dt.img "$_outdir/arch/$_carch/boot/"
}
sha512sums="
45d1c250f71bdf441738fe0ab7f433597dbba2b6b68a524a5733b07f1ff3650e064e70164aca0795a02932c9b33cb8e465d2c9209297bf06a93eacd790cea2f9 linux-samsung-a5lte-downstream-f3644d9f7508b0e9384786e021c5adaa24a7f743.tar.gz
cb7530bdec93504f166cc0f044ffda47a7b0eeacf77066ed1b5a2a4eeaec25b284c63f337bd5ac835bac8943c78d40ac9ba1863ed3e418564bbdf2452c9146a2 config-samsung-a5lte-downstream.armv7
f040a1d7169b9ddb5baabb7de1838441e8608894dc6dc61ececb1acb4fe9851289934b37d74afb61addc01d7a1e4f1d2413f5e542c2a4aeb0c01f680797d37c6 cpr-dump.patch
e9f809b6659375cd7e854821f9925faa263d287c06e44071017cd4afb32f79c47e63760c9c95b4f0c15b79b6b1af4a36911861104a7b56dea2195baf9e4f4685 gpio-debug.patch
56083a8b290a7b1b1ffc9c8e3333db6d786a20d6e91ee400e895ecee8d31cccc75d809be13bcfe5cfb7d5b53a687b25281e8fd454cf420468ded3f77dcea9897 memshare-debug.patch
4a09fdcf99a4716a4ced11b7d74b7867423e5f6fa6c62674e57f496a10647c0b704fd5f91c46711e363337b54d3b7917b6c685230568eab44b6303bd285a2b61 remove-gcc-wrapper.patch
04f7df03f4c9e4b144c24c33b6fadc98381dacf891535ba18d791c250366550c59dba19418e47dbe575671e253d19a1e8076dd7f46743c0123e624a65366aaa6 samsung-usb-ethaddr.patch
"

View File

@ -0,0 +1 @@
../../.shared-patches/linux/qcom/msm8916/cpr-dump.patch

View File

@ -0,0 +1 @@
../../.shared-patches/linux/qcom/msm8916/gpio-debug.patch

View File

@ -0,0 +1 @@
../../.shared-patches/linux/qcom/msm8916/memshare-debug.patch

View File

@ -0,0 +1 @@
../../.shared-patches/linux/qcom/msm8916/remove-gcc-wrapper.patch

View File

@ -0,0 +1 @@
../../.shared-patches/linux/samsung-usb-ethaddr.patch