Debian jessie-sh4 からDebian wheezy-sh4 に切り替えました。
jessie に比べて、パッケージが揃っていて、依存関係の整合性もありそうです。

http://www.si-linux.co.jp/catwiki/index.php?DebianSH

最初に使うもの

wheezy-sh4 のベースユーザランドでうまくブートできなかったので、一旦上記構成でブートさせます。

Debian SH のインストール

http://d.hatena.ne.jp/forester3/20101207/1291347850

apt-line の変更

/etc/apt/sources.list
deb [arch=sh4] http://www.si-linux.co.jp/pub/debian-sh/wheezy-sh4 wheezy main
deb [arch=all] http://ftp.jp.debian.org/debian/ wheezy main contrib non-free
deb-src http://ftp.jp.debian.org/debian/ wheezy main contrib non-free
# apt-get update
# apt-get upgrade

パッケージの追加

# apt-get install wget vim locales natbase openssh-server openssh-client wakeonlan man-db manpages manpages-ja curl git

タイムゾーンの変更

# dpkg-reconfigure tzdata
Asia -> Tokyo

ユーザの追加

# adduser hogehoge

sshd の設定変更

# vi /etc/ssh/sshd_config
# service ssh restart

ロケールの準備

# dd if=/dev/zero of=/mnt/512MiB.swap bs=1024 count=524288
# chmod 600 /mnt/512MiB.swap
# mkswap /mnt/512MiB.swap
# swapon /mnt/512MiB.swap
/etc/locale.gen
en_US.UTF-8 UTF-8
ja_JP.UTF-8 UTF-8
# locale-gen
~/.bashrc
export LC_ALL=ja_JP.UTF-8