diff options
| author | Kristoffer Ericson <kristoffer_e1@hotmail.com> | 2006-11-20 23:40:40 +0000 |
|---|---|---|
| committer | Kristoffer Ericson <kristoffer_e1@hotmail.com> | 2006-11-20 23:40:40 +0000 |
| commit | c3dcf083bbf111198f9aea74ef0230ecb1cd24d4 (patch) | |
| tree | b72fdbb70076a7ea86981cce8cd542a7ee496071 /packages/altboot/files/altboot-menu | |
| parent | 5405564d7c73e4dc72f77d7a495215e8fde8c3dc (diff) | |
| parent | 98c0b5b928603160485232fd9e1bec669653472d (diff) | |
merge of 57c7ff1bca3e3d0423fe776b6cdf466b16f29e50
and d2393507d64bd7596d8c8cf859ad39de4bc4ed65
Diffstat (limited to 'packages/altboot/files/altboot-menu')
4 files changed, 7 insertions, 0 deletions
diff --git a/packages/altboot/files/altboot-menu/15-bootSD b/packages/altboot/files/altboot-menu/15-bootSD index 0476a5ce0f..3cf49deea5 100644 --- a/packages/altboot/files/altboot-menu/15-bootSD +++ b/packages/altboot/files/altboot-menu/15-bootSD @@ -7,6 +7,8 @@ M_TITLE="Boot SD card" +test "$DISABLE_SD_BOOT" = yes && exit 0 + # This function is activated by init.altboot by calling this script with the "run" option run_module() { diff --git a/packages/altboot/files/altboot-menu/20-bootCF b/packages/altboot/files/altboot-menu/20-bootCF index 36d6b8245f..4add6e6631 100644 --- a/packages/altboot/files/altboot-menu/20-bootCF +++ b/packages/altboot/files/altboot-menu/20-bootCF @@ -7,6 +7,8 @@ M_TITLE="Boot CF card" +test "$DISABLE_CF_BOOT" = yes && exit 0 + # This function is activated by init.altboot by calling this script with the "run" option run_module() { diff --git a/packages/altboot/files/altboot-menu/Advanced/40-bootNFS b/packages/altboot/files/altboot-menu/Advanced/40-bootNFS index 87373d8eec..4f5c195be2 100644 --- a/packages/altboot/files/altboot-menu/Advanced/40-bootNFS +++ b/packages/altboot/files/altboot-menu/Advanced/40-bootNFS @@ -9,6 +9,8 @@ M_TITLE="Boot from NFS" +test "$DISABLE_NFS_BOOT" = yes && exit 0 + # This function is activated by init.altboot by calling this script with the "run" option run_module() { diff --git a/packages/altboot/files/altboot-menu/Advanced/55-bin-sh b/packages/altboot/files/altboot-menu/Advanced/55-bin-sh index 4619e51ce7..6c9aef3f3e 100644 --- a/packages/altboot/files/altboot-menu/Advanced/55-bin-sh +++ b/packages/altboot/files/altboot-menu/Advanced/55-bin-sh @@ -1,6 +1,7 @@ # !/bin/sh M_TITLE="init=/bin/sh" +test "$DISABLE_BINSH_BOOT" = yes && exit 0 run_module() { |
