core/linux-espressobin to 4.4.46-1

This commit is contained in:
Kevin Mihelich 2017-02-02 03:55:31 +00:00
parent d83cab911f
commit 673e5bd5d5
2 changed files with 7 additions and 4 deletions

View file

@ -4,11 +4,11 @@
buildarch=8
pkgbase=linux-espressobin
_commit=afaa2b4bed0322af220b170e554b0fa02cd0fabf
_commit=758b298fa6ef0b229049ad61386cdcdb675be51e
_srcname=linux-espressobin-${_commit}
_kernelname=${pkgbase#linux}
_desc="Globalscale ESPRESSOBin"
pkgver=4.4.45
pkgver=4.4.46
pkgrel=1
arch=('aarch64')
url="http://www.kernel.org/"
@ -18,7 +18,7 @@ options=('!strip')
source=("https://github.com/kmihelich/linux-espressobin/archive/${_commit}.tar.gz"
'config'
'linux.preset')
md5sums=('51a4350921f8c1e08d889fee3ac18cc2'
md5sums=('fe91049575b6fa9d97029d41af11e528'
'dc812510f305ff6d7416dd1b468d06d1'
'c275a5855f013054b48083e9006949a4')

View file

@ -10,6 +10,9 @@ post_install () {
depmod ${KERNEL_VERSION}
echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
mkinitcpio -p linux${KERNEL_NAME}
if [[ -e "/boot/initramfs-linux.img" ]]; then
mkimage -n "Ramdisk Image" -A arm64 -O linux -T ramdisk -C none -d /boot/initramfs-linux.img /boot/initramfs-linux.uimg > /dev/null
fi
}
post_upgrade() {
@ -23,7 +26,7 @@ post_upgrade() {
echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
mkinitcpio -p linux${KERNEL_NAME}
if [[ -e "/boot/initramfs-linux.img" ]]; then
mkimage -n "Ramdisk Image" -A arm64 -O linux -T ramdisk -C none -d /boot/initramfs-linux.img -q /boot/initramfs-linux.uimg > /dev/null
mkimage -n "Ramdisk Image" -A arm64 -O linux -T ramdisk -C none -d /boot/initramfs-linux.img /boot/initramfs-linux.uimg > /dev/null
fi
}