Display message for unsupported sparc subarchitectures
This commit is contained in:
parent
fc09043feb
commit
c6e842e393
|
@ -0,0 +1,5 @@
|
|||
|
||||
This subarchitecture is currently not supported by Debian.
|
||||
Only 64-bit systems are supported (sparc64).
|
||||
|
||||
The last Debian release to support sparc32 (sun4m) was Etch (4.0).
|
|
@ -7,21 +7,29 @@ default=install
|
|||
image[sun4u]=/boot/sparc64
|
||||
label=install
|
||||
initrd=/boot/initrd.gz
|
||||
image[sun4,sun4c,sun4d,sun4m]="cat /boot/notsupported.txt"
|
||||
label=install
|
||||
|
||||
# sparc64 expert boots
|
||||
image[sun4u]=/boot/sparc64
|
||||
label=expert
|
||||
initrd=/boot/initrd.gz
|
||||
append="debconf/priority=low"
|
||||
image[sun4,sun4c,sun4d,sun4m]="cat /boot/notsupported.txt"
|
||||
label=expert
|
||||
|
||||
# sparc64 rescue boots
|
||||
image[sun4u]=/boot/sparc64
|
||||
label=rescue
|
||||
initrd=/boot/initrd.gz
|
||||
append="rescue/enable=true"
|
||||
image[sun4,sun4c,sun4d,sun4m]="cat /boot/notsupported.txt"
|
||||
label=rescue
|
||||
|
||||
# sparc64 auto-install boots
|
||||
image[sun4u]=/boot/sparc64
|
||||
label=auto
|
||||
initrd=/boot/initrd.gz
|
||||
append="auto=true priority=critical"
|
||||
image[sun4,sun4c,sun4d,sun4m]="cat /boot/notsupported.txt"
|
||||
label=auto
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
This subarchitecture is currently not supported by Debian.
|
||||
Only 64-bit systems are supported (sparc64).
|
||||
|
||||
The last Debian release to support sparc32 (sun4m) was Etch (4.0).
|
|
@ -7,21 +7,29 @@ default=install
|
|||
image[sun4u]=/boot/sparc64
|
||||
label=install
|
||||
initrd=/boot/initrd.gz
|
||||
image[sun4,sun4c,sun4d,sun4m]="cat /boot/notsupported.txt"
|
||||
label=install
|
||||
|
||||
# sparc64 expert boots
|
||||
image[sun4u]=/boot/sparc64
|
||||
label=expert
|
||||
initrd=/boot/initrd.gz
|
||||
append="debconf/priority=low"
|
||||
image[sun4,sun4c,sun4d,sun4m]="cat /boot/notsupported.txt"
|
||||
label=expert
|
||||
|
||||
# sparc64 rescue boots
|
||||
image[sun4u]=/boot/sparc64
|
||||
label=rescue
|
||||
initrd=/boot/initrd.gz
|
||||
append="rescue/enable=true"
|
||||
image[sun4,sun4c,sun4d,sun4m]="cat /boot/notsupported.txt"
|
||||
label=rescue
|
||||
|
||||
# sparc64 auto-install boots
|
||||
image[sun4u]=/boot/sparc64
|
||||
label=auto
|
||||
initrd=/boot/initrd.gz
|
||||
append="auto=true priority=critical"
|
||||
image[sun4,sun4c,sun4d,sun4m]="cat /boot/notsupported.txt"
|
||||
label=auto
|
||||
|
|
|
@ -6,8 +6,9 @@ debian-cd (3.1.3) UNRELEASED; urgency=low
|
|||
release of Lenny and allows a significant simplification.
|
||||
There are no significant changes in generated CD/DVD images.
|
||||
* Split out code for workaround for #505243 to x86-desktop function library.
|
||||
* sparc: display message for unsupported subarchitectures.
|
||||
|
||||
-- Frans Pop <fjp@debian.org> Mon, 01 Jun 2009 00:15:59 +0200
|
||||
-- Frans Pop <fjp@debian.org> Sat, 13 Jun 2009 16:48:51 +0200
|
||||
|
||||
debian-cd (3.1.2) unstable; urgency=low
|
||||
|
||||
|
|
|
@ -63,6 +63,7 @@ cat $BASEDIR/data/lenny/sparc/debian.txt \
|
|||
| sed "s/\${DEBIAN_VERSION}/${CODENAME}/g" \
|
||||
| sed "s/\${BUILD_DATE}/${BUILD_DATE}/g" \
|
||||
> $inst/boot/debian.txt
|
||||
cp $BASEDIR/data/lenny/sparc/notsupported.txt $inst/boot/
|
||||
|
||||
# Sparc64 kernel is so big, that uncompressing it corrupts SILO memory, so
|
||||
# uncompress it before hand.
|
||||
|
|
|
@ -63,6 +63,7 @@ cat $BASEDIR/data/squeeze/sparc/debian.txt \
|
|||
| sed "s/\${DEBIAN_VERSION}/${CODENAME}/g" \
|
||||
| sed "s/\${BUILD_DATE}/${BUILD_DATE}/g" \
|
||||
> $inst/boot/debian.txt
|
||||
cp $BASEDIR/data/squeeze/sparc/notsupported.txt $inst/boot/
|
||||
|
||||
# Sparc64 kernel is so big, that uncompressing it corrupts SILO memory, so
|
||||
# uncompress it before hand.
|
||||
|
|
Loading…
Reference in New Issue