mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
fixed path for manual kernel update
There was a superfluous adding of the string "/dev/" to the output path for the manual instructions to dd the new kernel in place. Old erroneous behavious for reference: ``` 6/8) Aktualisiere linux-peach [############################################################] 100% >>> Updating module dependencies. Please wait ... A new kernel version needs to be flashed onto /dev/mmcblk0p1. Do you want to do this now? [y|N] N You can do this later by running: # dd if=/boot/vmlinux.kpart of=/dev//dev/mmcblk0p1 ```
This commit is contained in:
parent
2ca20fcc41
commit
70dc420d4f
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ flash_kernel() {
|
|||
sync
|
||||
else
|
||||
echo "You can do this later by running:"
|
||||
echo "# dd if=/boot/vmlinux.kpart of=/dev/${device}"
|
||||
echo "# dd if=/boot/vmlinux.kpart of=${device}"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue