Skip to content

Commit

Permalink
fix: Makefile: change traget build to build-dtbo
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeChenL committed Mar 18, 2024
1 parent e0feee1 commit bd9483f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ jobs:
run: |
case "${{ matrix.version }}" in
linux-stable)
make build -j$(nproc)
make build-dtbo -j$(nproc)
;;
linux-rockchip)
make build -j$(nproc) KERNELRELEASE=5.10.110-11-rockchip CONFIG_ARCH_MESON=n CONFIG_CPU_RK3399=rockchip CONFIG_CPU_RK3568=rockchip CONFIG_CPU_RK3588=rockchip
make build-dtbo -j$(nproc) KERNELRELEASE=5.10.110-11-rockchip CONFIG_ARCH_MESON=n CONFIG_CPU_RK3399=rockchip CONFIG_CPU_RK3568=rockchip CONFIG_CPU_RK3588=rockchip
;;
linux-rk356x)
make build -j$(nproc) KERNELRELEASE=5.10.160-7-rk356x CONFIG_ARCH_MESON=n CONFIG_CPU_RK3399=rockchip CONFIG_CPU_RK3568=rockchip CONFIG_CPU_RK3588=rockchip
make build-dtbo -j$(nproc) KERNELRELEASE=5.10.160-7-rk356x CONFIG_ARCH_MESON=n CONFIG_CPU_RK3399=rockchip CONFIG_CPU_RK3568=rockchip CONFIG_CPU_RK3588=rockchip
;;
esac
- name: Upload artifacts
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ CROSS_COMPILE ?= aarch64-linux-gnu-
# Build
#
.PHONY: build
build: $(DTBO)
build: build-doc

.PHONY: build-dtbo
build-dtbo: $(DTBO)

%.dtbo: %.dts
cpp -nostdinc -undef -x assembler-with-cpp -E -I "$(KSRC)/include" "$<" "$@.tmp"
Expand Down
3 changes: 0 additions & 3 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,3 @@ override_dh_builddeb:

override_dh_install:
DEB_VERSION=$(DEB_VERSION) dh_install

override_dh_auto_build:
echo "This repository is packaged without compilation"

0 comments on commit bd9483f

Please sign in to comment.