mirror of
https://github.com/archlinux-jerry/pkgbuilds
synced 2024-11-22 14:00:40 +08:00
drop package: linux-phicomm-n1-armbian-git
This commit is contained in:
parent
08a624e37f
commit
ff431783d7
6 changed files with 0 additions and 340 deletions
|
@ -1,27 +0,0 @@
|
||||||
pkgbase = linux-phicomm-n1-armbian-git
|
|
||||||
pkgver = 5.0.0.rc7.ge30823ab89
|
|
||||||
pkgrel = 1
|
|
||||||
url = https://github.com/150balbes/Amlogic_s905-kernel
|
|
||||||
arch = aarch64
|
|
||||||
license = GPL2
|
|
||||||
makedepends = xmlto
|
|
||||||
makedepends = docbook-xsl
|
|
||||||
makedepends = kmod
|
|
||||||
makedepends = inetutils
|
|
||||||
makedepends = bc
|
|
||||||
makedepends = git
|
|
||||||
makedepends = uboot-tools
|
|
||||||
makedepends = vboot-utils
|
|
||||||
makedepends = dtc
|
|
||||||
options = !strip
|
|
||||||
source = git+https://github.com/150balbes/Amlogic_s905-kernel.git#branch=master
|
|
||||||
source = linux.preset
|
|
||||||
source = 99-linux.hook
|
|
||||||
md5sums = SKIP
|
|
||||||
md5sums = f6ee374f560e1b9df6a7de2399027d1b
|
|
||||||
md5sums = d1c40c7367a7081f3b4c03264780f9d4
|
|
||||||
|
|
||||||
pkgname = linux-phicomm-n1-armbian-git
|
|
||||||
|
|
||||||
pkgname = linux-phicomm-n1-armbian-git-headers
|
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
[Trigger]
|
|
||||||
Type = File
|
|
||||||
Operation = Install
|
|
||||||
Operation = Upgrade
|
|
||||||
Target = boot/zImage
|
|
||||||
Target = usr/lib/initcpio/*
|
|
||||||
|
|
||||||
[Action]
|
|
||||||
Description = Updating %PKGBASE% initcpios
|
|
||||||
When = PostTransaction
|
|
||||||
Exec = /usr/bin/sh -ce "/usr/bin/mkinitcpio -p %PKGBASE% && mkimage -A arm64 -O linux -T ramdisk -C gzip -n uInitrd -d /boot/initramfs-linux-phicomm-n1.img /boot/uInitrd"
|
|
|
@ -1,257 +0,0 @@
|
||||||
# AArch64 kernel for Phicomm N1
|
|
||||||
# Maintainer: Jerry Xiao <isjerryxiao at outlook dot com>
|
|
||||||
# Contributor: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
||||||
# Contributor: Peter Cai <peter at typeblog dot net>
|
|
||||||
|
|
||||||
buildarch=8
|
|
||||||
|
|
||||||
pkgbase=linux-phicomm-n1-armbian-git
|
|
||||||
_srcname=Amlogic_s905-kernel
|
|
||||||
_kernelname=${pkgbase#linux}
|
|
||||||
_desc="AArch64 kernel for Phicomm N1"
|
|
||||||
pkgver=5.0.0.rc7.ge30823ab89
|
|
||||||
pkgrel=1
|
|
||||||
arch=('aarch64')
|
|
||||||
url="https://github.com/150balbes/Amlogic_s905-kernel"
|
|
||||||
license=('GPL2')
|
|
||||||
makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc' 'git' 'uboot-tools' 'vboot-utils' 'dtc')
|
|
||||||
options=('!strip')
|
|
||||||
source=("git+https://github.com/150balbes/Amlogic_s905-kernel.git#branch=master"
|
|
||||||
'linux.preset'
|
|
||||||
'99-linux.hook')
|
|
||||||
md5sums=('SKIP'
|
|
||||||
'f6ee374f560e1b9df6a7de2399027d1b'
|
|
||||||
'd1c40c7367a7081f3b4c03264780f9d4')
|
|
||||||
|
|
||||||
pkgver() {
|
|
||||||
cd "${srcdir}/${_srcname}"
|
|
||||||
printf "%s.g%s" "$(make kernelversion| sed 's|-|.|g')" "$(git rev-parse --short HEAD)"
|
|
||||||
}
|
|
||||||
|
|
||||||
prepare() {
|
|
||||||
cd "${srcdir}/${_srcname}"
|
|
||||||
|
|
||||||
cat config > ./.config
|
|
||||||
|
|
||||||
sed -i "s/.*CONFIG_IKCONFIG[^_].*/CONFIG_IKCONFIG=y/g" .config
|
|
||||||
sed -i "s/.*CONFIG_IKCONFIG_PROC[^_].*/CONFIG_IKCONFIG_PROC=y/g" .config
|
|
||||||
sed -i "s/.*CONFIG_LOCALVERSION[^_].*/CONFIG_LOCALVERSION=\"-ARCH\"/g" .config
|
|
||||||
sed -i "s/.*CONFIG_LOCALVERSION_AUTO[^_].*/# CONFIG_LOCALVERSION_AUTO is not set/g" .config
|
|
||||||
|
|
||||||
# don't run depmod on 'make install'. We'll do this ourselves in packaging
|
|
||||||
sed -i '2iexit 0' scripts/depmod.sh
|
|
||||||
}
|
|
||||||
|
|
||||||
build() {
|
|
||||||
cd "${srcdir}/${_srcname}"
|
|
||||||
|
|
||||||
# Dirty hack to git rid of the + in kernel version
|
|
||||||
mv .git .git_1
|
|
||||||
|
|
||||||
# add pkgrel to extraversion
|
|
||||||
sed -ri "s|^(EXTRAVERSION =)(.*)|\1 \2-${pkgrel}|" Makefile
|
|
||||||
|
|
||||||
# get kernel version
|
|
||||||
make prepare
|
|
||||||
|
|
||||||
# load configuration
|
|
||||||
# Configure the kernel. Replace the line below with one of your choice.
|
|
||||||
#make menuconfig # CLI menu for configuration
|
|
||||||
#make nconfig # new CLI menu for configuration
|
|
||||||
#make xconfig # X-based configuration
|
|
||||||
#make oldconfig # using old config from previous kernel version
|
|
||||||
# ... or manually edit .config
|
|
||||||
|
|
||||||
# Copy back our configuration (use with new kernel version)
|
|
||||||
#cp ./.config ../${pkgbase}.config
|
|
||||||
|
|
||||||
####################
|
|
||||||
# stop here
|
|
||||||
# this is useful to configure the kernel
|
|
||||||
#msg "Stopping build"
|
|
||||||
#return 1
|
|
||||||
####################
|
|
||||||
|
|
||||||
#yes "" | make config
|
|
||||||
|
|
||||||
# build!
|
|
||||||
unset LDFLAGS
|
|
||||||
make ${MAKEFLAGS} Image modules dtbs
|
|
||||||
}
|
|
||||||
|
|
||||||
_package() {
|
|
||||||
pkgdesc="The Linux Kernel and modules - ${_desc}"
|
|
||||||
depends=('coreutils' 'linux-firmware' 'kmod' 'mkinitcpio>=0.7' 'uboot-tools')
|
|
||||||
optdepends=('crda: to set the correct wireless channels of your country')
|
|
||||||
provides=('kernel26' "linux=${pkgver}")
|
|
||||||
conflicts=('linux')
|
|
||||||
backup=("etc/mkinitcpio.d/${pkgbase}.preset")
|
|
||||||
install=${pkgname}.install
|
|
||||||
|
|
||||||
cd "${srcdir}/${_srcname}"
|
|
||||||
|
|
||||||
KARCH=arm64
|
|
||||||
|
|
||||||
# get kernel version
|
|
||||||
_kernver="$(make kernelrelease)"
|
|
||||||
_basekernel=${_kernver%%-*}
|
|
||||||
_basekernel=${_basekernel%.*}
|
|
||||||
|
|
||||||
mkdir -p "${pkgdir}"/{lib/modules,lib/firmware}
|
|
||||||
make INSTALL_MOD_PATH="${pkgdir}" modules_install
|
|
||||||
make INSTALL_DTBS_PATH="${pkgdir}/boot/dtbs" dtbs_install
|
|
||||||
cp arch/$KARCH/boot/Image "${pkgdir}/boot/zImage"
|
|
||||||
cp ${pkgdir}/boot/dtbs/amlogic/meson-gxl-s905d-p230.dtb "${pkgdir}/boot/dtb.img"
|
|
||||||
|
|
||||||
# set correct depmod command for install
|
|
||||||
sed \
|
|
||||||
-e "s/KERNEL_NAME=.*/KERNEL_NAME=${_kernelname}/g" \
|
|
||||||
-e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/g" \
|
|
||||||
-i "${startdir}/${pkgname}.install"
|
|
||||||
|
|
||||||
# install mkinitcpio preset file for kernel
|
|
||||||
install -D -m644 "${srcdir}/linux.preset" "${pkgdir}/etc/mkinitcpio.d/${pkgbase}.preset"
|
|
||||||
sed \
|
|
||||||
-e "1s|'linux.*'|'${pkgbase}'|" \
|
|
||||||
-e "s|ALL_kver=.*|ALL_kver=\"${_kernver}\"|" \
|
|
||||||
-i "${pkgdir}/etc/mkinitcpio.d/${pkgbase}.preset"
|
|
||||||
|
|
||||||
# install pacman hook for initramfs regeneration
|
|
||||||
sed "s|%PKGBASE%|${pkgbase}|g" "${srcdir}/99-linux.hook" |
|
|
||||||
install -D -m644 /dev/stdin "${pkgdir}/usr/share/libalpm/hooks/99-${pkgbase}.hook"
|
|
||||||
|
|
||||||
# remove build and source links
|
|
||||||
rm -f "${pkgdir}"/lib/modules/${_kernver}/{source,build}
|
|
||||||
# remove the firmware
|
|
||||||
rm -rf "${pkgdir}/lib/firmware"
|
|
||||||
# make room for external modules
|
|
||||||
ln -s "../extramodules-${_basekernel}${_kernelname:--ARCH}" "${pkgdir}/lib/modules/${_kernver}/extramodules"
|
|
||||||
# add real version for building modules and running depmod from post_install/upgrade
|
|
||||||
mkdir -p "${pkgdir}/lib/modules/extramodules-${_basekernel}${_kernelname:--ARCH}"
|
|
||||||
echo "${_kernver}" > "${pkgdir}/lib/modules/extramodules-${_basekernel}${_kernelname:--ARCH}/version"
|
|
||||||
|
|
||||||
# Now we call depmod...
|
|
||||||
depmod -b "$pkgdir" -F System.map "$_kernver"
|
|
||||||
|
|
||||||
# move module tree /lib -> /usr/lib
|
|
||||||
mkdir -p "${pkgdir}/usr"
|
|
||||||
mv "$pkgdir/lib" "$pkgdir/usr"
|
|
||||||
|
|
||||||
# add vmlinux
|
|
||||||
install -D -m644 vmlinux "${pkgdir}/usr/lib/modules/${_kernver}/build/vmlinux"
|
|
||||||
}
|
|
||||||
|
|
||||||
_package-headers() {
|
|
||||||
pkgdesc="Header files and scripts for building modules for linux kernel - ${_desc}"
|
|
||||||
provides=("linux-headers=${pkgver}")
|
|
||||||
conflicts=('linux-headers')
|
|
||||||
|
|
||||||
install -dm755 "${pkgdir}/usr/lib/modules/${_kernver}"
|
|
||||||
|
|
||||||
cd "${srcdir}/${_srcname}"
|
|
||||||
install -D -m644 Makefile \
|
|
||||||
"${pkgdir}/usr/lib/modules/${_kernver}/build/Makefile"
|
|
||||||
install -D -m644 kernel/Makefile \
|
|
||||||
"${pkgdir}/usr/lib/modules/${_kernver}/build/kernel/Makefile"
|
|
||||||
install -D -m644 .config \
|
|
||||||
"${pkgdir}/usr/lib/modules/${_kernver}/build/.config"
|
|
||||||
|
|
||||||
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/include"
|
|
||||||
|
|
||||||
for i in acpi asm-generic clocksource config crypto drm generated keys linux \
|
|
||||||
math-emu media net pcmcia scsi soc sound trace uapi video xen; do
|
|
||||||
cp -a include/${i} "${pkgdir}/usr/lib/modules/${_kernver}/build/include/"
|
|
||||||
done
|
|
||||||
|
|
||||||
# copy arch includes for external modules
|
|
||||||
mkdir -p ${pkgdir}/usr/lib/modules/${_kernver}/build/arch/$KARCH
|
|
||||||
cp -a arch/$KARCH/include ${pkgdir}/usr/lib/modules/${_kernver}/build/arch/$KARCH/
|
|
||||||
|
|
||||||
# copy files necessary for later builds, like nvidia and vmware
|
|
||||||
cp Module.symvers "${pkgdir}/usr/lib/modules/${_kernver}/build"
|
|
||||||
cp -a scripts "${pkgdir}/usr/lib/modules/${_kernver}/build"
|
|
||||||
|
|
||||||
# fix permissions on scripts dir
|
|
||||||
chmod og-w -R "${pkgdir}/usr/lib/modules/${_kernver}/build/scripts"
|
|
||||||
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/.tmp_versions"
|
|
||||||
|
|
||||||
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/arch/${KARCH}/kernel"
|
|
||||||
|
|
||||||
cp arch/${KARCH}/Makefile "${pkgdir}/usr/lib/modules/${_kernver}/build/arch/${KARCH}/"
|
|
||||||
|
|
||||||
cp arch/${KARCH}/kernel/asm-offsets.s "${pkgdir}/usr/lib/modules/${_kernver}/build/arch/${KARCH}/kernel/"
|
|
||||||
|
|
||||||
# copy module linker script
|
|
||||||
cp arch/$KARCH/kernel/module.lds "${pkgdir}/usr/lib/modules/${_kernver}/build/arch/${KARCH}/kernel/"
|
|
||||||
|
|
||||||
# add dm headers
|
|
||||||
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/md"
|
|
||||||
cp drivers/md/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/md"
|
|
||||||
|
|
||||||
# add inotify.h
|
|
||||||
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/include/linux"
|
|
||||||
cp include/linux/inotify.h "${pkgdir}/usr/lib/modules/${_kernver}/build/include/linux/"
|
|
||||||
|
|
||||||
# add wireless headers
|
|
||||||
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/net/mac80211/"
|
|
||||||
cp net/mac80211/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/net/mac80211/"
|
|
||||||
|
|
||||||
# add dvb headers for external modules
|
|
||||||
# in reference to:
|
|
||||||
# http://bugs.archlinux.org/task/11194
|
|
||||||
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/include/config/dvb/"
|
|
||||||
cp include/config/dvb/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/include/config/dvb/"
|
|
||||||
|
|
||||||
# add dvb headers for http://mcentral.de/hg/~mrec/em28xx-new
|
|
||||||
# in reference to:
|
|
||||||
# http://bugs.archlinux.org/task/13146
|
|
||||||
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/dvb-frontends/"
|
|
||||||
cp drivers/media/dvb-frontends/lgdt330x.h "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/dvb-frontends/"
|
|
||||||
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/i2c/"
|
|
||||||
cp drivers/media/i2c/msp3400-driver.h "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/i2c/"
|
|
||||||
|
|
||||||
# add dvb headers
|
|
||||||
# in reference to:
|
|
||||||
# http://bugs.archlinux.org/task/20402
|
|
||||||
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/usb/dvb-usb"
|
|
||||||
cp drivers/media/usb/dvb-usb/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/usb/dvb-usb/"
|
|
||||||
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/dvb-frontends"
|
|
||||||
cp drivers/media/dvb-frontends/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/dvb-frontends/"
|
|
||||||
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/tuners"
|
|
||||||
cp drivers/media/tuners/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/drivers/media/tuners/"
|
|
||||||
|
|
||||||
# add xfs and shmem for aufs building
|
|
||||||
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/fs/xfs"
|
|
||||||
mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/mm"
|
|
||||||
|
|
||||||
# copy in Kconfig files
|
|
||||||
for i in $(find . -name "Kconfig*"); do
|
|
||||||
mkdir -p "${pkgdir}"/usr/lib/modules/${_kernver}/build/`echo ${i} | sed 's|/Kconfig.*||'`
|
|
||||||
cp ${i} "${pkgdir}/usr/lib/modules/${_kernver}/build/${i}"
|
|
||||||
done
|
|
||||||
|
|
||||||
chown -R root.root "${pkgdir}/usr/lib/modules/${_kernver}/build"
|
|
||||||
find "${pkgdir}/usr/lib/modules/${_kernver}/build" -type d -exec chmod 755 {} \;
|
|
||||||
|
|
||||||
# strip scripts directory
|
|
||||||
find "${pkgdir}/usr/lib/modules/${_kernver}/build/scripts" -type f -perm -u+w 2>/dev/null | while read binary ; do
|
|
||||||
case "$(file -bi "${binary}")" in
|
|
||||||
*application/x-sharedlib*) # Libraries (.so)
|
|
||||||
/usr/bin/strip ${STRIP_SHARED} "${binary}";;
|
|
||||||
*application/x-archive*) # Libraries (.a)
|
|
||||||
/usr/bin/strip ${STRIP_STATIC} "${binary}";;
|
|
||||||
*application/x-executable*) # Binaries
|
|
||||||
/usr/bin/strip ${STRIP_BINARIES} "${binary}";;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
# remove unneeded architectures
|
|
||||||
rm -rf "${pkgdir}"/usr/lib/modules/${_kernver}/build/arch/{alpha,arc,arm,arm26,avr32,blackfin,c6x,cris,frv,h8300,hexagon,ia64,m32r,m68k,m68knommu,metag,mips,microblaze,mn10300,openrisc,parisc,powerpc,ppc,s390,score,sh,sh64,sparc,sparc64,tile,unicore32,um,v850,x86,xtensa}
|
|
||||||
}
|
|
||||||
|
|
||||||
pkgname=("${pkgbase}" "${pkgbase}-headers")
|
|
||||||
for _p in ${pkgname[@]}; do
|
|
||||||
eval "package_${_p}() {
|
|
||||||
_package${_p#${pkgbase}}
|
|
||||||
}"
|
|
||||||
done
|
|
|
@ -1,4 +0,0 @@
|
||||||
type:
|
|
||||||
auto
|
|
||||||
timeout:
|
|
||||||
720
|
|
|
@ -1,27 +0,0 @@
|
||||||
# arg 1: the new package version
|
|
||||||
# arg 2: the old package version
|
|
||||||
|
|
||||||
KERNEL_NAME=-phicomm-n1-armbian-git
|
|
||||||
KERNEL_VERSION=5.0.0-rc7-1-ARCH
|
|
||||||
|
|
||||||
post_install () {
|
|
||||||
# updating module dependencies
|
|
||||||
echo ">>> Updating module dependencies. Please wait ..."
|
|
||||||
depmod ${KERNEL_VERSION}
|
|
||||||
}
|
|
||||||
|
|
||||||
post_upgrade() {
|
|
||||||
if findmnt --fstab -uno SOURCE /boot &>/dev/null && ! mountpoint -q /boot; then
|
|
||||||
echo "WARNING: /boot appears to be a separate partition but is not mounted."
|
|
||||||
fi
|
|
||||||
|
|
||||||
# updating module dependencies
|
|
||||||
echo ">>> Updating module dependencies. Please wait ..."
|
|
||||||
depmod ${KERNEL_VERSION}
|
|
||||||
}
|
|
||||||
|
|
||||||
post_remove() {
|
|
||||||
# also remove the compat symlinks
|
|
||||||
rm -f boot/initramfs-linux.img
|
|
||||||
rm -f boot/initramfs-linux-fallback.img
|
|
||||||
}
|
|
|
@ -1,14 +0,0 @@
|
||||||
# mkinitcpio preset file for the 'linux-aarch64' package
|
|
||||||
|
|
||||||
ALL_config="/etc/mkinitcpio.conf"
|
|
||||||
ALL_kver="4.18.5-1-ARCH"
|
|
||||||
|
|
||||||
PRESETS=('default' 'fallback')
|
|
||||||
|
|
||||||
#default_config="/etc/mkinitcpio.conf"
|
|
||||||
default_image="/boot/initramfs-linux-phicomm-n1.img"
|
|
||||||
#default_options=""
|
|
||||||
|
|
||||||
#fallback_config="/etc/mkinitcpio.conf"
|
|
||||||
fallback_image="/boot/initramfs-linux-phicomm-n1-fallback.img"
|
|
||||||
fallback_options="-S autodetect"
|
|
Loading…
Reference in a new issue