43 Star 206 Fork 290

GVPOpenCloudOS/OpenCloudOS-Kernel

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
xz_wrap.sh 516 Bytes
一键复制 编辑 原始数据 按行查看 历史
Masahiro Yamada 提交于 2023-11-24 22:09 +08:00 . scripts: clean up IA-64 code
#!/bin/sh
#
# This is a wrapper for xz to compress the kernel image using appropriate
# compression options depending on the architecture.
#
# Author: Lasse Collin <lasse.collin@tukaani.org>
#
# This file has been put into the public domain.
# You can do whatever you want with this file.
#
BCJ=
LZMA2OPTS=
case $SRCARCH in
x86) BCJ=--x86 ;;
powerpc) BCJ=--powerpc ;;
arm) BCJ=--arm ;;
sparc) BCJ=--sparc ;;
esac
exec $XZ --check=crc32 $BCJ --lzma2=$LZMA2OPTS,dict=32MiB
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/OpenCloudOS/OpenCloudOS-Kernel.git
git@gitee.com:OpenCloudOS/OpenCloudOS-Kernel.git
OpenCloudOS
OpenCloudOS-Kernel
OpenCloudOS-Kernel
linux-6.6/devel

搜索帮助