Skip to content
Draft
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
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ qemu_build_deb:

sudo rm $(OUTPUT)/etc/resolv.conf
echo nameserver 1.1.1.1 | sudo tee -a $(OUTPUT)/etc/resolv.conf
LC_ALL=en_US.UTF-8 sudo chroot $(OUTPUT) /usr/src/PixelPilot_rk/tools/container_build.sh --wipe-boot --pkg-version $(DEB_VERSION) --debian-codename $(DEBIAN_CODENAME) --build-type deb
LC_ALL=C LC_CTYPE=C sudo chroot $(OUTPUT) /usr/src/PixelPilot_rk/tools/container_build.sh --wipe-boot \
--pkg-version $(shell git log --date=format:%Y%m%d --pretty='$(DEB_VERSION)~git%cd.%h' | head -n 1) --debian-codename $(DEBIAN_CODENAME) --build-type deb
make umount

.PHONY: qemu_test
Expand Down
2 changes: 1 addition & 1 deletion tools/container_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ case $BUILD_TYPE in
apt-get install -y ./$BUILD_DEPS_FILE
rm pixelpilot-rk-build-deps*

dpkg-buildpackage -uc -us -b
dpkg-buildpackage -uc -us

#debuild -S -I
;;
Expand Down
Loading