bug 2017:修改安装程序,使6.0.42.41系统支持在fakeraid上安装

修改:      main/begin-install
	修改:      new_partition/interface_partition.py
	修改:      new_partition/parted_devices.py
	修改:      new_partition/partition_data.py
	修改:      operation/install_bootloader.sh
	修改:      text/get_instmode.sh

Signed-off-by: PengZhihui <zhihuipeng@linx-info.com>
This commit is contained in:
PengZhihui
2014-09-17 11:18:23 +08:00
parent 40be9d2cad
commit 911c08a72a
6 changed files with 51 additions and 13 deletions

View File

@@ -11,7 +11,7 @@ select_inst_mode(){
[ -z $instmode ] && instmode=`cat /proc/cmdline | sed 's/.*instmode=\([^ ]*\).*/\1/'`
if [ "$instmode" = "HdInstall" -o "$instmode" = "NetInstall" -o "$instmode" = "NoRaid" ];then
if [ "$instmode" = "HdInstall" -o "$instmode" = "NetInstall" -o "$instmode" = "NoRaid" -o "$instmode" = "Dmraid" ];then
select_inst_mode
fi