home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
boot
/
i386
/
root
/
usr
/
share
/
YaST2
/
include
/
bootloader
/
ppc
/
dialogs.ycp
< prev
next >
Wrap
Text File
|
2006-11-29
|
1KB
|
52 lines
/**
* File:
* include/bootloader/ppc/dialogs.ycp
*
* Module:
* Bootloader installation and configuration
*
* Summary:
* Dialogs for configuraion PowerPC-specific functions
*
* Authors:
* Joachim Plack <jplack@suse.de>
*
* $Id: dialogs.ycp 27748 2006-02-08 15:15:11Z jplack $
*
*/
{
textdomain "bootloader";
import "Label";
import "CWM";
include "bootloader/ppc/ppc_widgets.ycp";
/**
* Run dialog to adjust installation on PowerPC based systems
* @return symbol for wizard sequencer
*/
symbol ppcBootLoaderOptionsDialog () {
term contents = `HBox (`HSpacing (2), `VBox (
`VStretch (),
"boot_loader_options",
`VStretch ()
), `HSpacing (2));
return CWM::ShowAndRun ($[
"widget_descr" : ppcWidgets (),
"widget_names" : ["boot_loader_options"],
"contents" : contents,
"caption" : _("Boot Loader Options"),
"back_button" : Label::BackButton (),
"abort_button" : Label::AbortButton (),
"next_button" : Label::OKButton (),
]);
}
} // EOF