Skip to content

Commit

Permalink
Collect correct kernel image for aarch64 systems
Browse files Browse the repository at this point in the history
  • Loading branch information
aaannz committed Jul 21, 2023
1 parent fd01923 commit b3574cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
target_dir := ${DESTDIR}/usr/share/iguana
build_dir := out

kernel_filepath := $(shell find /boot -name 'vmlinuz*' | sort -r -V | head -1)
kernel_filepath := $(shell find /boot \( -name 'vmlinuz-*' -o -name 'Image-*' \) | sort -r -V | head -1)

file_split := $(subst -, ,${kernel_filepath})
kernel_prefix := $(word 1, ${file_split})
Expand Down
6 changes: 6 additions & 0 deletions iguana.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Jul 21 17:07:03 UTC 2023 - Ondrej Holecek <[email protected]>

- Fix build for aarch65 by collecting correct kernel file
(gh#openSUSE/iguana#40)

-------------------------------------------------------------------
Mon Aug 8 14:35:03 UTC 2022 - Ondrej Holecek <[email protected]>

Expand Down

0 comments on commit b3574cd

Please sign in to comment.