1 Star 0 Fork 37

jchzhou / lorax

forked from src-openEuler / lorax 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0001-support-loongarch-for-lorax.patch 1.89 KB
一键复制 编辑 原始数据 按行查看 历史
zhangwenlong01 提交于 2022-11-01 20:57 . add loongarch support for lorax
From adb3a4a4dcdbcd5965efa662bd9b3c9377b589f4 Mon Sep 17 00:00:00 2001
From: Wenlong Zhang <zhangwenlong@loongson.cn>
Date: Sun, 16 Oct 2022 23:10:03 +0000
Subject: [PATCH] support loongarch for lorax
---
src/pylorax/__init__.py | 7 +++++--
src/pylorax/treebuilder.py | 1 +
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/src/pylorax/__init__.py b/src/pylorax/__init__.py
index 8700ff5..e757cad 100644
--- a/src/pylorax/__init__.py
+++ b/src/pylorax/__init__.py
@@ -64,7 +64,7 @@ DRACUT_DEFAULT = ["--xz", "--install", "/.buildstamp", "--no-early-microcode", "
DEFAULT_PLATFORM_ID = "platform:f32"
class ArchData(DataHolder):
- lib64_arches = ("x86_64", "ppc64le", "s390x", "ia64", "aarch64")
+ lib64_arches = ("x86_64", "ppc64le", "s390x", "ia64", "aarch64", "loongarch64")
bcj_arch = dict(i386="x86", x86_64="x86",
ppc64le="powerpc",
arm="arm", armhfp="arm")
@@ -351,7 +351,10 @@ class Lorax(BaseLoraxClass):
for arg in user_dracut_args:
dracut_args += arg.split(" ", 1)
- anaconda_args = dracut_args + ["--add", "anaconda pollcdrom qemu qemu-net"]
+ if self.arch.basearch == "loongarch64":
+ anaconda_args = dracut_args + ["--add", "anaconda pollcdrom qemu qemu-net"]
+ else:
+ anaconda_args = dracut_args + ["--add", "anaconda pollcdrom qemu qemu-net prefixdevname-tools"]
logger.info("dracut args = %s", dracut_args)
logger.info("anaconda args = %s", anaconda_args)
diff --git a/src/pylorax/treebuilder.py b/src/pylorax/treebuilder.py
index 2e8d152..039109e 100644
--- a/src/pylorax/treebuilder.py
+++ b/src/pylorax/treebuilder.py
@@ -42,6 +42,7 @@ templatemap = {
'aarch64': 'aarch64.tmpl',
'arm': 'arm.tmpl',
'armhfp': 'arm.tmpl',
+ 'loongarch64': 'loongarch64.tmpl',
}
def generate_module_info(moddir, outfile=None):
--
2.33.0
1
https://gitee.com/jchzhou/lorax.git
git@gitee.com:jchzhou/lorax.git
jchzhou
lorax
lorax
master

搜索帮助