linux: fix installTargets for AArch64
[dezgeg: note that we are currently using just 'Image' instead of 'Image.gz' as U-Boot doesn't support the latter yet. We might switch once it does since the kernel images are quite big]
This commit is contained in:
parent
15b6374918
commit
fcc51d3256
@ -120,7 +120,7 @@ let
|
|||||||
|
|
||||||
# Some image types need special install targets (e.g. uImage is installed with make uinstall)
|
# Some image types need special install targets (e.g. uImage is installed with make uinstall)
|
||||||
installTargets = [ (if platform.kernelTarget == "uImage" then "uinstall" else
|
installTargets = [ (if platform.kernelTarget == "uImage" then "uinstall" else
|
||||||
if platform.kernelTarget == "zImage" then "zinstall" else
|
if platform.kernelTarget == "zImage" || platform.kernelTarget == "Image.gz" then "zinstall" else
|
||||||
"install") ];
|
"install") ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user