Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,13 @@ $(addprefix $(DEST)/, $(MAIN_TARGET)): $(DEST)/% :
cp $(NON_UP_DIR)/patches/*.patch patch/
fi

# Include any platform specific patches
if [ -f "patch/$(CONFIGURED_PLATFORM)/platform-changes.patch" ]; then
cat patch/$(CONFIGURED_PLATFORM)/platform-changes.patch
git stash -- patch/
git apply patch/$(CONFIGURED_PLATFORM)/platform-changes.patch
fi

# Obtaining the Debian kernel source
rm -rf $(BUILD_DIR)
wget -O $(DSC_FILE) $(DSC_FILE_URL)
Expand Down
Loading