diff options
author | Cristian Iorga <cristian.iorga@intel.com> | 2014-06-20 18:42:18 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-23 17:54:30 +0100 |
commit | a8f453d5b2169d4144133b5c469d904f4e4f3ddc (patch) | |
tree | f8ef2bcbe92da2fd658711681cfbceeb03504905 | |
parent | 566cba1f1220a6ccd52fed59c896ba849768525a (diff) | |
download | poky-a8f453d5b2169d4144133b5c469d904f4e4f3ddc.tar.gz |
init-install-testfs: fix typo
_EOF marker was not used properly
(space left before end of line).
(From OE-Core rev: 913fd224499c57c7596bd49e1eec5f570c3edf68)
Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/initrdscripts/files/init-install-testfs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/initrdscripts/files/init-install-testfs.sh b/meta/recipes-core/initrdscripts/files/init-install-testfs.sh index d2cc6ac534..cf290a5bef 100644 --- a/meta/recipes-core/initrdscripts/files/init-install-testfs.sh +++ b/meta/recipes-core/initrdscripts/files/init-install-testfs.sh | |||
@@ -183,7 +183,7 @@ menuentry "Linux" { | |||
183 | set root=(hd0,1) | 183 | set root=(hd0,1) |
184 | linux /vmlinuz root=$rootfs $rootwait rw $5 $3 $4 quiet | 184 | linux /vmlinuz root=$rootfs $rootwait rw $5 $3 $4 quiet |
185 | } | 185 | } |
186 | _EOF | 186 | _EOF |
187 | # Add the test label | 187 | # Add the test label |
188 | echo -ne "\nmenuentry 'test' {\nlinux /test-kernel root=$testfs rw $rootwait quiet\n}\n" >> $GRUBCFG | 188 | echo -ne "\nmenuentry 'test' {\nlinux /test-kernel root=$testfs rw $rootwait quiet\n}\n" >> $GRUBCFG |
189 | 189 | ||