Adding armel to architecture specific checks.
This commit is contained in:
parent
961aa2f3b7
commit
0eaf9e5122
|
@ -379,11 +379,6 @@ Set_defaults ()
|
|||
LH_LINUX_FLAVOURS="amd64"
|
||||
;;
|
||||
|
||||
arm)
|
||||
Echo_error "You need to specify the linux kernel flavour manually on arm (FIXME)."
|
||||
exit 1
|
||||
;;
|
||||
|
||||
hppa)
|
||||
LH_LINUX_FLAVOURS="parisc"
|
||||
;;
|
||||
|
@ -404,11 +399,6 @@ Set_defaults ()
|
|||
LH_LINUX_FLAVOURS="itanium"
|
||||
;;
|
||||
|
||||
m68k)
|
||||
Echo_error "You need to specify the linux kernel flavour manually on m68k (FIXME)."
|
||||
exit 1
|
||||
;;
|
||||
|
||||
powerpc)
|
||||
case "${LIST}" in
|
||||
stripped|minimal)
|
||||
|
@ -434,6 +424,11 @@ Set_defaults ()
|
|||
fi
|
||||
;;
|
||||
|
||||
arm|armel|m68k)
|
||||
Echo_error "You need to specify the linux kernel flavour manually on ${LH_ARCHITECTURE} (FIXME)."
|
||||
exit 1
|
||||
;;
|
||||
|
||||
*)
|
||||
Echo_error "Architecture not yet supported (FIXME)"
|
||||
;;
|
||||
|
|
|
@ -268,7 +268,7 @@ then
|
|||
URL="http://people.debian.org/~aba/d-i/images/daily/"
|
||||
;;
|
||||
|
||||
arm)
|
||||
arm|armel)
|
||||
URL="http://people.debian.org/~kmuto/d-i/images/daily/"
|
||||
;;
|
||||
|
||||
|
|
Loading…
Reference in New Issue