1 Star 0 Fork 38

jchzhou / lorax

forked from src-openEuler / lorax 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0001-disable-isolabel-character-change.patch 1.66 KB
一键复制 编辑 原始数据 按行查看 历史
compile_success 提交于 2020-06-28 11:00 . update
From aae1b6a8399062f6aacdad5df474474ef2185f40 Mon Sep 17 00:00:00 2001
From: sunguoshuai <sunguoshuai@huawei.com>
Date: Fri, 11 Jan 2019 03:17:16 -0500
Subject: [PATCH] disable isolabel character change
---
share/templates.d/99-generic/live/x86.tmpl | 6 +++---
share/templates.d/99-generic/x86.tmpl | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/share/templates.d/99-generic/live/x86.tmpl b/share/templates.d/99-generic/live/x86.tmpl
index 9290dbb..ba0ffdc 100644
--- a/share/templates.d/99-generic/live/x86.tmpl
+++ b/share/templates.d/99-generic/live/x86.tmpl
@@ -9,10 +9,10 @@ LIVEDIR="LiveOS"
LORAXDIR="usr/share/lorax/"
## Don't allow spaces or escape characters in the iso label
-def valid_label(ch):
- return ch.isalnum() or ch == '_'
+#def valid_label(ch):
+# return ch.isalnum() or ch == '_'
-isolabel = ''.join(ch if valid_label(ch) else '-' for ch in isolabel)
+#isolabel = ''.join(ch if valid_label(ch) else '-' for ch in isolabel)
import os
from os.path import basename
diff --git a/share/templates.d/99-generic/x86.tmpl b/share/templates.d/99-generic/x86.tmpl
index 1b0a940..aff0255 100644
--- a/share/templates.d/99-generic/x86.tmpl
+++ b/share/templates.d/99-generic/x86.tmpl
@@ -9,10 +9,10 @@ KERNELDIR=PXEBOOTDIR
LORAXDIR="usr/share/lorax/"
## Don't allow spaces or escape characters in the iso label
-def valid_label(ch):
- return ch.isalnum() or ch == '_'
+#def valid_label(ch):
+# return ch.isalnum() or ch == '_'
-isolabel = ''.join(ch if valid_label(ch) else '-' for ch in isolabel)
+#isolabel = ''.join(ch if valid_label(ch) else '-' for ch in isolabel)
import os
from os.path import basename
--
1.8.3.1
1
https://gitee.com/jchzhou/lorax.git
git@gitee.com:jchzhou/lorax.git
jchzhou
lorax
lorax
master

搜索帮助