mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
adding kernel install to mmcblk0 and moving some stuff from y -> m to figure out if anything new is causing lockup on reboot
This commit is contained in:
parent
dd284420c8
commit
623fd077cb
2 changed files with 5 additions and 3 deletions
|
@ -12,7 +12,7 @@ pkgname=('linux-odroidx')
|
||||||
_kernelname=${pkgname#linux}
|
_kernelname=${pkgname#linux}
|
||||||
_basekernel=3.6
|
_basekernel=3.6
|
||||||
pkgver=${_basekernel}.0
|
pkgver=${_basekernel}.0
|
||||||
pkgrel=3
|
pkgrel=4
|
||||||
arch=('arm')
|
arch=('arm')
|
||||||
url="http://www.kernel.org/"
|
url="http://www.kernel.org/"
|
||||||
license=('GPL2')
|
license=('GPL2')
|
||||||
|
|
|
@ -9,8 +9,9 @@ post_install () {
|
||||||
echo ">>> Updating module dependencies. Please wait ..."
|
echo ">>> Updating module dependencies. Please wait ..."
|
||||||
depmod ${KERNEL_VERSION}
|
depmod ${KERNEL_VERSION}
|
||||||
|
|
||||||
echo "NOTE: You will probably need to copy /boot/uImage to the first partition"
|
dd iflag=dsync oflag=dsync if= /boot/zImage of=/dev/mmcblk0 seek=1057
|
||||||
echo " of your SD card."
|
# echo "NOTE: You will probably need to copy /boot/uImage to the first partition"
|
||||||
|
# echo " of your SD card."
|
||||||
}
|
}
|
||||||
|
|
||||||
post_upgrade() {
|
post_upgrade() {
|
||||||
|
@ -25,6 +26,7 @@ post_upgrade() {
|
||||||
# updating module dependencies
|
# updating module dependencies
|
||||||
echo ">>> Updating module dependencies. Please wait ..."
|
echo ">>> Updating module dependencies. Please wait ..."
|
||||||
depmod ${KERNEL_VERSION}
|
depmod ${KERNEL_VERSION}
|
||||||
|
dd iflag=dsync oflag=dsync if= /boot/zImage of=/dev/mmcblk0 seek=1057
|
||||||
|
|
||||||
echo "NOTE: You will probably need to copy /boot/uImage to the first partition"
|
echo "NOTE: You will probably need to copy /boot/uImage to the first partition"
|
||||||
echo " of your SD card."
|
echo " of your SD card."
|
||||||
|
|
Loading…
Reference in a new issue