mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
core/linux-espressobin to 4.4.46-1
This commit is contained in:
parent
d83cab911f
commit
673e5bd5d5
2 changed files with 7 additions and 4 deletions
|
@ -4,11 +4,11 @@
|
||||||
buildarch=8
|
buildarch=8
|
||||||
|
|
||||||
pkgbase=linux-espressobin
|
pkgbase=linux-espressobin
|
||||||
_commit=afaa2b4bed0322af220b170e554b0fa02cd0fabf
|
_commit=758b298fa6ef0b229049ad61386cdcdb675be51e
|
||||||
_srcname=linux-espressobin-${_commit}
|
_srcname=linux-espressobin-${_commit}
|
||||||
_kernelname=${pkgbase#linux}
|
_kernelname=${pkgbase#linux}
|
||||||
_desc="Globalscale ESPRESSOBin"
|
_desc="Globalscale ESPRESSOBin"
|
||||||
pkgver=4.4.45
|
pkgver=4.4.46
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
arch=('aarch64')
|
arch=('aarch64')
|
||||||
url="http://www.kernel.org/"
|
url="http://www.kernel.org/"
|
||||||
|
@ -18,7 +18,7 @@ options=('!strip')
|
||||||
source=("https://github.com/kmihelich/linux-espressobin/archive/${_commit}.tar.gz"
|
source=("https://github.com/kmihelich/linux-espressobin/archive/${_commit}.tar.gz"
|
||||||
'config'
|
'config'
|
||||||
'linux.preset')
|
'linux.preset')
|
||||||
md5sums=('51a4350921f8c1e08d889fee3ac18cc2'
|
md5sums=('fe91049575b6fa9d97029d41af11e528'
|
||||||
'dc812510f305ff6d7416dd1b468d06d1'
|
'dc812510f305ff6d7416dd1b468d06d1'
|
||||||
'c275a5855f013054b48083e9006949a4')
|
'c275a5855f013054b48083e9006949a4')
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@ post_install () {
|
||||||
depmod ${KERNEL_VERSION}
|
depmod ${KERNEL_VERSION}
|
||||||
echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
|
echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
|
||||||
mkinitcpio -p linux${KERNEL_NAME}
|
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() {
|
post_upgrade() {
|
||||||
|
@ -23,7 +26,7 @@ post_upgrade() {
|
||||||
echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
|
echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
|
||||||
mkinitcpio -p linux${KERNEL_NAME}
|
mkinitcpio -p linux${KERNEL_NAME}
|
||||||
if [[ -e "/boot/initramfs-linux.img" ]]; then
|
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
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue