Debian: installer: support boot option inst.ks for kickstart

Test Plan:
PASS: build-image
PASS: boot
PASS: boot with "inst.ks"

Story: 2010643
Task: 47832

Signed-off-by: Zhang Xiao <xiao.zhang@windriver.com>
Change-Id: I7f445a7cd57573866f47a9e6c3bee923113eba29
This commit is contained in:
Zhang Xiao 2023-04-03 22:57:31 -07:00 committed by ZhangXiao
parent fbe2673c54
commit d37d09f139
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,32 @@
From 6a10ae5559d4cb5b9ee80e55d873cd83c41cd0a9 Mon Sep 17 00:00:00 2001
From: Zhang Xiao <xiao.zhang@windriver.com>
Date: Mon, 3 Apr 2023 22:32:34 -0700
Subject: [PATCH] init-ostree-install.sh: support boot option inst.ks for
kickstart
https://github.com/Wind-River/meta-lat/commit/1655ad90
https://github.com/Wind-River/meta-lat/commit/e0175017
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Zhang Xiao <xiao.zhang@windriver.com>
---
init-ostree-install.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/init-ostree-install.sh b/init-ostree-install.sh
index 4046fbb..e4393fb 100644
--- a/init-ostree-install.sh
+++ b/init-ostree-install.sh
@@ -621,6 +621,9 @@ read_args() {
ks=*)
KS="$optarg"
;;
+ inst.ks=*)
+ KS="$optarg"
+ ;;
bl=*)
BL=$optarg ;;
instnet=*)
--
2.34.1

View File

@ -11,3 +11,4 @@
0011-Add-H-W-Settle-time-to-installer-init.patch
0012-installer-inc-number-of-digits-in-scripts-names.patch
0013-Rsync-the-ostree-repo-before-pulling.patch
0014-init-ostree-install.sh-support-boot-option-inst.ks-f.patch