Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/bmax121/KernelPatch into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
bmax committed Mar 26, 2024
2 parents a7df5f6 + a3f8f4f commit f5e6a01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ jobs:
cd ../make-shamiko-happy
make
mv syscallhook.kpm demo-make-shamiko-happy.kpm
- name: Upload elf
uses: actions/upload-artifact@v3
Expand All @@ -86,7 +87,7 @@ jobs:
kpms/demo-hello/demo-hello.kpm
kpms/demo-inlinehook/demo-inlinehook.kpm
kpms/demo-syscallhook/demo-syscallhook.kpm
kpms/make-shamiko-happy/shamiko.kpm
kpms/make-shamiko-happy/demo-make-shamiko-happy.kpm
generateReleaseNotes: true
omitBodyDuringUpdate: true
allowUpdates: true
Expand Down
4 changes: 2 additions & 2 deletions kpms/make-shamiko-happy/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ INCLUDE_FLAGS := $(foreach dir,$(INCLUDE_DIRS),-I$(KP_DIR)/kernel/$(dir))

objs := main.o

all: shamiko.kpm
all: make-shamiko-happy.kpm

shamiko.kpm: ${objs}
make-shamiko-happy.kpm: ${objs}
${CC} -r -o $@ $^

%.o: %.c
Expand Down

0 comments on commit f5e6a01

Please sign in to comment.