diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-10-27 08:52:48 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-10-27 08:52:48 +0000 |
commit | 518a2ea8560b44773eeac0683709d323480162d0 (patch) | |
tree | 560a5fc926334759ae7ce2f449b803f8693ea578 | |
parent | 7a1f6a7a3759b31d3af2e1652a5bccae34993ea4 (diff) | |
download | alpine-conf-518a2ea8560b44773eeac0683709d323480162d0.zip |
setup-bootable: do not remove :vfat from syslinux.cfg
When we replace alpine_dev we should not remove the :<filesystem>
-rw-r--r-- | setup-bootable.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-bootable.in b/setup-bootable.in index 926d7fd..e7897bd 100644 --- a/setup-bootable.in +++ b/setup-bootable.in @@ -216,7 +216,7 @@ for i in $tomove; do done if [ -z "$keep_alpine_dev" ] && [ -n "$UUID" ]; then - sed -i -e "s/alpine_dev=[^ \t]\+/alpine_dev=UUID=$UUID/" \ + sed -i -e "s/alpine_dev=[^ \t:]\+/alpine_dev=UUID=$UUID/" \ "$destdir"/syslinux.cfg fi |