Skip to content
Merged
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
2 changes: 1 addition & 1 deletion arch/mips/configs/deepin_loongson3_desktop_defconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_BUILD_SALT="-loongson3-desktop-hwe"
CONFIG_KERNEL_ZSTD=y
CONFIG_KERNEL_LZMA=y
CONFIG_SYSVIPC=y
CONFIG_POSIX_MQUEUE=y
CONFIG_AUDIT=y
Expand Down
10 changes: 8 additions & 2 deletions scripts/package/builddeb
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,18 @@ install_linux_image () {
case "${SRCARCH}" in
um)
installed_image_path="usr/bin/linux-${KERNELRELEASE}";;
parisc|mips|powerpc)
parisc|powerpc)
installed_image_path="boot/vmlinux-${KERNELRELEASE}";;
*)
installed_image_path="boot/vmlinuz-${KERNELRELEASE}";;
esac
cp "$(${MAKE} -s -f ${srctree}/Makefile image_name)" "${pdir}/${installed_image_path}"

case "${SRCARCH}" in
mips)
cp vmlinuz "${pdir}/${installed_image_path}";;
*)
cp "$(${MAKE} -s -f ${srctree}/Makefile image_name)" "${pdir}/${installed_image_path}";;
esac

# UEFI Secure Boot CA paths.
deepin_uefi_ca="${srctree}/scripts/package/UEFI-CA-CERT/DEEPIN-UEFI-RSA.pem"
Expand Down
Loading