htc-enrc2b: new device (HTC One X+) (MR 1269)
[ci:skip-build]: already built successfully in CI
This commit is contained in:
parent
48fa646f08
commit
0e28a47d9f
6 changed files with 3702 additions and 0 deletions
24
device/testing/device-htc-enrc2b/APKBUILD
Normal file
24
device/testing/device-htc-enrc2b/APKBUILD
Normal file
|
@ -0,0 +1,24 @@
|
|||
# Maintainer: Max Buchholz <2maxax2@gmx.de>
|
||||
# Reference: <https://postmarketos.org/devicepkg>
|
||||
pkgname=device-htc-enrc2b
|
||||
pkgdesc="HTC One X+"
|
||||
pkgver=0.1
|
||||
pkgrel=0
|
||||
url="https://postmarketos.org"
|
||||
license="MIT"
|
||||
arch="armv7"
|
||||
options="!check !archcheck"
|
||||
depends="postmarketos-base linux-htc-enrc2b mkbootimg mesa-dri-swrast"
|
||||
makedepends="devicepkg-dev"
|
||||
source="deviceinfo"
|
||||
|
||||
build() {
|
||||
devicepkg_build $startdir $pkgname
|
||||
}
|
||||
|
||||
package() {
|
||||
devicepkg_package $startdir $pkgname
|
||||
}
|
||||
|
||||
|
||||
sha512sums="7f44ec1b75ac2eb2fb0035103ac920a395c877068e3e6780d5a5fe47a385a3faeca55dc8918e71de2ecf665d6cd6155e34bbd75b97b47f615c81955d18d769bd deviceinfo"
|
32
device/testing/device-htc-enrc2b/deviceinfo
Normal file
32
device/testing/device-htc-enrc2b/deviceinfo
Normal 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="HTC One X+"
|
||||
deviceinfo_manufacturer="HTC"
|
||||
deviceinfo_codename="htc-enrc2b"
|
||||
deviceinfo_year="2012"
|
||||
deviceinfo_chassis="handset"
|
||||
deviceinfo_dtb=""
|
||||
deviceinfo_modules_initfs=""
|
||||
deviceinfo_arch="armv7"
|
||||
|
||||
# Device related
|
||||
deviceinfo_keyboard="false"
|
||||
deviceinfo_external_storage="false"
|
||||
deviceinfo_screen_width="720"
|
||||
deviceinfo_screen_height="1280"
|
||||
|
||||
# Bootloader related
|
||||
deviceinfo_flash_method="fastboot"
|
||||
deviceinfo_kernel_cmdline=""
|
||||
deviceinfo_generate_bootimg="true"
|
||||
deviceinfo_bootimg_qcdt="false"
|
||||
deviceinfo_bootimg_dtb_second="false"
|
||||
deviceinfo_flash_offset_base="0x10000000"
|
||||
deviceinfo_flash_offset_kernel="0x00008000"
|
||||
deviceinfo_flash_offset_ramdisk="0x01000000"
|
||||
deviceinfo_flash_offset_second="0x00f00000"
|
||||
deviceinfo_flash_offset_tags="0x00000100"
|
||||
deviceinfo_flash_pagesize="2048"
|
||||
|
48
device/testing/linux-htc-enrc2b/APKBUILD
Normal file
48
device/testing/linux-htc-enrc2b/APKBUILD
Normal file
|
@ -0,0 +1,48 @@
|
|||
# Maintainer: Max Buchholz <2maxax2@gmx.de>
|
||||
# Reference: <https://postmarketos.org/vendorkernel>
|
||||
# Kernel config based on: arch/arm/configs/enrc2b_defconfig
|
||||
|
||||
pkgname=linux-htc-enrc2b
|
||||
pkgver=3.1.10
|
||||
pkgrel=0
|
||||
pkgdesc="HTC One X+ kernel fork"
|
||||
arch="armv7"
|
||||
_carch="arm"
|
||||
_flavor="htc-enrc2b"
|
||||
url="https://kernel.org"
|
||||
license="GPL-2.0-only"
|
||||
options="!strip !check !tracedeps"
|
||||
makedepends="bash bc bison devicepkg-dev flex openssl-dev perl"
|
||||
|
||||
# Source
|
||||
_repository="pulsar-enrc2b"
|
||||
_commit="f9d175c85097000be61ed039a6c00fc8c7aae36c"
|
||||
_config="config-$_flavor.$arch"
|
||||
source="
|
||||
$pkgname-$_commit.tar.gz::https://github.com/jareddantis/$_repository/archive/$_commit.tar.gz
|
||||
$_config
|
||||
gcc7-give-up-on-ilog2-const-optimizations.patch
|
||||
gcc8-fix-put-user.patch
|
||||
"
|
||||
builddir="$srcdir/$_repository-$_commit"
|
||||
_outdir="out"
|
||||
|
||||
prepare() {
|
||||
default_prepare
|
||||
. downstreamkernel_prepare
|
||||
}
|
||||
|
||||
build() {
|
||||
unset LDFLAGS
|
||||
make O="$_outdir" ARCH="$_carch" CC="${CC:-gcc}" \
|
||||
KBUILD_BUILD_VERSION="$((pkgrel + 1 ))-postmarketOS"
|
||||
}
|
||||
|
||||
package() {
|
||||
downstreamkernel_package "$builddir" "$pkgdir" "$_carch" "$_flavor" "$_outdir"
|
||||
}
|
||||
|
||||
sha512sums="3982a2b62fea6d5d75929e5a3a429ad451b90be72078237c8bb72bd57818327b529001c456298b80822b4c632a6091a8ecd0304a1c950e1170c0ae17ccfc47d6 linux-htc-enrc2b-f9d175c85097000be61ed039a6c00fc8c7aae36c.tar.gz
|
||||
51105716fc786b3424b92810650118599a1bb2d995a08f4811ed775f12d1273ff59059b3906693b55e5b5c4e346529520293c393bcd1015a1324c3caa7a23798 config-htc-enrc2b.armv7
|
||||
77eba606a71eafb36c32e9c5fe5e77f5e4746caac292440d9fb720763d766074a964db1c12bc76fe583c5d1a5c864219c59941f5e53adad182dbc70bf2bc14a7 gcc7-give-up-on-ilog2-const-optimizations.patch
|
||||
197d40a214ada87fcb2dfc0ae4911704b9a93354b75179cd6b4aadbb627a37ec262cf516921c84a8b1806809b70a7b440cdc8310a4a55fca5d2c0baa988e3967 gcc8-fix-put-user.patch"
|
3596
device/testing/linux-htc-enrc2b/config-htc-enrc2b.armv7
Normal file
3596
device/testing/linux-htc-enrc2b/config-htc-enrc2b.armv7
Normal file
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1 @@
|
|||
../../.shared-patches/linux/gcc7-give-up-on-ilog2-const-optimizations.patch
|
1
device/testing/linux-htc-enrc2b/gcc8-fix-put-user.patch
Symbolic link
1
device/testing/linux-htc-enrc2b/gcc8-fix-put-user.patch
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../.shared-patches/linux/gcc8-fix-put-user.patch
|
Loading…
Reference in a new issue