diff options
author | Matthias Hentges <oe@hentges.net> | 2007-03-24 17:34:42 +0000 |
---|---|---|
committer | Matthias Hentges <oe@hentges.net> | 2007-03-24 17:34:42 +0000 |
commit | 4c83c9f064e16f78e6ab01e874a0dcea541856a1 (patch) | |
tree | 013c5db5679aef4dbc800a75bb56269ef5c1847a /packages/altboot/files/altboot-menu | |
parent | 91af788b8040fa8aae027ad7da2790d19db3fda3 (diff) |
altboot: Replace rev= with proto=svn.... and update altboot_0.0.0.bb to latest svn
Diffstat (limited to 'packages/altboot/files/altboot-menu')
-rw-r--r-- | packages/altboot/files/altboot-menu/10-noGui | 2 | ||||
-rw-r--r-- | packages/altboot/files/altboot-menu/Advanced/70-install-tgz | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/packages/altboot/files/altboot-menu/10-noGui b/packages/altboot/files/altboot-menu/10-noGui index 57141d498d..cf3c10c381 100644 --- a/packages/altboot/files/altboot-menu/10-noGui +++ b/packages/altboot/files/altboot-menu/10-noGui @@ -1,6 +1,8 @@ # !/bin/sh M_TITLE="Don't launch GUI" +test "$DISABLE_NOGUI_BOOT" = yes && exit 0 + run_module() { clear ; exec $REAL_INIT "$NO_GUI_RL" diff --git a/packages/altboot/files/altboot-menu/Advanced/70-install-tgz b/packages/altboot/files/altboot-menu/Advanced/70-install-tgz index aca0d047c6..b6e5d94d5d 100644 --- a/packages/altboot/files/altboot-menu/Advanced/70-install-tgz +++ b/packages/altboot/files/altboot-menu/Advanced/70-install-tgz @@ -2,6 +2,8 @@ M_TITLE="Install RootFS from tar.gz" M_FLAGS="noRemember" +test "$DISABLE_INSTTGZ_BOOT" = yes && exit 0 + run_module(){ test -e /etc/altboot.func && . /etc/altboot.func || die "ERROR: /etc/altboot.func not found. Check your installation!" |