diff options
author | Kim <UnicronNL@users.noreply.github.com> | 2017-03-16 13:09:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-16 13:09:30 +0100 |
commit | fb576450cc8d34ab447fa7c613daf10ed3140ab5 (patch) | |
tree | 312699ab8db81ab7057919d6225b238d416ad8f6 /scripts | |
parent | 693e7a6bd4e1583b602b7e5da06675b12367fdd2 (diff) | |
download | vyatta-cfg-system-fb576450cc8d34ab447fa7c613daf10ed3140ab5.tar.gz vyatta-cfg-system-fb576450cc8d34ab447fa7c613daf10ed3140ab5.zip |
update grub raid boot
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-grub-setup | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/vyatta-grub-setup b/scripts/vyatta-grub-setup index 63e3d987..879912ff 100755 --- a/scripts/vyatta-grub-setup +++ b/scripts/vyatta-grub-setup @@ -176,8 +176,9 @@ fi if [ ${ROOT_PARTITION:0:2} = "md" ]; then echo "" - echo -e "insmod raid" - echo -e "root ($ROOT_PARTITION)" + echo -e "insmod mdraid09" + echo -e "insmod mdraid1x" + echo -e "root (md/$ROOT_PARTITION)" fi echo "" |