mirror of
https://github.com/rxrbln/t2sde.git
synced 2025-05-09 04:31:26 +08:00
* delete target/art2/linux26 and xen
git-svn-id: https://svn.exactcode.de/t2/trunk@74409 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
This commit is contained in:
parent
1acf1a4056
commit
aa5f56487e
@ -1,104 +0,0 @@
|
||||
# --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||||
#
|
||||
# T2 SDE: package/.../linux26/12-conf-hacks.patch
|
||||
# Copyright (C) 2004 - 2006 The T2 SDE Project
|
||||
# Copyright (C) 1998 - 2003 ROCK Linux 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 ---
|
||||
|
||||
Set all unset options to module. Needed by the T2 / ROCK Linux kernel
|
||||
configuration.
|
||||
|
||||
Initally written by Clifford Wold <clifford@clifford.at> and adapted
|
||||
for various new 2.5/2.6 kernels by Rene Rebe <rene@exactcode.de>.
|
||||
|
||||
--- ./scripts/kconfig/Makefile.orig 2006-03-19 19:38:46.080184500 +0100
|
||||
+++ ./scripts/kconfig/Makefile 2006-03-19 20:01:55.859040250 +0100
|
||||
@@ -2,7 +2,7 @@
|
||||
# Kernel configuration targets
|
||||
# These targets are used from top-level makefile
|
||||
|
||||
-PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config
|
||||
+PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig no2modconfig update-po-config
|
||||
|
||||
xconfig: $(obj)/qconf
|
||||
$< arch/$(ARCH)/Kconfig
|
||||
@@ -56,6 +56,9 @@
|
||||
allmodconfig: $(obj)/conf
|
||||
$< -m arch/$(ARCH)/Kconfig
|
||||
|
||||
+no2modconfig: scripts/kconfig/conf
|
||||
+ $< -M arch/$(ARCH)/Kconfig
|
||||
+
|
||||
defconfig: $(obj)/conf
|
||||
ifeq ($(KBUILD_DEFCONFIG),)
|
||||
$< -d arch/$(ARCH)/Kconfig
|
||||
@@ -77,6 +80,7 @@
|
||||
@echo ' randconfig - New config with random answer to all options'
|
||||
@echo ' defconfig - New config with default answer to all options'
|
||||
@echo ' allmodconfig - New config selecting modules when possible'
|
||||
+ @echo ' no2modconfig - New config selecting modules for disabled options'
|
||||
@echo ' allyesconfig - New config where all options are accepted with yes'
|
||||
@echo ' allnoconfig - New config where all options are answered with no'
|
||||
|
||||
--- linux-2.6.17/scripts/kconfig/conf.c 2006-06-18 03:49:35.000000000 +0200
|
||||
+++ linux26.macbook/scripts/kconfig/conf.c 2006-07-22 11:57:17.000000000 +0200
|
||||
@@ -21,6 +21,7 @@
|
||||
ask_all,
|
||||
ask_new,
|
||||
ask_silent,
|
||||
+ set_no2mod,
|
||||
set_default,
|
||||
set_yes,
|
||||
set_mod,
|
||||
@@ -83,6 +84,15 @@
|
||||
}
|
||||
|
||||
switch (input_mode) {
|
||||
+ case set_no2mod:
|
||||
+ if (type == S_TRISTATE &&
|
||||
+ sym_get_tristate_value(sym) == no) {
|
||||
+ fprintf(stderr, "Setting %s to 'm'.\n", sym->name);
|
||||
+ line[0] = 'm';
|
||||
+ line[1] = '\n';
|
||||
+ line[2] = 0;
|
||||
+ break;
|
||||
+ }
|
||||
case set_no:
|
||||
case set_mod:
|
||||
case set_yes:
|
||||
@@ -372,6 +382,7 @@
|
||||
break;
|
||||
case set_random:
|
||||
def = (random() % cnt) + 1;
|
||||
+ case set_no2mod:
|
||||
case set_default:
|
||||
case set_yes:
|
||||
case set_mod:
|
||||
@@ -523,6 +534,9 @@
|
||||
case 'm':
|
||||
input_mode = set_mod;
|
||||
break;
|
||||
+ case 'M':
|
||||
+ input_mode = set_no2mod;
|
||||
+ break;
|
||||
case 'y':
|
||||
input_mode = set_yes;
|
||||
break;
|
||||
@@ -565,6 +579,7 @@
|
||||
}
|
||||
case ask_all:
|
||||
case ask_new:
|
||||
+ case set_no2mod:
|
||||
conf_read(NULL);
|
||||
break;
|
||||
case set_no:
|
@ -1,16 +0,0 @@
|
||||
. $base/package/*/linux24/linux24.conf
|
||||
|
||||
patchfiles=""
|
||||
|
||||
var_append patchfiles ' ' "`ls $confdir/*.patch`"
|
||||
|
||||
|
||||
patch_customizer()
|
||||
{
|
||||
mkdir $builddir/kernel-patches
|
||||
tar -v $taropt $archdir/broadcom-patches-26.tar.bz2 -C $builddir/kernel-patches
|
||||
var_append patchfiles ' ' "`ls $builddir/kernel-patches/*.patch`"
|
||||
}
|
||||
|
||||
|
||||
hook_add prepatch 5 "patch_customizer"
|
@ -1,37 +0,0 @@
|
||||
[COPY] --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||||
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||||
[COPY]
|
||||
[COPY] T2 SDE: package/.../linux26/linux26.desc
|
||||
[COPY] Copyright (C) 2004 - 2007 The T2 SDE Project
|
||||
[COPY] Copyright (C) 1998 - 2003 ROCK Linux Project
|
||||
[COPY]
|
||||
[COPY] More information can be found in the files COPYING and README.
|
||||
[COPY]
|
||||
[COPY] This program is free software; you can redistribute it and/or modify
|
||||
[COPY] it under the terms of the GNU General Public License as published by
|
||||
[COPY] the Free Software Foundation; version 2 of the License. A copy of the
|
||||
[COPY] GNU General Public License can be found in the file COPYING.
|
||||
[COPY] --- T2-COPYRIGHT-NOTE-END ---
|
||||
|
||||
[I] The Linux kernel 2.6 precompiled kernel binary image and modules
|
||||
|
||||
[T] This package contains a precompiled kernel image and the modules.
|
||||
|
||||
[U] http://www.kernel.org/
|
||||
|
||||
[A] Linus Torvalds <torvalds@osdl.org>
|
||||
[M] Rene Rebe <rene@t2-project.org>
|
||||
|
||||
[C] base/kernel
|
||||
[F] KERNEL
|
||||
|
||||
[E] group kernel-bin
|
||||
|
||||
[L] GPL
|
||||
[S] Stable
|
||||
[V] 2.6.19.2
|
||||
[P] X -1---5---9 102.060
|
||||
|
||||
[SRC] linux-
|
||||
[D] 260504030 linux-2.6.19.2.tar.bz2 http://ftp.kernel.org/pub/linux/kernel/v2.6/
|
||||
[D] 2071869337 broadcom-patches-26.tar.bz2 http://koti.japo.fi/~pmika/
|
@ -1,31 +0,0 @@
|
||||
# --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||||
#
|
||||
# T2 SDE: target/embedded/build.sh
|
||||
# Copyright (C) 2004 - 2005 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 ---
|
||||
|
||||
pkgloop
|
||||
|
||||
imagelocation="$build_toolchain/rootfs"
|
||||
echo "COPY PATH"
|
||||
echo "$base/target/$target/rootfs/etc/* $root/etc"
|
||||
echo "$base/target/$target/rootfs/etc/init.d/* $root/etc/init.d"
|
||||
|
||||
#cp $base/target/$target/rootfs/etc/* $root/etc
|
||||
#cp -R $base/target/$target/rootfs/etc/init.d/* $root/etc/init.d
|
||||
|
||||
. $base/target/$target/build_image.sh
|
||||
|
||||
#. $base/target/$target/makedev.sh
|
||||
|
||||
|
||||
echo_status "Done!"
|
||||
|
@ -1,97 +0,0 @@
|
||||
#!/bin/bash
|
||||
# --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||||
#
|
||||
# T2 SDE: target/embedded/build_image.sh
|
||||
# Copyright (C) 2004 - 2005 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 ---
|
||||
|
||||
. $base/misc/target/functions.in
|
||||
|
||||
set -e
|
||||
|
||||
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\/skel/ d;
|
||||
/^etc\/opt/ d;
|
||||
/^etc\/conf/ d;
|
||||
/^etc\/rc.d/ d;
|
||||
|
||||
/^opt/ 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;
|
||||
|
||||
' > 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
|
||||
copy_from_source $base/target/$target/rootfs .
|
||||
|
||||
echo "Creating links for identical files ..."
|
||||
link_identical_files
|
||||
|
||||
echo "Creating root filesystem image (squashfs) ..."
|
||||
|
||||
if [ "$arch_bigendian" = "yes" ]; then
|
||||
sqfsopts="-be"
|
||||
else
|
||||
sqfsopts="-le"
|
||||
fi
|
||||
|
||||
mksquashfs $imagelocation{,.squashfs} $sqfsopts > /dev/null
|
||||
|
||||
du -sh $imagelocation{,.squashfs}
|
||||
|
||||
echo "The image is located at $imagelocation.squasfs."
|
||||
|
@ -1,10 +0,0 @@
|
||||
X CONFIG_INIT
|
||||
O CONFIG_DEBUG_INIT
|
||||
O CONFIG_FEATURE_USE_INITTAB
|
||||
O CONFIG_FEATURE_INIT_SCTTY
|
||||
O CONFIG_FEATURE_INIT_SYSLOG
|
||||
O CONFIG_FEATURE_EXTRA_QUIET
|
||||
O CONFIG_FEATURE_INIT_COREDUMPS
|
||||
O CONFIG_FEATURE_INITRD
|
||||
X CONFIG_HALT
|
||||
O CONFIG_MESG
|
@ -1,73 +0,0 @@
|
||||
# --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||||
#
|
||||
# T2 SDE: target/embedded/config.in
|
||||
# Copyright (C) 2004 - 2005 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: XEN based minimal OS for diskless servers (under development!)
|
||||
|
||||
embedded_pkgfilter() {
|
||||
sed '
|
||||
# mangle all packages to only build them in the cross stage (1)
|
||||
s,^. \(.\)[^ ]*,X \11--------,;
|
||||
# we need those for some broken packages that need updating
|
||||
/ automake / { s,^. [^ ]*,X 0---------,; p; d; }
|
||||
/ autoconf / { s,^. [^ ]*,X 0---------,; p; d; }
|
||||
/ libtool / { s,^. [^ ]*,X 0---------,; p; d; }
|
||||
|
||||
/ binutils / { s,^. [^ ]*,X 0---------,; p; d; }
|
||||
/ gcc / { s,^. [^ ]*,X 0---------,; p; d; }
|
||||
/ squashfs-tools / { s,^. [^ ]*,X 0---------,; p; d; }
|
||||
'
|
||||
}
|
||||
|
||||
pkgfilter embedded_pkgfilter
|
||||
|
||||
# SDECFGSET_IMAGE='none'
|
||||
SDECFGSET_PKGFILE_TYPE='none'
|
||||
SDECFGSET_PKGFILE_VER=0
|
||||
SDECFGSET_EXPERT='1'
|
||||
|
||||
# SDECFGSET_LIBC='glibc'
|
||||
|
||||
SDECFGSET_INIT='busybox'
|
||||
|
||||
# kernel options
|
||||
SDECFGSET_PKG_LINUX_CUSTCONFIG='1'
|
||||
# SDECFGSET_PKG_LINUX_CUSTCONFIG_FILE="$base/$target"
|
||||
SDECFGSET_PKG_LINUX_CONFIG_STYLE='none'
|
||||
# SDECFGSET_PKG_LINUX_USE26MODTOOLS='1'
|
||||
# SDECFGSET_PKG_LINUX_ACPI_INITRD='0'
|
||||
|
||||
SDECFGSET_OPT='size'
|
||||
|
||||
#Architecture
|
||||
# SDECFGSET_X86_OPT='pentium2'
|
||||
|
||||
SDECFGSET_DO_REBUILD_STAGE=0
|
||||
# SDECFGSET_DISABLE_NLS=1
|
||||
|
||||
SDECFGSET_PKG_BUSYBOX_SYMLINKS=1
|
||||
|
||||
|
||||
|
||||
SDECFG_TARGET='xen'
|
||||
|
||||
# SDECFG_IMAGE='none'
|
||||
# SDECFG_ARCH='x86'
|
||||
|
||||
# SDECFG_X86_OPT='pentium2'
|
||||
|
||||
SDECFG_X86_OPT_XEN='0'
|
||||
|
||||
SDECFG_PKG_DROPBEAR_CLIENTONLY='0'
|
||||
|
||||
SDECFG_PARANOIA_CHECK='1'
|
1497
target/xen/linux.cfg
1497
target/xen/linux.cfg
File diff suppressed because it is too large
Load Diff
@ -1,20 +0,0 @@
|
||||
|
||||
[TIMESTAMP] 1133855568 Tue Dec 6 08:52:48 2005
|
||||
[BUILDTIME] 20 (9)
|
||||
[SIZE] 6.59 MB, 1198 files
|
||||
|
||||
[DEP] 00-dirtree
|
||||
[DEP] bash
|
||||
[DEP] binutils
|
||||
[DEP] bzip2
|
||||
[DEP] coreutils
|
||||
[DEP] diffutils
|
||||
[DEP] findutils
|
||||
[DEP] gcc
|
||||
[DEP] glibc
|
||||
[DEP] grep
|
||||
[DEP] make
|
||||
[DEP] patch
|
||||
[DEP] sed
|
||||
[DEP] sysfiles
|
||||
[DEP] tar
|
@ -1,41 +0,0 @@
|
||||
# --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||||
#
|
||||
# T2 SDE: package/.../linux-header/linux-header.conf
|
||||
# Copyright (C) 2004 - 2007 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 ---
|
||||
|
||||
. $base/package/*/*/linux-conf.in
|
||||
|
||||
if atstage toolchain; then
|
||||
root="$sysroot"
|
||||
fi
|
||||
|
||||
main_lx_header() {
|
||||
lx_patch
|
||||
|
||||
# we need to create an config since this generates some files
|
||||
yes '' |
|
||||
eval $MAKE $makeopt oldconfig > /dev/null
|
||||
|
||||
eval $MAKE $makeopt include/asm
|
||||
|
||||
# garuanteed newer than system to really install them
|
||||
find include -type f | xargs touch
|
||||
|
||||
# the empty variables prevent removal of existing headers!
|
||||
eval $MAKE $makeopt INSTALL_HDR_PATH=$root/$prefix \
|
||||
oldheaders= unwanted= headers_install
|
||||
}
|
||||
|
||||
autopatch=0 ; createdocs=0
|
||||
|
||||
custmain="main_lx_header"
|
||||
# patchfiles="$base/package/$repository/linux$treever/*.patch $patchfiles"
|
@ -1,41 +0,0 @@
|
||||
[COPY] --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||||
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||||
[COPY]
|
||||
[COPY] T2 SDE: package/.../linux-header/linux-header.desc
|
||||
[COPY] Copyright (C) 2004 - 2008 The T2 SDE Project
|
||||
[COPY] Copyright (C) 1998 - 2003 ROCK Linux Project
|
||||
[COPY]
|
||||
[COPY] More information can be found in the files COPYING and README.
|
||||
[COPY]
|
||||
[COPY] This program is free software; you can redistribute it and/or modify
|
||||
[COPY] it under the terms of the GNU General Public License as published by
|
||||
[COPY] the Free Software Foundation; version 2 of the License. A copy of the
|
||||
[COPY] GNU General Public License can be found in the file COPYING.
|
||||
[COPY] --- T2-COPYRIGHT-NOTE-END ---
|
||||
|
||||
[I] "Sanitized" Linux kernel headers
|
||||
|
||||
[T] This package includes the linux kernel headers (include files)
|
||||
[T] needed to compile applications.
|
||||
[T] The files resist in /usr/include/{asm,asm-generic,linux}.
|
||||
|
||||
[U] http://www.kernel.org/
|
||||
|
||||
[A] Linus Torvalds <torvalds@osdl.org>
|
||||
[M] Rene Rebe <rene@t2-project.org>
|
||||
|
||||
[C] base/kernel
|
||||
[F] CROSS DIETLIBC
|
||||
|
||||
[E] group kernel-header
|
||||
|
||||
[L] GPL
|
||||
[S] Stable
|
||||
[V] 2.6.24
|
||||
|
||||
# in theory we only need the initial headers (stage 0) however some arches
|
||||
# generate some and need a compiler to do so (SPARC) so we do rebuild them
|
||||
# in stage 1 ...
|
||||
[P] X 01-------9 100.300
|
||||
|
||||
[D] 4199507737 linux-2.6.24.tar.bz2 http://ftp.kernel.org/pub/linux/kernel/v2.6/
|
@ -1,36 +0,0 @@
|
||||
[COPY] --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||||
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||||
[COPY]
|
||||
[COPY] T2 SDE: package/.../linux26/linux26.desc
|
||||
[COPY] Copyright (C) 2004 - 2007 The T2 SDE Project
|
||||
[COPY] Copyright (C) 1998 - 2003 ROCK Linux Project
|
||||
[COPY]
|
||||
[COPY] More information can be found in the files COPYING and README.
|
||||
[COPY]
|
||||
[COPY] This program is free software; you can redistribute it and/or modify
|
||||
[COPY] it under the terms of the GNU General Public License as published by
|
||||
[COPY] the Free Software Foundation; version 2 of the License. A copy of the
|
||||
[COPY] GNU General Public License can be found in the file COPYING.
|
||||
[COPY] --- T2-COPYRIGHT-NOTE-END ---
|
||||
|
||||
[I] The Linux kernel 2.6 precompiled kernel binary image and modules
|
||||
|
||||
[T] This package contains a precompiled kernel image and the modules.
|
||||
|
||||
[U] http://www.kernel.org/
|
||||
|
||||
[A] Linus Torvalds <torvalds@osdl.org>
|
||||
[M] Rene Rebe <rene@t2-project.org>
|
||||
|
||||
[C] base/kernel
|
||||
[F] KERNEL
|
||||
|
||||
[E] group kernel-bin
|
||||
|
||||
[L] GPL
|
||||
[S] Stable
|
||||
[V] 2.6.23
|
||||
[P] X -1---5---9 102.060
|
||||
|
||||
[SRC] linux-
|
||||
[D] 0 linux-2.6.23.tar.bz2 http://ftp.kernel.org/pub/linux/kernel/v2.6/
|
@ -1,33 +0,0 @@
|
||||
# --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||||
#
|
||||
# T2 SDE: package/.../xen-tools/compile.patch
|
||||
# Copyright (C) 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 ---
|
||||
|
||||
Are we the only folks building those tools?
|
||||
|
||||
- Rene Rebe <rene@exactcode.de>
|
||||
|
||||
--- tools/xenstat/xentop/Makefile 2006-04-07 14:24:59.000000000 +0200
|
||||
+++ tools/xenstat/xentop/Makefile 2006-04-09 16:37:55.634761500 +0200
|
||||
@@ -28,8 +28,8 @@
|
||||
sbindir=$(prefix)/sbin
|
||||
|
||||
CFLAGS += -DGCC_PRINTF -Wall -Werror -I$(XEN_LIBXENSTAT)
|
||||
-LDFLAGS += -L$(XEN_LIBXENSTAT)
|
||||
-LDLIBS += -lxenstat -lncurses
|
||||
+LDFLAGS += -L$(XEN_LIBXENSTAT) -L$(XEN_XENSTORE) -L../../libxc
|
||||
+LDLIBS += -lxenstat -lncurses -lxenstore -lxenctrl
|
||||
|
||||
.PHONY: all
|
||||
all: xentop
|
@ -1,31 +0,0 @@
|
||||
|
||||
[TIMESTAMP] 1159291867 Tue Sep 26 19:31:07 2006
|
||||
[BUILDTIME] 100 (9)
|
||||
[SIZE] 2.48 MB, 369 files
|
||||
|
||||
[DEP] 00-dirtree
|
||||
[DEP] bash
|
||||
[DEP] binutils
|
||||
[DEP] bzip2
|
||||
[DEP] coreutils
|
||||
[DEP] diffutils
|
||||
[DEP] e2fsprogs
|
||||
[DEP] findutils
|
||||
[DEP] gawk
|
||||
[DEP] gcc
|
||||
[DEP] glibc
|
||||
[DEP] grep
|
||||
[DEP] libsdl
|
||||
[DEP] libx11
|
||||
[DEP] libxau
|
||||
[DEP] libxdmcp
|
||||
[DEP] libxext
|
||||
[DEP] linux-header
|
||||
[DEP] make
|
||||
[DEP] ncurses
|
||||
[DEP] patch
|
||||
[DEP] python
|
||||
[DEP] sed
|
||||
[DEP] sysfiles
|
||||
[DEP] tar
|
||||
[DEP] zlib
|
@ -1,17 +0,0 @@
|
||||
# --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||||
#
|
||||
# T2 SDE: package/.../xen-tools/xen-tools.conf
|
||||
# Copyright (C) 2004 - 2005 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 ---
|
||||
|
||||
var_append GCC_WRAPPER_REMOVE " " "-Werror"
|
||||
|
||||
srcdir=xen-*/tools
|
@ -1,38 +0,0 @@
|
||||
[COPY] --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||||
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||||
[COPY]
|
||||
[COPY] T2 SDE: package/.../xen-tools/xen-tools.desc
|
||||
[COPY] Copyright (C) 2004 - 2006 The T2 SDE Project
|
||||
[COPY]
|
||||
[COPY] More information can be found in the files COPYING and README.
|
||||
[COPY]
|
||||
[COPY] This program is free software; you can redistribute it and/or modify
|
||||
[COPY] it under the terms of the GNU General Public License as published by
|
||||
[COPY] the Free Software Foundation; version 2 of the License. A copy of the
|
||||
[COPY] GNU General Public License can be found in the file COPYING.
|
||||
[COPY] --- T2-COPYRIGHT-NOTE-END ---
|
||||
|
||||
[I] Tools for the Xen hypervisor
|
||||
|
||||
[T] Xen is an open-source virtual machine monitor, or hypervisor, developed
|
||||
[T] by the University of Cambridge. Xen provides secure isolation, resource
|
||||
[T] control, quality-of-service guarantees, and live migration of virtual
|
||||
[T] machines. Operating systems must be explicitly modified to run on Xen -
|
||||
[T] this enables Xen to achieve high-performance virtualization.
|
||||
|
||||
[U] http://www.xensource.com/
|
||||
[U] http://xenbits.xensource.com/
|
||||
[U] http://www.cl.cam.ac.uk/Research/SRG/netos/xen/index.html
|
||||
|
||||
[A] Keir Fraser et.al.
|
||||
[M] Rene Rebe <rene@t2-project.org>
|
||||
|
||||
[C] base/system
|
||||
[R] + x86 x86-64 ia64
|
||||
|
||||
[L] GPL
|
||||
[S] Stable
|
||||
[V] 3.2.0
|
||||
[P] X -----5---9 179.300
|
||||
|
||||
[D] X xen-3.2.0.tgz http://bits.xensource.com/oss-xen/release/3.2.0
|
@ -1,32 +0,0 @@
|
||||
# --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||||
#
|
||||
# T2 SDE: package/.../xen-tools/xend.init
|
||||
# Copyright (C) 2006 - 2007 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 ---
|
||||
#
|
||||
# Desc: The XEN backend
|
||||
# Runlevel: 90 rcX
|
||||
#
|
||||
|
||||
main_begin
|
||||
|
||||
block_begin(start, `Starting xend.')
|
||||
# some preparations, otherwise xend will fail if not present
|
||||
mkdir /var/run/xenstored
|
||||
modprobe loop
|
||||
check(`xend start')
|
||||
block_end
|
||||
|
||||
block_begin(stop, `Stopping xend.')
|
||||
check(`xend stop')
|
||||
block_end
|
||||
|
||||
main_end
|
@ -1,54 +0,0 @@
|
||||
O *
|
||||
# These packages needed to compile other packages. Do not remove them!
|
||||
X 00-dirtree
|
||||
X linux-header
|
||||
X linux
|
||||
X binutils
|
||||
X gcc
|
||||
# Xen requirements
|
||||
# -------------------------------------------------------------------------------
|
||||
# Need development install of curses (e.g., libncurses-dev) Is it the same as below?
|
||||
X ncurses
|
||||
X openssl
|
||||
# X dropbear //maybe it can substitute open ssl?
|
||||
X iproute
|
||||
X bridge-utils
|
||||
X udev
|
||||
X zlib
|
||||
# * Development install of x11 (e.g. xorg-x11)
|
||||
X LibX11
|
||||
X python
|
||||
# System programs
|
||||
# --------------------------------------------------------------------------------
|
||||
X busybox
|
||||
X fgetty
|
||||
# Other programs
|
||||
# --------------------------------------------------------------------------------
|
||||
# X squashfs-tools --> error: unable to compile
|
||||
|
||||
X readline
|
||||
X libowfat
|
||||
|
||||
X libpcap
|
||||
|
||||
# X pdksh
|
||||
|
||||
# X arptables
|
||||
# X ebtables
|
||||
# X iptables
|
||||
|
||||
# Disabled for now
|
||||
# X quagga
|
||||
|
||||
# X rsync
|
||||
# X curl
|
||||
|
||||
# X wireless-tools
|
||||
# X hostapd
|
||||
# X hostap-utils
|
||||
# X wpa_supplicant
|
||||
|
||||
# X genext2fs
|
||||
# Unable to compile mtd-tools
|
||||
# X mtd-tools
|
||||
# X lzma
|
@ -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
|
@ -1 +0,0 @@
|
||||
root:x:0:
|
@ -1,23 +0,0 @@
|
||||
mount /proc
|
||||
insmod /usr/realtime/modules/rtai_hal.ko
|
||||
insmod /usr/realtime/modules/rtai_up.ko # or rtailxrt.ko
|
||||
insmod /usr/realtime/modules/rtai_fifos.ko
|
||||
insmod /usr/realtime/modules/rtai_sem.ko
|
||||
insmod /usr/realtime/modules/rtai_mbx.ko
|
||||
insmod /usr/realtime/modules/rtai_msg.ko
|
||||
insmod /usr/realtime/modules/rtai_netrpc.ko ThisNode=”127.0.0.1”
|
||||
insmod /usr/realtime/modules/rtai_shm.ko
|
||||
insmod /usr/realtime/modules/rtai_leds.ko
|
||||
insmod /usr/realtime/modules/rtai_signal.ko
|
||||
insmod /usr/realtime/modules/rtai_tasklets.ko
|
||||
|
||||
modprobe comedi
|
||||
# insmod /usr/lib/modules/2.6.19-dist/comedi/comedi.ko
|
||||
modprobe kcomedilib
|
||||
# insmod /usr/lib/modules/2.6.19-dist/comedi/kcomedilib/kcomedilib.ko
|
||||
modprobe comedi_fc
|
||||
modprobe ni_pcimio
|
||||
# insmod /usr/lib/modules/2.6.19-dist/comedi/drivers/comedi_fc.ko
|
||||
# insmod /usr/lib/modules/2.6.19-dist/comedi/drivers/ni_pcimio.ko
|
||||
insmod /usr/realtime/modules/rtai_comedi.ko
|
||||
/usr/sbin/dropbear
|
@ -1,7 +0,0 @@
|
||||
|
||||
T2 based embedded system. http://www.t2-project.org/
|
||||
|
||||
\t \d -- \U online -- line [\l].
|
||||
|
||||
Welcome to \n (T2 - Kernel \r).
|
||||
-
|
@ -1,4 +0,0 @@
|
||||
mountall
|
||||
hostname
|
||||
ifconfiglo
|
||||
fgetty
|
@ -1 +0,0 @@
|
||||
tts/0
|
@ -1,2 +0,0 @@
|
||||
#!/bin/sh
|
||||
exec /sbin/fgetty $*
|
@ -1,9 +0,0 @@
|
||||
kbd
|
||||
hwclock
|
||||
fgetty/1
|
||||
fgetty/2
|
||||
fgetty/3
|
||||
fgetty/4
|
||||
fgetty/5
|
||||
fgetty/6
|
||||
fgetty/7
|
@ -1 +0,0 @@
|
||||
embedded
|
@ -1 +0,0 @@
|
||||
root::0:0:root:/root:/bin/sh
|
@ -1,7 +0,0 @@
|
||||
|
||||
if [ -w / ] ; then
|
||||
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
||||
else
|
||||
PATH="/usr/local/bin:/usr/bin:/bin"
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user