* Add extra text to boot messages on powerpc to tell people about how to

select a different desktop. Thanks to Rick Thomas for the
    text. Tweaked slightly to list the default on the current disc too.
This commit is contained in:
Steve McIntyre 2013-03-07 07:21:09 +00:00
parent 82f8590462
commit 38ec979060
4 changed files with 28 additions and 3 deletions

View File

@ -15,4 +15,13 @@ Press TAB for a full list of options.
If the system fails to boot with a white screen
which doesn't go away, add 'video=ofonly'.
The following desktop environments are available:
gnome, kde, xfce and lxde. The default is ${DEFAULT_DESKTOP}.
If you prefer a different one, append
"desktop=<your choice>"
e.g. to do an expert install with the xfce desktop
environment, type
"expert desktop=xfce"
at the "boot:" prompt.

View File

@ -9,8 +9,15 @@ full list of options.
If the system fails to boot with a white screen
which doesn't go away, type:
which doesn't go away, try:
install video=ofonly
The following desktop environments are available:
gnome, kde, xfce and lxde. The default is ${DEFAULT_DESKTOP}.
If you prefer a different one, append
"desktop=<your choice>"
e.g. to do an expert install with the xfce desktop
environment, type
"expert desktop=xfce"
at the "boot:" prompt.

3
debian/changelog vendored
View File

@ -45,6 +45,9 @@ debian-cd (3.1.12) UNRELEASED; urgency=low
* Update all the relevant boot-* scripts to do the right thing when
extracting packages and sources, depending on
$ARCHIVE_EXTRACTED_SOURCES as above
* Add extra text to boot messages on powerpc to tell people about how to
select a different desktop. Thanks to Rick Thomas for the
text. Tweaked slightly to list the default on the current disc too.
-- Steve McIntyre <93sam@debian.org> Wed, 26 Sep 2012 01:09:13 +0100

View File

@ -80,6 +80,11 @@ fi
cp $BASEDIR/data/$DI_CODENAME/yaboot/ofboot.b ofboot.b
if [ "$DESKTOP"x = ""x ] || [ "$DESKTOP"x = "all"x ] ; then
DEFAULT_DESKTOP="$UNSPEC_DESKTOP_DEFAULT"
else
DEFAULT_DESKTOP="$DESKTOP"
for subarch in powerpc powerpc64 #prep
do
case $subarch in
@ -100,9 +105,10 @@ do
> $yabootconf
cat $BASEDIR/data/$DI_CODENAME/yaboot/$yabootmsg \
| sed "s/\${MEDIA_TYPE}/CDROM/" \
| sed "s/\${MEDIA_TYPE}/${DISKTYPE}/" \
| sed "s/\${DEBIAN_VERSION}/${CODENAME}/g" \
| sed "s/\${BUILD_DATE}/${BUILD_DATE}/g" \
| sed "s/\${DEFAULT_DESKTOP}/${DEFAULT_DESKTOP}/g" \
> $yabootmsg
if [ -n "$KERNEL_PARAMS" ]; then