Browse Source

* merged r21062, r21063 from kernel-cleanup branch:

* removed outdated target psion-pda.



git-svn-id: svn://svn.opensde.net/opensde/opensde/trunk@21634 10447126-35f2-4685-b0cf-6dd780d3921f
misl/sde-wrapper
Alejandro Mery 17 years ago
parent
commit
8aa62fcc39
16 changed files with 0 additions and 1814 deletions
  1. +0
    -13
      target/psion-pda/arlo.cfg
  2. +0
    -16
      target/psion-pda/build.sh
  3. +0
    -251
      target/psion-pda/build_image.sh
  4. +0
    -349
      target/psion-pda/busybox.config-unused
  5. +0
    -126
      target/psion-pda/config.in
  6. +0
    -2
      target/psion-pda/download.txt
  7. +0
    -795
      target/psion-pda/kernel.conf
  8. +0
    -37
      target/psion-pda/pkg_links.conf
  9. +0
    -186
      target/psion-pda/pkg_links.patch
  10. +0
    -21
      target/psion-pda/pkg_linux24-psionw.conf
  11. +0
    -3
      target/psion-pda/profile
  12. +0
    -5
      target/psion-pda/rootfs/etc/fstab
  13. +0
    -1
      target/psion-pda/rootfs/etc/group
  14. +0
    -7
      target/psion-pda/rootfs/etc/issue
  15. +0
    -1
      target/psion-pda/rootfs/etc/minit/hostname/params
  16. +0
    -1
      target/psion-pda/rootfs/etc/passwd

+ 0
- 13
target/psion-pda/arlo.cfg

@ -1,13 +0,0 @@
machine=series5mx
useboot2nd=yes
default=EPOC
timeout=-1
[EPOC]
[T2 Linux]
image = c:\Image @ 0xc0048000
initrd = c:\initrd.gz @ 0xc0800000
boot - root=/dev/ram0 rw console=tty0

+ 0
- 16
target/psion-pda/build.sh

@ -1,16 +0,0 @@
# --- T2-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# T2 SDE: target/psion-pda/build.sh
# Copyright (C) 2004 - 2006 The T2 SDE Project
#
# More information can be found in the files COPYING and README.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License. A copy of the
# GNU General Public License can be found in the file COPYING.
# --- T2-COPYRIGHT-NOTE-END ---
. target/embedded/build.sh

+ 0
- 251
target/psion-pda/build_image.sh

@ -1,251 +0,0 @@
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: target/psion-pda/build_image.sh
# Copyright (C) 2006 The OpenSDE Project
# Copyright (C) 2004 - 2006 The T2 SDE Project
#
# More information can be found in the files COPYING and README.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License. A copy of the
# GNU General Public License can be found in the file COPYING.
# --- SDE-COPYRIGHT-NOTE-END ---
. $base/misc/share/functions.in
set -e
arlo_ver="`sed -e 's,.*arlo-\(.*\).zip .*,\1,' \
$base/target/$target/download.txt`"
echo "Preparing root filesystem image from build result ..."
rm -rf $imagelocation{,.squashfs}
mkdir -p $imagelocation ; cd $imagelocation
find $build_root -printf "%P\n" | sed '
# stuff we never need
/^TOOLCHAIN/ d;
/^var\/adm/ d;
/\/include/ d;
/\/src/ d;
/\.a$/ d;
/\.o$/ d;
/\.old$/ d;
/\/games/ d;
/\/local/ d;
/^boot/ d;
# stuff that would be nice - but is huge and only documentation
/\/man/ d;
/\/doc/ d;
# /etc noise
/^etc\/stone.d/ d;
/^etc\/cron.d/ d;
/^etc\/init.d/ d;
/^etc\/profile.d/ d;
/^etc\/sysconfig/ d;
/^etc\/iproute2/ d;
/^etc\/skel/ d;
/^etc\/opt/ d;
/^etc\/conf/ d;
/^etc\/rc.d/ d;
/^home/ d;
/^mnt/ d;
/^opt/ d;
# rock net stuff
/^lib\/network/ d;
/^sbin\/ifup/ d;
/^sbin\/ifdown/ d;
/^sbin\/rocknet/ d;
/^\/man\// d;
/terminfo\/a\/ansi$/ { p; d; }
/terminfo\/l\/linux$/ { p; d; }
/terminfo\/x\/xterm$/ { p; d; }
/terminfo\/n\/nxterm$/ { p; d; }
/terminfo\/x\/xterm-color$/ { p; d; }
/terminfo\/x\/xterm-8bit$/ { p; d; }
/terminfo\/x\/screen$/ { p; d; }
/terminfo\/v\/vt100$/ { p; d; }
/terminfo\/v\/vt200$/ { p; d; }
/terminfo\/v\/vt220$/ { p; d; }
/terminfo/ d;
# some big ncurses stuff
/\/tack$/ d;
/\/tic$/ d;
/\/toe$/ d;
/\/tput$/ d;
/\/tset$/ d;
/\/captoinfo$/ d;
/\/input$/ d;
' > tar.input
copy_with_list_from_file $build_root . $PWD/tar.input
rm tar.input
echo "Preparing root filesystem image from target defined files ..."
rm -f sbin/init ; ln -s minit sbin/init
rm -f bin/sh ; ln -s ash bin/sh
copy_from_source $base/target/$target/rootfs .
echo "Creating links for identical files ..."
link_identical_files
echo "Creating static device nodes in /dev ..."
while read trg name ; do
ln -s $trg $name
done < <(cat <<-EOT
kcore dev/core
/proc/self/fd dev/fd
fd/0 dev/stdin
fd/1 dev/stdout
fd/2 dev/stderr
vcs0 dev/vcs
EOT
)
while read type major minor name ; do
if [ "$name" ] ; then
mknod dev/$name $type $major $minor
else
echo "defect rule!"
fi
done < <(cat <<-EOT
c 10 3 atibm
c 14 4 audio
c 14 20 audio1
c 14 36 audio2
c 14 52 audio3
c 14 7 audioctl
c 5 1 console
c 14 3 dsp
c 14 19 dsp1
c 29 0 fb0
c 1 7 full
c 10 2 inportbm
c 161 0 ircomm0
c 161 1 ircomm1
c 161 16 irlpt0
c 161 17 irlpt1
c 10 4 jbm
c 1 2 kmem
c 10 0 logibm
b 7 0 loop0
b 7 1 loop1
b 7 2 loop2
b 7 3 loop3
c 6 0 lp0
c 6 1 lp1
c 6 2 lp2
c 1 1 mem
c 14 0 mixer
c 14 16 mixer1
c 1 3 null
c 1 4 port
c 5 2 ptmx
c 2 0 ptyp0
c 2 1 ptyp1
c 2 2 ptyp2
c 2 3 ptyp3
c 2 4 ptyp4
c 2 5 ptyp5
c 2 6 ptyp6
c 2 7 ptyp7
c 2 8 ptyp8
c 2 9 ptyp9
c 2 10 ptypa
c 2 11 ptypb
c 2 12 ptypc
c 2 13 ptypd
c 2 14 ptype
c 2 15 ptypf
b 1 0 ram0
b 1 1 ram1
b 1 2 ram2
b 1 3 ram3
c 1 8 random
c 14 6 sndstat
c 10 11 tpanel
c 5 0 tty
c 4 0 tty0
c 4 1 tty1
c 4 10 tty10
c 4 2 tty2
c 4 3 tty3
c 4 4 tty4
c 4 5 tty5
c 4 6 tty6
c 4 7 tty7
c 4 8 tty8
c 4 9 tty9
c 204 16 ttyAM0
c 204 17 ttyAM1
c 204 16 ttyS0
c 204 17 ttyS1
c 1 9 urandom
c 7 0 vcs0
c 7 1 vcs1
c 7 2 vcs2
c 7 3 vcs3
c 7 4 vcs4
c 7 5 vcs5
c 7 6 vcs6
c 7 7 vcs7
c 7 8 vcs8
c 7 9 vcs9
c 1 5 zero
EOT
)
# image size estimation ...
s="`du -s -B 1 . | cut -f 1`"
s="$(( (s + 128000) / 1024 ))"
s="$(( s * 1024 ))"
echo "Writing initrd image file ($s bytes)."
tmpdir="`mktemp`" ; rm $tmpdir ; mkdir $tmpdir
tmpfile="`mktemp`"
dd if=/dev/zero of=$tmpfile bs=$s count=1 > $tmpfile
mke2fs -m 0 -N 512 -qF $tmpfile > /dev/null
mount -t ext2 $tmpfile $tmpdir -o loop
rmdir $tmpdir/lost+found/
copy_from_source . $tmpdir
umount $tmpdir
gzip -9 -c $tmpfile > ../initrd.gz
rmdir $tmpdir ; rm -f $tmpfile
du -sh . ../initrd.gz
cd $imagelocation/..
rm -rf epoc ; mkdir epoc ; cd epoc
cp $build_root/boot/Image_* Image
echo "Extracting ARLO ..."
unzip $base/download/mirror/a/arlo-$arlo_ver.zip > /dev/null
rm arlo/{copying,readme.html,example.cfg}
cp $base/target/$target/arlo.cfg arlo/
echo "The image is located at $imagelocation/.."

+ 0
- 349
target/psion-pda/busybox.config-unused

@ -1,349 +0,0 @@
#
# Automatically generated make config: don't edit
#
HAVE_DOT_CONFIG=y
#
# General Configuration
#
# CONFIG_FEATURE_BUFFERS_USE_MALLOC is not set
CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y
# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set
CONFIG_FEATURE_VERBOSE_USAGE=y
# CONFIG_FEATURE_INSTALLER is not set
# CONFIG_LOCALE_SUPPORT is not set
# CONFIG_FEATURE_DEVFS is not set
CONFIG_FEATURE_DEVPTS=y
# CONFIG_FEATURE_CLEAN_UP is not set
# CONFIG_FEATURE_SUID is not set
# CONFIG_SELINUX is not set
#
# Build Options
#
CONFIG_STATIC=y
# CONFIG_LFS is not set
# USING_CROSS_COMPILER is not set
EXTRA_CFLAGS_OPTIONS=""
#
# Installation Options
#
# CONFIG_INSTALL_NO_USR is not set
PREFIX="./_install"
#
# Archival Utilities
#
# CONFIG_AR is not set
# CONFIG_BUNZIP2 is not set
# CONFIG_CPIO is not set
# CONFIG_DPKG is not set
# CONFIG_DPKG_DEB is not set
# CONFIG_GUNZIP is not set
# CONFIG_GZIP is not set
# CONFIG_RPM2CPIO is not set
# CONFIG_RPM is not set
# CONFIG_TAR is not set
# CONFIG_UNCOMPRESS is not set
# CONFIG_UNZIP is not set
#
# Coreutils
#
# CONFIG_BASENAME is not set
# CONFIG_CAL is not set
# CONFIG_CAT is not set
# CONFIG_CHGRP is not set
# CONFIG_CHMOD is not set
# CONFIG_CHOWN is not set
# CONFIG_CHROOT is not set
# CONFIG_CMP is not set
# CONFIG_CP is not set
# CONFIG_CUT is not set
# CONFIG_DATE is not set
# CONFIG_DD is not set
# CONFIG_DF is not set
# CONFIG_DIRNAME is not set
# CONFIG_DOS2UNIX is not set
# CONFIG_DU is not set
# CONFIG_ECHO is not set
# CONFIG_ENV is not set
# CONFIG_EXPR is not set
CONFIG_FALSE=y
#
# false (forced enabled for use with shell)
#
CONFIG_FOLD=y
# CONFIG_HEAD is not set
# CONFIG_HOSTID is not set
# CONFIG_ID is not set
# CONFIG_INSTALL is not set
# CONFIG_LENGTH is not set
# CONFIG_LN is not set
# CONFIG_LOGNAME is not set
# CONFIG_LS is not set
# CONFIG_MD5SUM is not set
# CONFIG_MKDIR is not set
# CONFIG_MKFIFO is not set
# CONFIG_MKNOD is not set
# CONFIG_MV is not set
# CONFIG_OD is not set
# CONFIG_PRINTF is not set
# CONFIG_PWD is not set
# CONFIG_REALPATH is not set
# CONFIG_RM is not set
# CONFIG_RMDIR is not set
CONFIG_SEQ=y
# CONFIG_SHA1SUM is not set
# CONFIG_SLEEP is not set
CONFIG_SORT=y
# CONFIG_STTY is not set
# CONFIG_SYNC is not set
# CONFIG_TAIL is not set
# CONFIG_TEE is not set
CONFIG_TEST=y
#
# test (forced enabled for use with shell)
#
# CONFIG_FEATURE_TEST_64 is not set
# CONFIG_TOUCH is not set
# CONFIG_TR is not set
CONFIG_TRUE=y
#
# true (forced enabled for use with shell)
#
# CONFIG_TTY is not set
# CONFIG_UNAME is not set
# CONFIG_UNIQ is not set
# CONFIG_USLEEP is not set
# CONFIG_UUDECODE is not set
# CONFIG_UUENCODE is not set
# CONFIG_WATCH is not set
# CONFIG_WC is not set
# CONFIG_WHO is not set
# CONFIG_WHOAMI is not set
# CONFIG_YES is not set
#
# Console Utilities
#
# CONFIG_CHVT is not set
# CONFIG_CLEAR is not set
# CONFIG_DEALLOCVT is not set
# CONFIG_DUMPKMAP is not set
# CONFIG_LOADFONT is not set
# CONFIG_LOADKMAP is not set
# CONFIG_OPENVT is not set
# CONFIG_RESET is not set
# CONFIG_SETKEYCODES is not set
#
# Debian Utilities
#
# CONFIG_MKTEMP is not set
# CONFIG_PIPE_PROGRESS is not set
# CONFIG_READLINK is not set
# CONFIG_RUN_PARTS is not set
# CONFIG_START_STOP_DAEMON is not set
# CONFIG_WHICH is not set
#
# Editors
#
# CONFIG_AWK is not set
# CONFIG_PATCH is not set
# CONFIG_SED is not set
# CONFIG_VI is not set
#
# Finding Utilities
#
CONFIG_FIND=y
CONFIG_FEATURE_FIND_MTIME=y
CONFIG_FEATURE_FIND_PERM=y
CONFIG_FEATURE_FIND_TYPE=y
CONFIG_FEATURE_FIND_XDEV=y
# CONFIG_FEATURE_FIND_NEWER is not set
CONFIG_FEATURE_FIND_INUM=y
# CONFIG_GREP is not set
CONFIG_XARGS=y
# CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION is not set
CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y
CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y
CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y
#
# Init Utilities
#
CONFIG_INIT=y
CONFIG_FEATURE_USE_INITTAB=y
CONFIG_FEATURE_INITRD=y
# CONFIG_FEATURE_INIT_COREDUMPS is not set
# CONFIG_FEATURE_EXTRA_QUIET is not set
# CONFIG_HALT is not set
# CONFIG_POWEROFF is not set
# CONFIG_REBOOT is not set
# CONFIG_MESG is not set
#
# Login/Password Management Utilities
#
# CONFIG_USE_BB_PWD_GRP is not set
# CONFIG_ADDGROUP is not set
# CONFIG_DELGROUP is not set
# CONFIG_ADDUSER is not set
# CONFIG_DELUSER is not set
# CONFIG_GETTY is not set
# CONFIG_LOGIN is not set
# CONFIG_PASSWD is not set
# CONFIG_SU is not set
# CONFIG_SULOGIN is not set
# CONFIG_VLOCK is not set
#
# Miscellaneous Utilities
#
# CONFIG_ADJTIMEX is not set
# CONFIG_CROND is not set
# CONFIG_CRONTAB is not set
# CONFIG_DC is not set
# CONFIG_DEVFSD is not set
# CONFIG_LAST is not set
# CONFIG_HDPARM is not set
# CONFIG_MAKEDEVS is not set
# CONFIG_MT is not set
# CONFIG_RX is not set
# CONFIG_STRINGS is not set
# CONFIG_TIME is not set
# CONFIG_WATCHDOG is not set
#
# Linux Module Utilities
#
# CONFIG_INSMOD is not set
# CONFIG_LSMOD is not set
# CONFIG_MODPROBE is not set
# CONFIG_RMMOD is not set
#
# Networking Utilities
#
# CONFIG_FEATURE_IPV6 is not set
# CONFIG_ARPING is not set
# CONFIG_FTPGET is not set
# CONFIG_FTPPUT is not set
# CONFIG_HOSTNAME is not set
# CONFIG_HTTPD is not set
CONFIG_IFCONFIG=y
CONFIG_FEATURE_IFCONFIG_STATUS=y
# CONFIG_FEATURE_IFCONFIG_SLIP is not set
# CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set
# CONFIG_FEATURE_IFCONFIG_HW is not set
# CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS is not set
# CONFIG_IFUPDOWN is not set
# CONFIG_INETD is not set
CONFIG_IP=y
CONFIG_FEATURE_IP_ADDRESS=y
CONFIG_FEATURE_IP_LINK=y
CONFIG_FEATURE_IP_ROUTE=y
# CONFIG_FEATURE_IP_TUNNEL is not set
# CONFIG_IPCALC is not set
# CONFIG_IPADDR is not set
# CONFIG_IPLINK is not set
# CONFIG_IPROUTE is not set
# CONFIG_IPTUNNEL is not set
# CONFIG_NAMEIF is not set
# CONFIG_NC is not set
# CONFIG_NETSTAT is not set
# CONFIG_NSLOOKUP is not set
# CONFIG_PING is not set
CONFIG_ROUTE=y
CONFIG_TELNET=y
CONFIG_FEATURE_TELNET_TTYPE=y
CONFIG_FEATURE_TELNET_AUTOLOGIN=y
# CONFIG_TELNETD is not set
# CONFIG_TFTP is not set
# CONFIG_TRACEROUTE is not set
# CONFIG_VCONFIG is not set
# CONFIG_WGET is not set
#
# udhcp Server/Client
#
# CONFIG_UDHCPD is not set
# CONFIG_UDHCPC is not set
#
# Process Utilities
#
CONFIG_FREE=y
# CONFIG_KILL is not set
# CONFIG_PIDOF is not set
CONFIG_PS=y
# CONFIG_RENICE is not set
CONFIG_TOP=y
FEATURE_CPU_USAGE_PERCENTAGE=y
CONFIG_UPTIME=y
# CONFIG_SYSCTL is not set
#
# Another Bourne-like Shell
#
# CONFIG_FEATURE_SH_IS_ASH is not set
# CONFIG_FEATURE_SH_IS_HUSH is not set
# CONFIG_FEATURE_SH_IS_LASH is not set
CONFIG_FEATURE_SH_IS_MSH=y
# CONFIG_FEATURE_SH_IS_NONE is not set
# CONFIG_ASH is not set
# CONFIG_HUSH is not set
# CONFIG_LASH is not set
CONFIG_MSH=y
#
# Bourne Shell Options
#
# CONFIG_FEATURE_SH_EXTRA_QUIET is not set
# CONFIG_FEATURE_SH_STANDALONE_SHELL is not set
CONFIG_FEATURE_COMMAND_EDITING=y
CONFIG_FEATURE_COMMAND_HISTORY=20
CONFIG_FEATURE_COMMAND_TAB_COMPLETION=y
# CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION is not set
CONFIG_FEATURE_SH_FANCY_PROMPT=y
#
# System Logging Utilities
#
# CONFIG_SYSLOGD is not set
# CONFIG_LOGGER is not set
#
# Linux System Utilities
#
# CONFIG_DMESG is not set
# CONFIG_FBSET is not set
# CONFIG_FDFLUSH is not set
# CONFIG_FDFORMAT is not set
# CONFIG_FDISK is not set
# CONFIG_FREERAMDISK is not set
# CONFIG_FSCK_MINIX is not set
# CONFIG_MKFS_MINIX is not set
# CONFIG_GETOPT is not set
# CONFIG_HEXDUMP is not set
# CONFIG_HWCLOCK is not set
# CONFIG_LOSETUP is not set
# CONFIG_MKSWAP is not set
# CONFIG_MORE is not set
# CONFIG_PIVOT_ROOT is not set
# CONFIG_RDATE is not set
# CONFIG_SWAPONOFF is not set
# CONFIG_MOUNT is not set
# CONFIG_UMOUNT is not set
#
# Debugging Options
#
# CONFIG_DEBUG is not set

+ 0
- 126
target/psion-pda/config.in

@ -1,126 +0,0 @@
# --- T2-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# T2 SDE: target/psion-pda/config.in
# Copyright (C) 2004 - 2006 The T2 SDE Project
#
# More information can be found in the files COPYING and README.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License. A copy of the
# GNU General Public License can be found in the file COPYING.
# --- T2-COPYRIGHT-NOTE-END ---
#Description: Psion Windermere PDA
pkgfilter sed '
# mangle all packages to only build them in the cross stage (1)
s,^. \(.\)[^ ]*,X \11--------,;
# select some packages (and repositories) explicitely
/ 00-dirtree / { p; d; };
/ linux-header / { p; d; };
/ binutils / { p; d; };
/ gcc / { p; d; };
/ automake / { p; d; };
/ libtool / { p; d; }
#/ squashfs-tools / { s,^. [^ ]*,X 0---------,; p; d; }
/ uclibc / { p; d; };
/ dietlibc / { p; d; };
/ linux24-psionw / { p; d; };
/ libowfat / { p; d; };
/ minit / { p; d; };
/ fgetty / { p; d; };
/ pdksh / { p; d; };
/ bash / { p; d; };
/ kiss / { p; d; };
/ busybox / { p; d; };
/ zlib / { p; d; };
/ ncurses / { p; d; };
/ irda-utils / { p; d; };
# / iptables / { p; d; };
/ dropbear / { p; d; };
/ rsync / { p; d; };
/ gpm / { p; d; };
/ libpng / { p; d; };
/ libjpeg / { p; d; };
/ links / { p; d; };
# not really, yet
#/ screen / { p; d; };
# try x.org, for the fun of it
/ libxml / { p; d; };
/ freetype / { p; d; };
/ libiconv / { p; d; };
/ perl perl / { p; d; };
/ readline / { p; d; };
# / python python / { p; d; };
/ xorg-server /d
/ xf86-/d
/ xorg font-/d
/ liblbxutil /d
/ lbxproxy /d
/ proxymngr /d
/ smproxy /d
/ fdclock /d
/ xman /d
/ xserver / { p; d; };
/ xorg / { p; d; };
/ xterm / { p; d; };
/ rxvt-unicode / { p; d; };
/ blackbox / { p; d; };
/ glib / { p; d; };
/ atk / { p; d; };
/ pango / { p; d; };
/ cairo / { p; d; };
/ gtk+ / { p; d; };
#/ qt / { p; d; };
/ irsii / { p; d; };
# disable the rest
/.*/ { s/^X /O / ; p; d; };'
SDECFG_ARCH='arm'
SDECFGSET_ARCH='arm'
SDECFGSET_ARM_OPT='arm7100'
SDECFGSET_CROSSBUILD=1
SDECFGSET_IMAGE='none'
SDECFGSET_PKGFILE_TYPE='none'
SDECFGSET_PKGFILE_VER=0
SDECFGSET_LIBC='uclibc'
SDECFGSET_DIETLIBC_DYN=0
SDECFGSET_INIT='minit'
SDECFGSET_OPT='size'
SDECFGSET_DO_REBUILD_STAGE=0
SDECFGSET_DISABLE_NLS=1
SDECFGSET_PKG_LINUX_CONFIG_STYLE='none'
SDECFGSET_PKG_LINUX_CUSTCONFIG=1
SDECFGSET_PKG_BUSYBOX_SYMLINKS=1
SDECFGSET_DIETLIBC=1
SDECFGSET_DIETLIBC_pdksh=1
SDECFGSET_DIETLIBC_kiss=1

+ 0
- 2
target/psion-pda/download.txt

@ -1,2 +0,0 @@
0 arlo-2.1.0.zip !http://www.yipton.demon.co.uk/arlo/latest/arlo.zip
0 proboot-0.2.2.tar.gz http://www.muru.com/linux/psion/proboot/current/

+ 0
- 795
target/psion-pda/kernel.conf

@ -1,795 +0,0 @@
# --- T2-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# T2 SDE: target/psion-pda/kernel.conf
# Copyright (C) 2004 - 2006 The T2 SDE Project
#
# More information can be found in the files COPYING and README.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License. A copy of the
# GNU General Public License can be found in the file COPYING.
# --- T2-COPYRIGHT-NOTE-END ---
#
# Automatically generated by make menuconfig: don't edit
#
CONFIG_ARM=y
# CONFIG_EISA is not set
# CONFIG_SBUS is not set
# CONFIG_MCA is not set
CONFIG_UID16=y
CONFIG_RWSEM_GENERIC_SPINLOCK=y
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
# CONFIG_GENERIC_BUST_SPINLOCK is not set
# CONFIG_GENERIC_ISA_DMA is not set
#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
# CONFIG_OBSOLETE is not set
#
# Loadable module support
#
# CONFIG_MODULES is not set
# CONFIG_MODVERSIONS is not set
# CONFIG_KMOD is not set
#
# System Type
#
# CONFIG_ARCH_ANAKIN is not set
# CONFIG_ARCH_ARCA5K is not set
# CONFIG_ARCH_CLPS7500 is not set
# CONFIG_ARCH_CLPS711X is not set
# CONFIG_ARCH_CO285 is not set
# CONFIG_ARCH_EBSA110 is not set
# CONFIG_ARCH_CAMELOT is not set
# CONFIG_ARCH_FOOTBRIDGE is not set
# CONFIG_ARCH_INTEGRATOR is not set
# CONFIG_ARCH_OMAHA is not set
# CONFIG_ARCH_L7200 is not set
# CONFIG_ARCH_MX1ADS is not set
CONFIG_ARCH_PSIONW=y
# CONFIG_ARCH_RPC is not set
# CONFIG_ARCH_RISCSTATION is not set
# CONFIG_ARCH_SA1100 is not set
# CONFIG_ARCH_SHARK is not set
# CONFIG_ARCH_AT91RM9200 is not set
#
# Archimedes/A5000 Implementations
#
# CONFIG_ARCH_ARC is not set
# CONFIG_ARCH_A5K is not set
#
# Footbridge Implementations
#
# CONFIG_ARCH_CATS is not set
# CONFIG_ARCH_PERSONAL_SERVER is not set
# CONFIG_ARCH_EBSA285_ADDIN is not set
# CONFIG_ARCH_EBSA285_HOST is not set
# CONFIG_ARCH_NETWINDER is not set
#
# SA11x0 Implementations
#
# CONFIG_SA1100_ACCELENT is not set
# CONFIG_SA1100_ASSABET is not set
# CONFIG_ASSABET_NEPONSET is not set
# CONFIG_SA1100_ADSAGC is not set
# CONFIG_SA1100_ADSBITSY is not set
# CONFIG_SA1100_ADSBITSYPLUS is not set
# CONFIG_SA1100_BRUTUS is not set
# CONFIG_SA1100_CEP is not set
# CONFIG_SA1100_CERF is not set
# CONFIG_SA1100_H3100 is not set
# CONFIG_SA1100_H3600 is not set
# CONFIG_SA1100_H3800 is not set
# CONFIG_SA1100_H3XXX is not set
# CONFIG_H3600_SLEEVE is not set
# CONFIG_SA1100_EXTENEX1 is not set
# CONFIG_SA1100_FLEXANET is not set
# CONFIG_SA1100_FREEBIRD is not set
# CONFIG_SA1100_FRODO is not set
# CONFIG_SA1100_GRAPHICSCLIENT is not set
# CONFIG_SA1100_GRAPHICSMASTER is not set
# CONFIG_SA1100_HACKKIT is not set
# CONFIG_SA1100_BADGE4 is not set
# CONFIG_SA1100_JORNADA720 is not set
# CONFIG_SA1100_HUW_WEBPANEL is not set
# CONFIG_SA1100_ITSY is not set
# CONFIG_SA1100_LART is not set
# CONFIG_SA1100_NANOENGINE is not set
# CONFIG_SA1100_OMNIMETER is not set
# CONFIG_SA1100_PANGOLIN is not set
# CONFIG_SA1100_PLEB is not set
# CONFIG_SA1100_PT_SYSTEM3 is not set
# CONFIG_SA1100_SHANNON is not set
# CONFIG_SA1100_SHERMAN is not set
# CONFIG_SA1100_SIMPAD is not set
# CONFIG_SA1100_SIMPUTER is not set
# CONFIG_SA1100_PFS168 is not set
# CONFIG_SA1100_VICTOR is not set
# CONFIG_SA1100_XP860 is not set
# CONFIG_SA1100_YOPY is not set
# CONFIG_SA1100_USB is not set
# CONFIG_SA1100_USB_NETLINK is not set
# CONFIG_SA1100_USB_CHAR is not set
# CONFIG_SA1100_SSP is not set
#
# AT91RM9200 Implementations
#
# CONFIG_ARCH_AT91RM9200DK is not set
# CONFIG_MACH_CSB337 is not set
#
# CLPS711X/EP721X Implementations
#
# CONFIG_ARCH_AUTCPU12 is not set
# CONFIG_ARCH_CDB89712 is not set
# CONFIG_ARCH_CLEP7312 is not set
# CONFIG_ARCH_EDB7211 is not set
# CONFIG_ARCH_FORTUNET is not set
# CONFIG_ARCH_GUIDEA07 is not set
# CONFIG_ARCH_P720T is not set
# CONFIG_ARCH_EP7211 is not set
# CONFIG_ARCH_EP7212 is not set
#
# Psion Windermere Implementations
#
# CONFIG_PSIONW_5MX is not set
# CONFIG_PSIONW_5MXPRO24MB is not set
# CONFIG_PSIONW_5MXPRO32MB is not set
CONFIG_PSIONW_REVO=y
# CONFIG_PSIONW_REVOPLUS is not set
# CONFIG_ARCH_ACORN is not set
# CONFIG_PLD is not set
# CONFIG_FOOTBRIDGE is not set
# CONFIG_FOOTBRIDGE_HOST is not set
# CONFIG_FOOTBRIDGE_ADDIN is not set
CONFIG_CPU_32=y
# CONFIG_CPU_26 is not set
# CONFIG_CPU_ARM610 is not set
# CONFIG_CPU_ARM710 is not set
CONFIG_CPU_ARM720T=y
# CONFIG_CPU_ARM920T is not set
# CONFIG_CPU_ARM922T is not set
# CONFIG_CPU_ARM926T is not set
# CONFIG_CPU_ARM1020 is not set
# CONFIG_CPU_ARM1020E is not set
# CONFIG_CPU_ARM1022 is not set
# CONFIG_CPU_ARM1026 is not set
# CONFIG_CPU_SA110 is not set
# CONFIG_CPU_SA1100 is not set
# CONFIG_CPU_32v3 is not set
# CONFIG_CPU_32v4 is not set
CONFIG_ARM_THUMB=y
CONFIG_DISCONTIGMEM=y
#
# General setup
#
# CONFIG_PCI is not set
# CONFIG_ISA is not set
# CONFIG_ISA_DMA is not set
# CONFIG_ZBOOT_ROM is not set
CONFIG_ZBOOT_ROM_TEXT=0
CONFIG_ZBOOT_ROM_BSS=0
# CONFIG_HOTPLUG is not set
# CONFIG_PCMCIA is not set
CONFIG_NET=y
CONFIG_SYSVIPC=y
# CONFIG_BSD_PROCESS_ACCT is not set
CONFIG_SYSCTL=y
CONFIG_FPE_NWFPE=y
# CONFIG_FPE_NWFPE_XP is not set
# CONFIG_FPE_FASTFPE is not set
CONFIG_KCORE_ELF=y
# CONFIG_KCORE_AOUT is not set
# CONFIG_BINFMT_AOUT is not set
CONFIG_BINFMT_ELF=y
# CONFIG_BINFMT_MISC is not set
# CONFIG_PM is not set
# CONFIG_ARTHUR is not set
CONFIG_CMDLINE="dummy=dummy"
CONFIG_LEDS=y
CONFIG_LEDS_TIMER=y
CONFIG_LEDS_CPU=y
# CONFIG_ALIGNMENT_TRAP is not set
#
# Parallel port support
#
# CONFIG_PARPORT is not set
# CONFIG_MTD is not set
#
# Plug and Play configuration
#
# CONFIG_PNP is not set
# CONFIG_ISAPNP is not set
#
# Block devices
#
# CONFIG_BLK_DEV_FD is not set
# CONFIG_BLK_DEV_XD is not set
# CONFIG_PARIDE is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_CISS_SCSI_TAPE is not set
# CONFIG_CISS_MONITOR_THREAD is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_LOOP is not set
# CONFIG_BLK_DEV_NBD is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_SIZE=4096
CONFIG_BLK_DEV_INITRD=y
# CONFIG_BLK_STATS is not set
#
# Multi-device support (RAID and LVM)
#
# CONFIG_MD is not set
# CONFIG_BLK_DEV_MD is not set
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID5 is not set
# CONFIG_MD_MULTIPATH is not set
# CONFIG_BLK_DEV_LVM is not set
#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
# CONFIG_NETLINK_DEV is not set
# CONFIG_NETFILTER is not set
# CONFIG_FILTER is not set
CONFIG_UNIX=y
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_ARPD is not set
# CONFIG_INET_ECN is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_IPV6 is not set
# CONFIG_KHTTPD is not set
#
# SCTP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_SCTP is not set
# CONFIG_ATM is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
#
# Appletalk devices
#
# CONFIG_DEV_APPLETALK is not set
# CONFIG_DECNET is not set
# CONFIG_BRIDGE is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_LLC is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set
#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set
#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
#
# Network device support
#
CONFIG_NETDEVICES=y
#
# ARCnet devices
#
# CONFIG_ARCNET is not set
# CONFIG_DUMMY is not set
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
# CONFIG_ETHERTAP is not set
#
# Ethernet (10 or 100Mbit)
#
# CONFIG_NET_ETHERNET is not set
#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_E1000 is not set
# CONFIG_MYRI_SBUS is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_R8169 is not set
# CONFIG_SK98LIN is not set
# CONFIG_TIGON3 is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PLIP is not set
CONFIG_PPP=y
# CONFIG_PPP_MULTILINK is not set
# CONFIG_PPP_FILTER is not set
CONFIG_PPP_ASYNC=y
# CONFIG_PPP_SYNC_TTY is not set
CONFIG_PPP_DEFLATE=y
CONFIG_PPP_BSDCOMP=y
# CONFIG_PPPOE is not set
CONFIG_SLIP=y
CONFIG_SLIP_COMPRESSED=y
# CONFIG_SLIP_SMART is not set
# CONFIG_SLIP_MODE_SLIP6 is not set
#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set
#
# Token Ring devices
#
# CONFIG_TR is not set
# CONFIG_NET_FC is not set
# CONFIG_RCPCI is not set
# CONFIG_SHAPER is not set
#
# Wan interfaces
#
# CONFIG_WAN is not set
#
# Amateur Radio support
#
# CONFIG_HAMRADIO is not set
#
# IrDA (infrared) support
#
CONFIG_IRDA=y
CONFIG_IRLAN=y
CONFIG_IRNET=y
CONFIG_IRCOMM=y
# CONFIG_IRDA_ULTRA is not set
CONFIG_IRDA_CACHE_LAST_LSAP=y
# CONFIG_IRDA_FAST_RR is not set
# CONFIG_IRDA_DEBUG is not set
#
# Infrared-port device drivers
#
CONFIG_IRTTY_SIR=y
# CONFIG_IRPORT_SIR is not set
# CONFIG_DONGLE is not set
# CONFIG_USB_IRDA is not set
# CONFIG_NSC_FIR is not set
# CONFIG_WINBOND_FIR is not set
# CONFIG_TOSHIBA_OLD is not set
# CONFIG_TOSHIBA_FIR is not set
# CONFIG_SMC_IRCC_FIR is not set
# CONFIG_ALI_FIR is not set
# CONFIG_VLSI_FIR is not set
# CONFIG_VIA_IRCC_FIR is not set
#
# ATA/ATAPI/MFM/RLL support
#
# CONFIG_IDE is not set
# CONFIG_BLK_DEV_HD is not set
#
# SCSI support
#
# CONFIG_SCSI is not set
#
# Synchronous Serial Interface
#
CONFIG_SSI=y
# CONFIG_SSI_CLPS711X is not set
CONFIG_SSI_PS5MX=y
# CONFIG_SSI_JUNO is not set
CONFIG_SSI_ADC7843=y
#
# I2O device support
#
# CONFIG_I2O is not set
# CONFIG_I2O_BLOCK is not set
# CONFIG_I2O_LAN is not set
# CONFIG_I2O_SCSI is not set
# CONFIG_I2O_PROC is not set
#
# ISDN subsystem
#
# CONFIG_ISDN is not set
#
# Input core support
#
# CONFIG_INPUT is not set
# CONFIG_INPUT_KEYBDEV is not set
# CONFIG_INPUT_MOUSEDEV is not set
# CONFIG_INPUT_JOYDEV is not set
# CONFIG_INPUT_EVDEV is not set
# CONFIG_INPUT_UINPUT is not set
# CONFIG_INPUT_MX1TS is not set
#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
# CONFIG_SERIAL is not set
# CONFIG_SERIAL_EXTENDED is not set
# CONFIG_SERIAL_NONSTANDARD is not set
#
# Psion Windermere Keyboard Locale
#
CONFIG_PSION_KBD_DE=y
# CONFIG_PSION_KBD_UK is not set
# CONFIG_PSION_KBD_US is not set
CONFIG_PROCFS_PSION=y
#
# Serial drivers
#
# CONFIG_SERIAL_ANAKIN is not set
# CONFIG_SERIAL_ANAKIN_CONSOLE is not set
# CONFIG_SERIAL_AMBA is not set
# CONFIG_SERIAL_AMBA_CONSOLE is not set
# CONFIG_SERIAL_CLPS711X is not set
# CONFIG_SERIAL_CLPS711X_CONSOLE is not set
CONFIG_SERIAL_PSIONW=y
# CONFIG_SERIAL_PSIONW_CONSOLE is not set
# CONFIG_SERIAL_21285 is not set
# CONFIG_SERIAL_21285_OLD is not set
# CONFIG_SERIAL_21285_CONSOLE is not set
# CONFIG_SERIAL_UART00 is not set
# CONFIG_SERIAL_UART00_CONSOLE is not set
# CONFIG_SERIAL_SA1100 is not set
# CONFIG_SERIAL_SA1100_CONSOLE is not set
# CONFIG_SERIAL_OMAHA is not set
# CONFIG_SERIAL_OMAHA_CONSOLE is not set
# CONFIG_SERIAL_AT91 is not set
# CONFIG_SERIAL_AT91_CONSOLE is not set
# CONFIG_SERIAL_8250 is not set
# CONFIG_SERIAL_8250_CONSOLE is not set
# CONFIG_SERIAL_8250_EXTENDED is not set
# CONFIG_SERIAL_8250_MANY_PORTS is not set
# CONFIG_SERIAL_8250_SHARE_IRQ is not set
# CONFIG_SERIAL_8250_DETECT_IRQ is not set
# CONFIG_SERIAL_8250_MULTIPORT is not set
# CONFIG_SERIAL_8250_HUB6 is not set
CONFIG_SERIAL_CORE=y
CONFIG_UNIX98_PTYS=y
CONFIG_UNIX98_PTY_COUNT=256
#
# I2C support
#
# CONFIG_I2C is not set
#
# L3 serial bus support
#
# CONFIG_L3 is not set
# CONFIG_L3_ALGOBIT is not set
# CONFIG_L3_BIT_SA1100_GPIO is not set
# CONFIG_L3_SA1111 is not set
# CONFIG_BIT_SA1100_GPIO is not set
#
# Mice
#
# CONFIG_BUSMOUSE is not set
# CONFIG_MOUSE is not set
#
# Joysticks
#
# CONFIG_INPUT_GAMEPORT is not set
# CONFIG_QIC02_TAPE is not set
# CONFIG_IPMI_HANDLER is not set
# CONFIG_IPMI_PANIC_EVENT is not set
# CONFIG_IPMI_DEVICE_INTERFACE is not set
# CONFIG_IPMI_KCS is not set
# CONFIG_IPMI_WATCHDOG is not set
#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
# CONFIG_SCx200 is not set
# CONFIG_SCx200_GPIO is not set
# CONFIG_AMD_PM768 is not set
# CONFIG_NVRAM is not set
# CONFIG_RTC is not set
CONFIG_PSIONW_RTC=y
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
# CONFIG_AGP is not set
#
# Direct Rendering Manager (XFree86 DRI support)
#
# CONFIG_DRM is not set
#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set
#
# File systems
#
# CONFIG_QUOTA is not set
# CONFIG_QFMT_V2 is not set
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
# CONFIG_REISERFS_FS is not set
# CONFIG_REISERFS_CHECK is not set
# CONFIG_REISERFS_PROC_INFO is not set
# CONFIG_ADFS_FS is not set
# CONFIG_ADFS_FS_RW is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BEFS_DEBUG is not set
# CONFIG_BFS_FS is not set
# CONFIG_EXT3_FS is not set
# CONFIG_JBD is not set
# CONFIG_JBD_DEBUG is not set
# CONFIG_FAT_FS is not set
# CONFIG_MSDOS_FS is not set
# CONFIG_UMSDOS_FS is not set
# CONFIG_VFAT_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_JFFS_FS is not set
# CONFIG_JFFS2_FS is not set
# CONFIG_CRAMFS is not set
CONFIG_SQUASHFS=y
# CONFIG_TMPFS is not set
CONFIG_RAMFS=y
# CONFIG_ISO9660_FS is not set
# CONFIG_JOLIET is not set
# CONFIG_ZISOFS is not set
# CONFIG_JFS_FS is not set
# CONFIG_JFS_DEBUG is not set
# CONFIG_JFS_STATISTICS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_NTFS_FS is not set
# CONFIG_NTFS_RW is not set
# CONFIG_HPFS_FS is not set
CONFIG_PROC_FS=y
# CONFIG_DEVFS_FS is not set
# CONFIG_DEVFS_MOUNT is not set
# CONFIG_DEVFS_DEBUG is not set
CONFIG_DEVPTS_FS=y
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX4FS_RW is not set
# CONFIG_ROMFS_FS is not set
CONFIG_EXT2_FS=y
# CONFIG_SYSV_FS is not set
# CONFIG_UDF_FS is not set
# CONFIG_UDF_RW is not set
# CONFIG_UFS_FS is not set
# CONFIG_UFS_FS_WRITE is not set
# CONFIG_XFS_FS is not set
# CONFIG_XFS_QUOTA is not set
# CONFIG_XFS_RT is not set
# CONFIG_XFS_TRACE is not set
# CONFIG_XFS_DEBUG is not set
#
# Network File Systems
#
# CONFIG_CODA_FS is not set
# CONFIG_INTERMEZZO_FS is not set
# CONFIG_NFS_FS is not set
# CONFIG_NFS_V3 is not set
# CONFIG_NFS_DIRECTIO is not set
# CONFIG_ROOT_NFS is not set
# CONFIG_NFSD is not set
# CONFIG_NFSD_V3 is not set
# CONFIG_NFSD_TCP is not set
# CONFIG_SUNRPC is not set
# CONFIG_LOCKD is not set
# CONFIG_SMB_FS is not set
# CONFIG_NCP_FS is not set
# CONFIG_NCPFS_PACKET_SIGNING is not set
# CONFIG_NCPFS_IOCTL_LOCKING is not set
# CONFIG_NCPFS_STRONG is not set
# CONFIG_NCPFS_NFS_NS is not set
# CONFIG_NCPFS_OS2_NS is not set
# CONFIG_NCPFS_SMALLDOS is not set
# CONFIG_NCPFS_NLS is not set
# CONFIG_NCPFS_EXTRAS is not set
# CONFIG_ZISOFS_FS is not set
#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
# CONFIG_OSF_PARTITION is not set
# CONFIG_AMIGA_PARTITION is not set
# CONFIG_ATARI_PARTITION is not set
# CONFIG_MAC_PARTITION is not set
# CONFIG_MSDOS_PARTITION is not set
# CONFIG_LDM_PARTITION is not set
# CONFIG_SGI_PARTITION is not set
# CONFIG_ULTRIX_PARTITION is not set
# CONFIG_SUN_PARTITION is not set
# CONFIG_EFI_PARTITION is not set
# CONFIG_SMB_NLS is not set
# CONFIG_NLS is not set
#
# Console drivers
#
CONFIG_PC_KEYMAP=y
# CONFIG_VGA_CONSOLE is not set
#
# Frame-buffer support
#
CONFIG_FB=y
CONFIG_DUMMY_CONSOLE=y
# CONFIG_FB_ACORN is not set
# CONFIG_FB_ANAKIN is not set
# CONFIG_FB_CLPS711X is not set
CONFIG_FB_PSIONW=y
# CONFIG_FB_SA1100 is not set
# CONFIG_FB_DBMX1 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_VIRTUAL is not set
CONFIG_FBCON_ADVANCED=y
CONFIG_FBCON_MFB=y
CONFIG_FBCON_CFB2=y
CONFIG_FBCON_CFB4=y
# CONFIG_FBCON_CFB8 is not set
# CONFIG_FBCON_CFB16 is not set
# CONFIG_FBCON_CFB24 is not set
# CONFIG_FBCON_CFB32 is not set
# CONFIG_FBCON_AFB is not set
# CONFIG_FBCON_ILBM is not set
# CONFIG_FBCON_IPLAN2P2 is not set
# CONFIG_FBCON_IPLAN2P4 is not set
# CONFIG_FBCON_IPLAN2P8 is not set
# CONFIG_FBCON_MAC is not set
# CONFIG_FBCON_VGA_PLANES is not set
# CONFIG_FBCON_VGA is not set
# CONFIG_FBCON_HGA is not set
# CONFIG_FBCON_FONTWIDTH8_ONLY is not set
CONFIG_FBCON_FONTS=y
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
# CONFIG_FONT_SUN8x16 is not set
# CONFIG_FONT_SUN12x22 is not set
# CONFIG_FONT_6x11 is not set
# CONFIG_FONT_PEARL_8x8 is not set
# CONFIG_FONT_ACORN_8x8 is not set
#
# Sound
#
CONFIG_SOUND=y
# CONFIG_SOUND_ALI5455 is not set
# CONFIG_SOUND_BT878 is not set
# CONFIG_SOUND_CMPCI is not set
# CONFIG_SOUND_EMU10K1 is not set
# CONFIG_MIDI_EMU10K1 is not set
# CONFIG_SOUND_FUSION is not set
# CONFIG_SOUND_CS4281 is not set
# CONFIG_SOUND_ES1370 is not set
# CONFIG_SOUND_ES1371 is not set
# CONFIG_SOUND_ESSSOLO1 is not set
# CONFIG_SOUND_MAESTRO is not set
# CONFIG_SOUND_MAESTRO3 is not set
# CONFIG_SOUND_FORTE is not set
# CONFIG_SOUND_ICH is not set
# CONFIG_SOUND_RME96XX is not set
# CONFIG_SOUND_SONICVIBES is not set
# CONFIG_SOUND_TRIDENT is not set
# CONFIG_SOUND_MSNDCLAS is not set
# CONFIG_SOUND_MSNDPIN is not set
# CONFIG_SOUND_VIA82CXXX is not set
# CONFIG_MIDI_VIA82CXXX is not set
CONFIG_SOUND_PSIONW=y
# CONFIG_SOUND_OSS is not set
# CONFIG_SOUND_VIDC is not set
# CONFIG_SOUND_WAVEARTIST is not set
# CONFIG_SOUND_TVMIXER is not set
# CONFIG_SOUND_AD1980 is not set
# CONFIG_SOUND_WM97XX is not set
#
# Multimedia Capabilities Port drivers
#
# CONFIG_MCP is not set
# CONFIG_MCP_SA1100 is not set
# CONFIG_MCP_UCB1200 is not set
# CONFIG_MCP_UCB1200_AUDIO is not set
# CONFIG_MCP_UCB1200_TS is not set
#
# USB support
#
# CONFIG_USB is not set
#
# Support for USB gadgets
#
# CONFIG_USB_GADGET is not set
#
# Bluetooth support
#
# CONFIG_BLUEZ is not set
#
# Kernel hacking
#
CONFIG_FRAME_POINTER=y
CONFIG_DEBUG_USER=y
# CONFIG_DEBUG_INFO is not set
# CONFIG_NO_PGT_CACHE is not set
CONFIG_DEBUG_KERNEL=y
# CONFIG_DEBUG_SLAB is not set
CONFIG_MAGIC_SYSRQ=y
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_WAITQ is not set
# CONFIG_DEBUG_BUGVERBOSE is not set
# CONFIG_DEBUG_ERRORS is not set
# CONFIG_DEBUG_LL is not set
# CONFIG_DEBUG_DC21285_PORT is not set
# CONFIG_DEBUG_CLPS711X_UART2 is not set
#
# Library routines
#
# CONFIG_CRC32 is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y

+ 0
- 37
target/psion-pda/pkg_links.conf

@ -1,37 +0,0 @@
# --- T2-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# T2 SDE: target/psion-pda/pkg_links.conf
# Copyright (C) 2004 - 2006 The T2 SDE Project
#
# More information can be found in the files COPYING and README.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License. A copy of the
# GNU General Public License can be found in the file COPYING.
# --- T2-COPYRIGHT-NOTE-END ---
# we strip away languages, fonts, codepages, ...
# we need it damn small -ReneR
embedded_links_pm()
{
# srink embedded data
(cd Unicode ; ./gen)
(cd graphics ; make
rm -rf font/{century,symbol,japanese}*
./generate_font ; mv -fv font_include.c ..
)
}
hook_add preconf 5 "sed -i 's/^image_formats=.*/image_formats=/' configure"
hook_add preconf 6 "sed -i '/{.*translation/ { /english/!d }' language.inc"
hook_add premake 6 "embedded_links_pm"
var_append confopt ' ' '--enable-graphics --enable-debuglevel=0'
var_append confopt ' ' '--disable-javascript --without-ssl'
var_append confopt ' ' '--without-libtiff'
var_append confopt ' ' '--without-svgalib --without-x --without-directfb --without-sdl'

+ 0
- 186
target/psion-pda/pkg_links.patch

@ -1,186 +0,0 @@
# --- T2-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# T2 SDE: target/psion-pda/pkg_links.patch
# Copyright (C) 2004 - 2006 The T2 SDE Project
#
# More information can be found in the files COPYING and README.
#
# This patch file is dual-licensed. It is available under the license the
# patched project is licensed under, as long as it is an OpenSource license
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
# of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
# --- T2-COPYRIGHT-NOTE-END ---
Well - the patches does multiple things:
It fixes the genertor helpers to work with recent libraries and tools and on
non-x86 arches to be able to regenerate and thus strip a lot of stuff.
- Rene Rebe <rene@exactcode.de>
diff -ur links-2.1pre16/Unicode/gen-cp links-2.1pre16-hacked/Unicode/gen-cp
--- links-2.1pre16/Unicode/gen-cp 2002-11-03 11:10:38.000000000 +0100
+++ links-2.1pre16-hacked/Unicode/gen-cp 2005-02-28 00:29:09.433976128 +0100
@@ -10,17 +10,17 @@
echo -n $i' ' 1>&2
echo
echo 'struct table_entry table_'$i' [] = {'
- tail +3 $i.cp | sed 's/#.*$//' | grep '^0x[89a-zA-Z]' | sed 's/[ ][ ]*/ /g' | sed 's/[ ]*$/ },/' | sed 's/ /, /' | sed 's/^[ ]*/ { /' | grep '.*,.*,'
+ tail -n +3 $i.cp | sed 's/#.*$//' | grep '^0x[89a-zA-Z]' | sed 's/[ ][ ]*/ /g' | sed 's/[ ]*$/ },/' | sed 's/ /, /' | sed 's/^[ ]*/ { /' | grep '.*,.*,'
echo ' { 0, 0 }'
echo '};'
echo
- echo 'unsigned char *aliases_'$i' [] = {'`head -2 $i.cp | tail +2`', NULL };'
+ echo 'unsigned char *aliases_'$i' [] = {'`head -n 2 $i.cp | tail -n +2`', NULL };'
n=`expr $n + 1`
done
echo
echo 'struct codepage_desc codepages [] = {'
for i in $codepages; do
- echo ' { "'`head -1 $i.cp`'", aliases_'$i', table_'$i' },'
+ echo ' { "'`head -n 1 $i.cp`'", aliases_'$i', table_'$i' },'
done
echo ' { NULL, NULL, NULL }'
echo '};'
diff -ur links-2.1pre16/Unicode/index.txt links-2.1pre16-hacked/Unicode/index.txt
--- links-2.1pre16/Unicode/index.txt 2002-10-14 11:13:16.000000000 +0200
+++ links-2.1pre16-hacked/Unicode/index.txt 2005-02-28 00:27:04.527964728 +0100
@@ -1,35 +1,4 @@
7bit
8859_1
-8859_2
-8859_3
-8859_4
-8859_5
-8859_6
-8859_7
-8859_8
-8859_9
-8859_10
-8859_13
-8859_14
8859_15
-8859_16
-cp1250
-cp1251
-cp1252
-cp1256
-cp1257
-cp437
-cp737
-cp850
-cp852
-cp866
-cp1125
-macroman
-mac_lat2
-kamen
-koi8_r
-koi8_u
-koi8_ru
-tcvn5712
-viscii
utf_8
--- links-2.1pre16/configure 2005-01-22 21:54:20.000000000 +0100
+++ links-2.1pre16-hacked/configure 2005-02-17 23:17:46.000000000 +0100
@@ -813,7 +813,7 @@
AUTOCONF="./missing autoconf"
AUTOMAKE="./missing automake"
AUTOHEADER="./missing autoheader"
-image_formats="GIF PNG XBM"
+image_formats=""
--- links-2.1pre16/graphics/Makefile 2003-08-17 02:25:49.000000000 +0200
+++ links-2.1pre16-hacked/graphics/Makefile 2005-02-24 01:10:59.000000000 +0100
@@ -7,10 +7,10 @@
rm -f improcess gepns core pbm2png clip generate_font arrow
improcess: improcess.c
- gcc -o improcess $(CFLAGS) $(LDFLAFGS) -lpng improcess.c
+ gcc -o improcess $(CFLAGS) $(LDFLAFGS) -lpng -lz -lm improcess.c
pbm2png: pbm2png.c
- gcc -o pbm2png $(CFLAGS) $(LDFLAGS) -lpng pbm2png.c
+ gcc -o pbm2png $(CFLAGS) $(LDFLAGS) -lpng -lz -lm pbm2png.c
genps: genps.c
@@ -20,4 +20,4 @@
gcc -o generate_font -lm -lpng -lz $(CFLAGS) $(LDFLAGS) generate_font.c
arrow: arrow.c
- gcc -o arrow $(CFLAGS) $(LDFLAGS) arrow.c -lpng
+ gcc -o arrow $(CFLAGS) $(LDFLAGS) arrow.c -lpng -lz -lm
--- links-2.1pre16/graphics/pbm2png.c 2002-05-05 22:47:32.000000000 +0200
+++ links-2.1pre16-hacked/graphics/pbm2png.c 2005-02-24 01:10:24.000000000 +0100
@@ -149,14 +149,14 @@
sprintf(string,"%s%d.html",basename_,index);
f=fopen(string,"w");
- fprintf(f,"<html><head><title>%s</title></head><body bgcolor=\"#000000\" text=\"#00ff00\" link=\"#ffff00\" vlink=\"#00ffff\"
+ fprintf(f,"<html><head><title>%s</title></head><body bgcolor=\"#000000\" text=\"#00ff00\" link=\"#ffff00\" vlink=\"#00ffff\"\
alink=\"#ffff00\">\n",titlestring);
fprintf(f,"<h1>%s, Page %d</h1>\n",titlestring,index+pageoffset);
fprintf(f,"<p><table border=0 cellspacing=0 cellpadding=2><tr>");
fprintf(f,"<td valign=\"top\"><table border=0 cellpadding=0 cellspacing=0><tr><td>");
if (index)
{
- fprintf(f,"<a href=\"%s%d.html\"><img src=\"left.png\" border=0
+ fprintf(f,"<a href=\"%s%d.html\"><img src=\"left.png\" border=0\
></a>\n",basename_,index-1);
}
else
@@ -166,17 +166,17 @@
fprintf(f,"</td><td>");
if (index<filenumber-1)
{
- fprintf(f,"<a href=\"%s%d.html\">
+ fprintf(f,"<a href=\"%s%d.html\">\
<img src=\"right.png\" border=0></a>\n",basename_,index+1);
}
else
{
fprintf(f,"<img src=\"right.png\" border=0>\n");
}
- fprintf(f,"</td></tr><tr><td colspan=2><a href=\"index.html\">
+ fprintf(f,"</td></tr><tr><td colspan=2><a href=\"index.html\">\
<img src=\"idx.png\" border=0 ></a></td>");
fprintf(f,"</tr></table>");
- fprintf(f,"</td><td><img src=\"%s%d.png\" border=\"0\"
+ fprintf(f,"</td><td><img src=\"%s%d.png\" border=\"0\"\
></td>\n</tr></table>",basename_,index);
fprintf(f,"</body></html>");
fclose(f);
@@ -426,7 +426,7 @@
int a,z;
if (argc<7){
- fprintf(stderr,"Usage: pbm2png <hundred_dpi> <basename_> <titlestring>
+ fprintf(stderr,"Usage: pbm2png <hundred_dpi> <basename_> <titlestring>\
<bottom_html_code> <pageoffset> <ifname> [starting_filenumber]\n");
return 0;
}
--- links-2.1pre16/language.inc 2005-01-22 21:51:55.000000000 +0100
+++ links-2.1pre16-hacked/language.inc 2005-02-24 00:51:30.000000000 +0100
@@ -513,6 +513,7 @@
{ 0, NULL }
};
+#ifdef WANT_NLS
struct translation translation_belarusian [] = {
{ 0, NULL },
{T__CHAR_SET, "koi8-ru" },
@@ -16416,6 +16417,8 @@
{ 0, NULL }
};
+#endif
+
struct translation_desc translations [] = {
{ translation_english },
{ translation_belarusian },

+ 0
- 21
target/psion-pda/pkg_linux24-psionw.conf

@ -1,21 +0,0 @@
# --- T2-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# T2 SDE: target/psion-pda/pkg_linux24-psionw.conf
# Copyright (C) 2004 - 2006 The T2 SDE Project
#
# More information can be found in the files COPYING and README.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License. A copy of the
# GNU General Public License can be found in the file COPYING.
# --- T2-COPYRIGHT-NOTE-END ---
[ -e $confdir/$pkg.conf ] && . $confdir/$pkg.conf
hook_add premake 5 "cat $base/target/$target/kernel.conf >> .config"
hook_add inmake 5 "eval $MAKE $makeopt Image ;\
cp -vf arch/arm/boot/Image \
$root/boot/Image_\${lx_kernelrelease}"

+ 0
- 3
target/psion-pda/profile

@ -1,3 +0,0 @@
PATH="/bin:/sbin:/usr/bin:/usr/sbin"

+ 0
- 5
target/psion-pda/rootfs/etc/fstab

@ -1,5 +0,0 @@
none /dev/pts devpts defaults
none /dev/shm ramfs defaults
/proc /proc proc defaults
none /sys sysfs defaults
#none /tmp tmpfs defaults

+ 0
- 1
target/psion-pda/rootfs/etc/group

@ -1 +0,0 @@
root:x:0:

+ 0
- 7
target/psion-pda/rootfs/etc/issue

@ -1,7 +0,0 @@
T2 based Psion PDA distribution. http://www.t2-project.org/
\t \d -- \U online -- line [\l].
Welcome to \n (T2 - Kernel \r).
-

+ 0
- 1
target/psion-pda/rootfs/etc/minit/hostname/params

@ -1 +0,0 @@
pda

+ 0
- 1
target/psion-pda/rootfs/etc/passwd

@ -1 +0,0 @@
root::0:0:root:/root:/bin/sh

Loading…
Cancel
Save