runnix-commits Mailing List for Runnix (Page 4)
Status: Alpha
Brought to you by:
krisk84
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
|
Feb
|
Mar
|
Apr
(18) |
May
(11) |
Jun
|
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
(8) |
Dec
|
2008 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
(1) |
Feb
(2) |
Mar
(5) |
Apr
|
May
|
Jun
|
Jul
(7) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(47) |
2011 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(9) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: <ppr...@us...> - 2010-02-01 06:12:03
|
Revision: 93 http://runnix.svn.sourceforge.net/runnix/?rev=93&view=rev Author: pprindeville Date: 2010-02-01 06:11:57 +0000 (Mon, 01 Feb 2010) Log Message: ----------- Handy make rules for testing targets and macros, etc. Modified Paths: -------------- trunk/Makefile Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2010-02-01 05:28:42 UTC (rev 92) +++ trunk/Makefile 2010-02-01 06:11:57 UTC (rev 93) @@ -37,6 +37,13 @@ TAR_OPTIONS=$(subst ",, $(BR2_TAR_OPTIONS)) -xf #" +$(eval x$(shell env | grep SHELL)) +ifneq ($(xSHELL),/bin/sh) + ifneq ($(xSHELL),/bin/bash) + $(error This project will only build from within a bash or sh shell.) + endif +endif + ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y) ############################################################# @@ -210,6 +217,38 @@ endif # ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y) +show_targets: var.TARGETS + +show_version: val.ASTVER + +val.%: + @if [ "$(origin $*)" = "undefined" ]; then \ + echo "Undefined!" >&2 ; \ + else \ + echo '$($*)' ; \ + fi + +var.%: + @if [ "$(origin $*)" = "undefined" ]; then \ + echo "Undefined!" >&2 ; \ + else \ + echo '$*='"'"'$($*)'"'" ; \ + fi + +exp.%: + @if [ "$(origin $*)" = "undefined" ]; then \ + echo "$*: Undefined!" 1>& 2 ; \ + else \ + echo '$*:=$($*)' ; \ + fi + +host.%: + @which $* >/dev/null 2>&1 ; \ + if [ $$? != 0 ]; then \ + echo "Host tool missing: $*" >&2 ; \ + exit 1 ; \ + fi + .PHONY: dummy subdirs release distclean clean config oldconfig \ menuconfig tags check test depend defconfig This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ppr...@us...> - 2010-02-01 05:28:48
|
Revision: 92 http://runnix.svn.sourceforge.net/runnix/?rev=92&view=rev Author: pprindeville Date: 2010-02-01 05:28:42 +0000 (Mon, 01 Feb 2010) Log Message: ----------- Script cleanup. Modified Paths: -------------- trunk/target/generic/target_skeleton/runnix Modified: trunk/target/generic/target_skeleton/runnix =================================================================== --- trunk/target/generic/target_skeleton/runnix 2010-01-28 19:09:33 UTC (rev 91) +++ trunk/target/generic/target_skeleton/runnix 2010-02-01 05:28:42 UTC (rev 92) @@ -12,36 +12,35 @@ DRIVES="hda hdb hdc hdd hde hdf hdg hdh sda sdb sdc sdd" do_failure () { -if [ "$SSHPORT" ] -then -mount -t devpts devpts /dev/pts -echo "Generating keys" -/usr/bin/dropbearkey -t rsa -f /tmp/rsa_key -s 1024 -/usr/bin/dropbearkey -t dss -f /tmp/dss_key -s 1024 + if [ -n "$SSHPORT" ]; then + mount -t devpts devpts /dev/pts -if [ "$FAILIP" -a "$FAILNM" -a "$FAILDEV" ] -then -ifconfig $FAILDEV $FAILIP netmask $FAILNM + echo "Generating keys" + dropbearkey -t rsa -f /tmp/rsa_key -s 1024 + dropbearkey -t dss -f /tmp/dss_key -s 1024 -if [ "$FAILGW" ] -then -route del -net default 2> /dev/null -route add -net default gw $FAILGW -fi + if [ -n "$FAILIP" -a -n "$FAILNM" -a -n "$FAILDEV" ]; then + ifconfig $FAILDEV $FAILIP netmask $FAILNM -SSHIP="$FAILIP" -else -SSHIP="$EXTIP" -fi + if [ -n "$FAILGW" ]; then + route del -net default 2> /dev/null + route add -net default gw $FAILGW + fi -touch /var/log/lastlog -touch /var/log/wtmp -echo "Starting dropbear" -/usr/sbin/dropbear -d /tmp/dss_key -r /tmp/rsa_key -E -P /tmp/dropbear.pid -p $SSHPORT -fi + SSHIP="$FAILIP" + else + SSHIP="$EXTIP" + fi -echo "Dropping to shell" -exec /bin/sh + touch /var/log/lastlog + touch /var/log/wtmp + + echo "Starting dropbear" + dropbear -d /tmp/dss_key -r /tmp/rsa_key -E -P /tmp/dropbear.pid -p $SSHPORT + fi + + echo "Dropping to shell" + exec /bin/sh } echo " @@ -54,268 +53,233 @@ CMDLINE=`cat /proc/cmdline` -for x in $DRIVES -do -if `mount -t iso9660 -o ro /dev/${x} $BASE > /dev/null 2>&1` -then -if [ -f $BASE/runnix ] -then -DEVICE=${x} -RODEV=yes -else -umount /dev/${x} -fi -fi +for x in $DRIVES; do + if mount -t iso9660 -o ro /dev/${x} $BASE >/dev/null; then + if [ -f $BASE/runnix ]; then + DEVICE=${x} + RODEV=yes + else + umount /dev/${x} + fi + fi done -for x in $DRIVES -do -if `mount -t vfat /dev/${x}1 $BASE > /dev/null 2>&1` -then -if [ -f $BASE/runnix ] -then -DEVICE=${x} -else -umount /dev/${x}1 -fi -fi +for x in $DRIVES; do + if mount -t vfat /dev/${x}1 $BASE >/dev/null; then + if [ -f $BASE/runnix ]; then + DEVICE=${x} + else + umount /dev/${x}1 + fi + fi done hostname runnix # Loader not found -if [ ! $DEVICE ] -then -echo "Runnix device not found" -exec /bin/sh +if [ -z "$DEVICE" ]; then + echo "Runnix device not found" + exec /bin/sh -i </dev/console fi # get image name -for i in ${CMDLINE} -do -if `echo $i | grep -q "runimg="` -then -RUNIMG=`echo $i | grep "runimg="| sed -e 's/runimg=//'` -fi +for i in $CMDLINE; do + case $i in + runimg=*) + RUNIMG="`echo $i | cut -c8-`" + ;; + esac done -if [ -f $BASE/os/default.conf ] -then -. $BASE/os/default.conf +if [ -f $BASE/os/default.conf ]; then + . $BASE/os/default.conf fi -if `grep -q doshell /proc/cmdline` -then -echo "Dropping to shell" -exec /bin/sh +if grep -q doshell /proc/cmdline; then + echo "Dropping to shell" + exec /bin/sh -i </dev/console fi -if `grep -q dofail /proc/cmdline` -then -do_failure +if grep -q dofail /proc/cmdline; then + do_failure fi -if [ ! "$RUNIMG" ] -then -RUNIMG="auto" +if [ -z "$RUNIMG" ]; then + RUNIMG="auto" fi #Network support - yikes #VLANS -if [ "$VLANS" ] -then -for i in $VLANS -do -IF=`echo $i | cut -d. -f1` -VID=`echo $i | cut -d. -f2` -ifconfig $IF up -vconfig add $IF $VID > /dev/null +for i in $VLANS; do + IF=`echo $i | cut -d. -f1` + VID=`echo $i | cut -d. -f2` + ifconfig $IF up + vconfig add $IF $VID > /dev/null done -fi -if [ "$NDEV" ] -then -ifconfig lo up 127.0.0.1 +if [ -n "$NDEV" ]; then + ifconfig lo up 127.0.0.1 -if [ "$MAC" ] -then -ifconfig "$NDEV" hw ether "$MAC" -fi + if [ -n "$MAC" ]; then + ifconfig "$NDEV" hw ether "$MAC" + fi -if [ "$IP" = "dhcp" ] -then -echo "Configuring $NDEV with DHCP..." -udhcpc -nq -s /etc/udhcpc.script -i "$NDEV" -else -ifconfig "$NDEV" inet "$IP" netmask "$NM" -route add -net default gw "$GW" + if [ "$IP" = "dhcp" ]; then + echo "Configuring $NDEV with DHCP..." + udhcpc -nq -s /etc/udhcpc.script -i "$NDEV" + else + ifconfig "$NDEV" inet "$IP" netmask "$NM" + route add -net default gw "$GW" -for i in $DNS -do -echo "nameserver $i" >> /tmp/etc/resolv.conf -done + for i in $DNS; do + echo "nameserver $i" >> /tmp/etc/resolv.conf + done -fi + fi -if [ "$URL" ] -then -echo "Checking for updates..." + if [ -n "$URL" ]; then + echo "Checking for updates..." -if `wget -q -c -O /tmp/ver $URL/ver` -then -VER=`cat /tmp/ver` + if wget -q -c -O /tmp/ver $URL/ver; then + VER="`cat /tmp/ver`" -if [ -f $BASE/os/ver ] -then -OVER=`cat $BASE/os/ver` -else -OVER="NONE" -fi + if [ -f $BASE/os/ver ]; then + OVER="`cat $BASE/os/ver`" + else + OVER="NONE" + fi -if [ ! "$VER" = "$OVER" ] -then -echo "New version: $VER + if [ "$VER" != "$OVER" ]; then + echo "New version: $VER Old version: $OVER" -wget -c -O /tmp/$VER.tar.gz $URL/$VER.tar.gz -wget -q -c -O /tmp/$VER.tar.gz.sha1 $URL/$VER.tar.gz.sha1 -cd /tmp -echo "Verifying download - please wait" -if `sha1sum -cs $VER.tar.gz.sha1` -then -echo "Extracting image - please wait" -cd $BASE/os -tar -xzf /tmp/$VER.tar.gz -sync -echo "Verifying image - please wait" + wget -c -O /tmp/$VER.tar.gz $URL/$VER.tar.gz + wget -q -c -O /tmp/$VER.tar.gz.sha1 $URL/$VER.tar.gz.sha1 -cd $BASE/os/$VER -if `sha1sum -cs $VER.run.sha1` -then -mv $BASE/os/$VER/* $BASE/os/ && mv /tmp/ver $BASE/os/ver -rmdir $BASE/os/$VER -IMGVER=1 + cd /tmp + echo "Verifying download - please wait" -if [ "$USLEEP" ] -then -echo "Sleeping for "$USLEEP" seconds" -sleep $USLEEP -fi + if sha1sum -cs $VER.tar.gz.sha1; then + echo "Extracting image - please wait" + tar -C $BASE/os -xzf /tmp/$VER.tar.gz + sync + + echo "Verifying image - please wait" + + cd $BASE/os/$VER + if sha1sum -cs $VER.run.sha1; then + mv $BASE/os/$VER/* $BASE/os/ && mv /tmp/ver $BASE/os/ver + cd .. + rmdir $BASE/os/$VER + IMGVER=1 + + if [ -n "$USLEEP" ]; then + echo "Sleeping for "$USLEEP" seconds" + sleep $USLEEP + fi + + fi + fi + fi + fi + fi fi -fi -fi -fi -fi -fi -if [ "$RUNIMG" = "auto" ] -then -# Get the latest good one -cd $BASE/os -RUNIMG=`ls *.run | tail -n1` +if [ "$RUNIMG" = "auto" ]; then + # Get the latest good one + cd $BASE/os + RUNIMG="`ls *.run | tail -n1`" fi #If we have a ver file, override auto/default.conf value -if [ -f $BASE/os/ver ] -then -RUNIMG=`cat $BASE/os/ver`.run +if [ -f $BASE/os/ver ]; then + RUNIMG="`cat $BASE/os/ver`.run" fi -if [ ! "$IMGVER" ] -then -echo "Verifying $RUNIMG..." +if [ -z "$IMGVER" ]; then + echo "Verifying $RUNIMG..." -if `sha1sum -cs $RUNIMG.sha1` -then -echo "$RUNIMG verified" -IMGVER=1 -else -echo "$RUNIMG not verified" -fi + if sha1sum -cs $RUNIMG.sha1; then + echo "$RUNIMG verified" + IMGVER=1 + else + echo "$RUNIMG not verified" + fi fi -if [ -f $BASE/os/$RUNIMG.conf ] -then -. $BASE/os/$RUNIMG.conf +if [ -f $BASE/os/$RUNIMG.conf ]; then + . $BASE/os/$RUNIMG.conf fi -if [ ! "$OFFSET" ] -then -losetup /dev/loop0 $BASE/os/$RUNIMG +if [ -z "$OFFSET" ]; then + losetup /dev/loop0 $BASE/os/$RUNIMG else -losetup -o "$OFFSET" /dev/loop0 $BASE/os/$RUNIMG + losetup -o "$OFFSET" /dev/loop0 $BASE/os/$RUNIMG fi -if [ ! "$FSTYPE" ] -then -FSTYPE=ext2 +if [ -z "$FSTYPE" ]; then + FSTYPE=ext2 fi -if `mount -t $FSTYPE -o ro /dev/loop0 $ROOT` -then -echo "Root mounted" +if mount -t $FSTYPE -o ro /dev/loop0 $ROOT; then + echo "Root mounted" else -echo "Error mounting $RUNIMG root fs" -do_failure + echo "Error mounting $RUNIMG root fs" + do_failure fi -if [ "$INITRD" ] -then +if [ -n "$INITRD" ]; then -if [ -r "$INITRD" ] -then -echo "Custom initrd $INITRD found" -else -INITRD=$BASE/os/initrd.img -echo "Custom initrd not found - using $INITRD" -fi + if [ -r "$INITRD" ]; then + echo "Custom initrd $INITRD found" + else + INITRD=$BASE/os/initrd.img + echo "Custom initrd not found - using $INITRD" + fi else -echo "Using default initrd" -INITRD=$BASE/os/initrd.img + echo "Using default initrd" + INITRD=$BASE/os/initrd.img fi -if [ "$KERN" ] -then +if [ -n "$KERN" ]; then -if [ -r "$KERN" ] -then -echo "Custom kernel $KERN found" -else -KERN=$ROOT/boot/bzImage -echo "Custom kernel not found - using $KERN" -fi + if [ -r "$KERN" ]; then + echo "Custom kernel $KERN found" + else + KERN=$ROOT/boot/bzImage + echo "Custom kernel not found - using $KERN" + fi else -echo "Using default kernel" -KERN=$ROOT/boot/bzImage + echo "Using default kernel" + KERN=$ROOT/boot/bzImage fi -if [ -r "$INITRD" -a -r "$KERN" ] -then -echo "Copying kernel and initrd to ramdisk..." -mount -t tmpfs none /mnt/tmp -cp "$INITRD" /mnt/tmp/initrd.img -cp "$KERN" /mnt/tmp/bzImage -echo "Unmounting image..." -umount $ROOT +if [ -r "$INITRD" -a -r "$KERN" ]; then + echo "Copying kernel and initrd to ramdisk..." + mount -t tmpfs none /mnt/tmp + cp "$INITRD" /mnt/tmp/initrd.img + cp "$KERN" /mnt/tmp/bzImage + echo "Unmounting image..." + umount $ROOT else -echo "I couldn't find your kernel and/or initrd" -do_failure + echo "I couldn't find your kernel and/or initrd" + do_failure fi -if [ ! "$KCMD" ] -then -echo "You need to specify a kernel command line" -echo "I can't guess that" -do_failure +if [ -z "$KCMD" ]; then + echo "You need to specify a kernel command line. +I can't guess that" + do_failure fi -echo "Trying kexec..." umount /tmp + +echo "Trying kexec..." kexec --command-line="$KCMD" --initrd=/mnt/tmp/initrd.img -f /mnt/tmp/bzImage do_failure This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ppr...@us...> - 2010-01-28 19:09:45
|
Revision: 91 http://runnix.svn.sourceforge.net/runnix/?rev=91&view=rev Author: pprindeville Date: 2010-01-28 19:09:33 +0000 (Thu, 28 Jan 2010) Log Message: ----------- Add menu entry for 'doshell' capability. Modified Paths: -------------- trunk/toolchain/runrelease/files/rootfs_vfat/syslinux.cfg Modified: trunk/toolchain/runrelease/files/rootfs_vfat/syslinux.cfg =================================================================== --- trunk/toolchain/runrelease/files/rootfs_vfat/syslinux.cfg 2009-09-10 21:38:18 UTC (rev 90) +++ trunk/toolchain/runrelease/files/rootfs_vfat/syslinux.cfg 2010-01-28 19:09:33 UTC (rev 91) @@ -1,10 +1,14 @@ # serial 0 19200 # console 1 default runnix -timeout 5 +timeout 50 prompt 1 display boot.msg label runnix kernel runnix append initrd=runnix.img root=/dev/ram0 rw init=/runnix runimg=auto rootdelay=10 quiet + +label rescue + kernel runnix + append initrd=runnix.img root=/dev/ram0 ro init=/runnix runimg=auto rootdelay=10 doshell This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ppr...@us...> - 2009-09-10 21:38:32
|
Revision: 90 http://runnix.svn.sourceforge.net/runnix/?rev=90&view=rev Author: pprindeville Date: 2009-09-10 21:38:18 +0000 (Thu, 10 Sep 2009) Log Message: ----------- Some build hosts require this. Brought over from astlinux. Added Paths: ----------- trunk/target/device/geni386/kernel-patches/linux-sumversion.patch Added: trunk/target/device/geni386/kernel-patches/linux-sumversion.patch =================================================================== --- trunk/target/device/geni386/kernel-patches/linux-sumversion.patch (rev 0) +++ trunk/target/device/geni386/kernel-patches/linux-sumversion.patch 2009-09-10 21:38:18 UTC (rev 90) @@ -0,0 +1,11 @@ +diff -ur linux-2.6.20.21-astlinux.orig/scripts/mod/sumversion.c linux-2.6.20.21-astlinux/scripts/mod/sumversion.c +--- linux-2.6.20.21-astlinux.orig/scripts/mod/sumversion.c 2007-10-17 15:31:14.000000000 -0400 ++++ linux-2.6.20.21-astlinux/scripts/mod/sumversion.c 2009-02-04 21:21:08.000000000 -0500 +@@ -7,6 +7,7 @@ + #include <ctype.h> + #include <errno.h> + #include <string.h> ++#include <limits.h> + #include "modpost.h" + + /* This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ppr...@us...> - 2009-09-10 21:37:30
|
Revision: 89 http://runnix.svn.sourceforge.net/runnix/?rev=89&view=rev Author: pprindeville Date: 2009-09-10 21:37:22 +0000 (Thu, 10 Sep 2009) Log Message: ----------- Stop failing if we fall back to the alternate file source. Modified Paths: -------------- trunk/toolchain/getter_script.sh Modified: trunk/toolchain/getter_script.sh =================================================================== --- trunk/toolchain/getter_script.sh 2009-09-10 18:25:25 UTC (rev 88) +++ trunk/toolchain/getter_script.sh 2009-09-10 21:37:22 UTC (rev 89) @@ -2,7 +2,7 @@ # getter_better script from gumstix # what a great idea... -wget --passive-ftp --timeout=30 -t 2 $@ || ( +wget --passive-ftp --timeout=30 -c -t 2 -nv $@ || ( echo Retrying from astlinux alternate site... index=$#-1 # Copy all params into an array This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2008-02-08 16:17:18
|
Revision: 84 http://runnix.svn.sourceforge.net/runnix/?rev=84&view=rev Author: krisk84 Date: 2008-02-08 08:17:14 -0800 (Fri, 08 Feb 2008) Log Message: ----------- I didn't like that comma Modified Paths: -------------- trunk/target/vfat/target_skeleton/os/default.conf Modified: trunk/target/vfat/target_skeleton/os/default.conf =================================================================== --- trunk/target/vfat/target_skeleton/os/default.conf 2008-02-08 16:00:14 UTC (rev 83) +++ trunk/target/vfat/target_skeleton/os/default.conf 2008-02-08 16:17:14 UTC (rev 84) @@ -6,7 +6,7 @@ #VLANS="eth0.52 eth1.53" # Failure support -# If runnix fails booting for any reason, it can +# If runnix fails booting for any reason it can # start a network interface, assign an IP, and # start an ssh server. You can use VLANs here too. #FAILDEV="eth0" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2008-02-08 16:00:17
|
Revision: 83 http://runnix.svn.sourceforge.net/runnix/?rev=83&view=rev Author: krisk84 Date: 2008-02-08 08:00:14 -0800 (Fri, 08 Feb 2008) Log Message: ----------- add VLAN support and document failure support Modified Paths: -------------- trunk/target/generic/target_skeleton/runnix trunk/target/vfat/target_skeleton/os/default.conf Modified: trunk/target/generic/target_skeleton/runnix =================================================================== --- trunk/target/generic/target_skeleton/runnix 2007-11-08 00:01:19 UTC (rev 82) +++ trunk/target/generic/target_skeleton/runnix 2008-02-08 16:00:14 UTC (rev 83) @@ -121,6 +121,19 @@ fi #Network support - yikes + +#VLANS +if [ "$VLANS" ] +then +for i in $VLANS +do +IF=`echo $i | cut -d. -f1` +VID=`echo $i | cut -d. -f2` +ifconfig $IF up +vconfig add $IF $VID > /dev/null +done +fi + if [ "$NDEV" ] then ifconfig lo up 127.0.0.1 Modified: trunk/target/vfat/target_skeleton/os/default.conf =================================================================== --- trunk/target/vfat/target_skeleton/os/default.conf 2007-11-08 00:01:19 UTC (rev 82) +++ trunk/target/vfat/target_skeleton/os/default.conf 2008-02-08 16:00:14 UTC (rev 83) @@ -2,7 +2,19 @@ # Network upgrades -# Device connected to network +#VLAN support +#VLANS="eth0.52 eth1.53" + +# Failure support +# If runnix fails booting for any reason, it can +# start a network interface, assign an IP, and +# start an ssh server. You can use VLANs here too. +#FAILDEV="eth0" +#FAILIP="192.168.0.100" +#FAILNM="255.255.255.0" +#FAILGW="192.168.0.1" + +# Device connected to network for upgrades #NDEV="eth0" # IP address - use "dhcp" for DHCP support This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-11-08 00:01:23
|
Revision: 82 http://runnix.svn.sourceforge.net/runnix/?rev=82&view=rev Author: krisk84 Date: 2007-11-07 16:01:19 -0800 (Wed, 07 Nov 2007) Log Message: ----------- dofail will never run ssh if I dont source default.conf first Modified Paths: -------------- trunk/target/generic/target_skeleton/runnix Modified: trunk/target/generic/target_skeleton/runnix =================================================================== --- trunk/target/generic/target_skeleton/runnix 2007-11-07 23:53:37 UTC (rev 81) +++ trunk/target/generic/target_skeleton/runnix 2007-11-08 00:01:19 UTC (rev 82) @@ -90,17 +90,6 @@ exec /bin/sh fi -if `grep -q doshell /proc/cmdline` -then -echo "Dropping to shell" -exec /bin/sh -fi - -if `grep -q dofail /proc/cmdline` -then -do_failure -fi - # get image name for i in ${CMDLINE} do @@ -115,6 +104,17 @@ . $BASE/os/default.conf fi +if `grep -q doshell /proc/cmdline` +then +echo "Dropping to shell" +exec /bin/sh +fi + +if `grep -q dofail /proc/cmdline` +then +do_failure +fi + if [ ! "$RUNIMG" ] then RUNIMG="auto" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-11-07 23:53:38
|
Revision: 81 http://runnix.svn.sourceforge.net/runnix/?rev=81&view=rev Author: krisk84 Date: 2007-11-07 15:53:37 -0800 (Wed, 07 Nov 2007) Log Message: ----------- setup hostname earlier in init Modified Paths: -------------- trunk/target/generic/target_skeleton/runnix Modified: trunk/target/generic/target_skeleton/runnix =================================================================== --- trunk/target/generic/target_skeleton/runnix 2007-11-07 23:50:47 UTC (rev 80) +++ trunk/target/generic/target_skeleton/runnix 2007-11-07 23:53:37 UTC (rev 81) @@ -81,6 +81,8 @@ fi done +hostname runnix + # Loader not found if [ ! $DEVICE ] then @@ -121,7 +123,6 @@ #Network support - yikes if [ "$NDEV" ] then -hostname runnix ifconfig lo up 127.0.0.1 if [ "$MAC" ] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-11-07 23:50:51
|
Revision: 80 http://runnix.svn.sourceforge.net/runnix/?rev=80&view=rev Author: krisk84 Date: 2007-11-07 15:50:47 -0800 (Wed, 07 Nov 2007) Log Message: ----------- more SSH fixes Modified Paths: -------------- trunk/target/generic/target_skeleton/runnix Added Paths: ----------- trunk/target/generic/target_skeleton/var/log Modified: trunk/target/generic/target_skeleton/runnix =================================================================== --- trunk/target/generic/target_skeleton/runnix 2007-11-07 20:43:41 UTC (rev 79) +++ trunk/target/generic/target_skeleton/runnix 2007-11-07 23:50:47 UTC (rev 80) @@ -11,18 +11,44 @@ DRIVES="hda hdb hdc hdd hde hdf hdg hdh sda sdb sdc sdd" -echo " +do_failure () { +if [ "$SSHPORT" ] +then +mount -t devpts devpts /dev/pts +echo "Generating keys" +/usr/bin/dropbearkey -t rsa -f /tmp/rsa_key -s 1024 +/usr/bin/dropbearkey -t dss -f /tmp/dss_key -s 1024 -Runnix version $RUNVER starting" +if [ "$FAILIP" -a "$FAILNM" -a "$FAILDEV" ] +then +ifconfig $FAILDEV $FAILIP netmask $FAILNM -if `mount -t proc none /proc` +if [ "$FAILGW" ] then -echo "proc mounted" +route del -net default 2> /dev/null +route add -net default gw $FAILGW +fi + +SSHIP="$FAILIP" else -echo "Error mounting proc" -/bin/sh +SSHIP="$EXTIP" fi +touch /var/log/lastlog +touch /var/log/wtmp +echo "Starting dropbear" +/usr/sbin/dropbear -d /tmp/dss_key -r /tmp/rsa_key -E -P /tmp/dropbear.pid -p $SSHPORT +fi + +echo "Dropping to shell" +exec /bin/sh +} + +echo " + +Runnix version $RUNVER starting" + +mount -t proc none /proc mount -t tmpfs none /tmp mkdir /tmp/etc @@ -59,10 +85,20 @@ if [ ! $DEVICE ] then echo "Runnix device not found" -/bin/sh -exit +exec /bin/sh fi +if `grep -q doshell /proc/cmdline` +then +echo "Dropping to shell" +exec /bin/sh +fi + +if `grep -q dofail /proc/cmdline` +then +do_failure +fi + # get image name for i in ${CMDLINE} do @@ -108,12 +144,6 @@ fi -if [ "$SSHTIME" ] -then -mount -t devpts devpts /dev/pts -echo "SSHTIME is in progress" -fi - if [ "$URL" ] then echo "Checking for updates..." @@ -215,7 +245,7 @@ echo "Root mounted" else echo "Error mounting $RUNIMG root fs" -/bin/sh +do_failure fi if [ "$INITRD" ] @@ -260,18 +290,18 @@ umount $ROOT else echo "I couldn't find your kernel and/or initrd" -/bin/sh +do_failure fi if [ ! "$KCMD" ] then echo "You need to specify a kernel command line" echo "I can't guess that" -/bin/sh +do_failure fi echo "Trying kexec..." umount /tmp kexec --command-line="$KCMD" --initrd=/mnt/tmp/initrd.img -f /mnt/tmp/bzImage -/bin/sh +do_failure Added: trunk/target/generic/target_skeleton/var/log =================================================================== --- trunk/target/generic/target_skeleton/var/log (rev 0) +++ trunk/target/generic/target_skeleton/var/log 2007-11-07 23:50:47 UTC (rev 80) @@ -0,0 +1 @@ +link /tmp \ No newline at end of file Property changes on: trunk/target/generic/target_skeleton/var/log ___________________________________________________________________ Name: svn:special + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-11-07 20:43:42
|
Revision: 79 http://runnix.svn.sourceforge.net/runnix/?rev=79&view=rev Author: krisk84 Date: 2007-11-07 12:43:41 -0800 (Wed, 07 Nov 2007) Log Message: ----------- set hostname for network support Modified Paths: -------------- trunk/target/generic/target_skeleton/runnix Modified: trunk/target/generic/target_skeleton/runnix =================================================================== --- trunk/target/generic/target_skeleton/runnix 2007-11-07 20:41:06 UTC (rev 78) +++ trunk/target/generic/target_skeleton/runnix 2007-11-07 20:43:41 UTC (rev 79) @@ -85,6 +85,7 @@ #Network support - yikes if [ "$NDEV" ] then +hostname runnix ifconfig lo up 127.0.0.1 if [ "$MAC" ] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-11-07 20:41:07
|
Revision: 78 http://runnix.svn.sourceforge.net/runnix/?rev=78&view=rev Author: krisk84 Date: 2007-11-07 12:41:06 -0800 (Wed, 07 Nov 2007) Log Message: ----------- initial support for SSHTIME variable Modified Paths: -------------- trunk/target/generic/target_skeleton/runnix Modified: trunk/target/generic/target_skeleton/runnix =================================================================== --- trunk/target/generic/target_skeleton/runnix 2007-11-07 20:31:33 UTC (rev 77) +++ trunk/target/generic/target_skeleton/runnix 2007-11-07 20:41:06 UTC (rev 78) @@ -107,6 +107,12 @@ fi +if [ "$SSHTIME" ] +then +mount -t devpts devpts /dev/pts +echo "SSHTIME is in progress" +fi + if [ "$URL" ] then echo "Checking for updates..." This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-11-07 20:31:37
|
Revision: 77 http://runnix.svn.sourceforge.net/runnix/?rev=77&view=rev Author: krisk84 Date: 2007-11-07 12:31:33 -0800 (Wed, 07 Nov 2007) Log Message: ----------- runnix root password support - runnix default Modified Paths: -------------- trunk/target/generic/device_table.txt Added Paths: ----------- trunk/target/generic/target_skeleton/etc/shadow Modified: trunk/target/generic/device_table.txt =================================================================== --- trunk/target/generic/device_table.txt 2007-11-07 19:17:57 UTC (rev 76) +++ trunk/target/generic/device_table.txt 2007-11-07 20:31:33 UTC (rev 77) @@ -40,7 +40,7 @@ #/home/default d 2755 1000 1000 - - - - - #<name> <type> <mode> <uid> <gid> <major> <minor> <start> <inc> <count> /bin/busybox f 4755 0 0 - - - - - -# /etc/shadow f 600 0 0 - - - - - +/etc/shadow f 600 0 0 - - - - - /etc/passwd f 644 0 0 - - - - - #/etc/network/if-up.d d 755 0 0 - - - - - #/etc/network/if-pre-up.d d 755 0 0 - - - - - Added: trunk/target/generic/target_skeleton/etc/shadow =================================================================== --- trunk/target/generic/target_skeleton/etc/shadow (rev 0) +++ trunk/target/generic/target_skeleton/etc/shadow 2007-11-07 20:31:33 UTC (rev 77) @@ -0,0 +1 @@ +root:$1$V2tNfcYg$N.dpA3bj79p2PnKqataXp1:12215:0:99999:7::: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-11-07 19:18:01
|
Revision: 76 http://runnix.svn.sourceforge.net/runnix/?rev=76&view=rev Author: krisk84 Date: 2007-11-07 11:17:57 -0800 (Wed, 07 Nov 2007) Log Message: ----------- dropbear version bump Modified Paths: -------------- trunk/package/dropbear/dropbear.mk Modified: trunk/package/dropbear/dropbear.mk =================================================================== --- trunk/package/dropbear/dropbear.mk 2007-11-07 19:10:03 UTC (rev 75) +++ trunk/package/dropbear/dropbear.mk 2007-11-07 19:17:57 UTC (rev 76) @@ -3,7 +3,7 @@ # dropbear # ############################################################# -DROPBEAR_VER:=0.47 +DROPBEAR_VER:=0.50 DROPBEAR_SOURCE:=dropbear-$(DROPBEAR_VER).tar.bz2 DROPBEAR_SITE:=http://matt.ucc.asn.au/dropbear/releases/ DROPBEAR_DIR:=$(BUILD_DIR)/dropbear-$(DROPBEAR_VER) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-11-07 19:10:07
|
Revision: 75 http://runnix.svn.sourceforge.net/runnix/?rev=75&view=rev Author: krisk84 Date: 2007-11-07 11:10:03 -0800 (Wed, 07 Nov 2007) Log Message: ----------- dropbear fixes Modified Paths: -------------- trunk/package/dropbear/dropbear.mk trunk/runnix.config Modified: trunk/package/dropbear/dropbear.mk =================================================================== --- trunk/package/dropbear/dropbear.mk 2007-07-13 13:49:11 UTC (rev 74) +++ trunk/package/dropbear/dropbear.mk 2007-11-07 19:10:03 UTC (rev 75) @@ -76,7 +76,12 @@ dropbear: uclibc zlib $(TARGET_DIR)/$(DROPBEAR_TARGET_BINARY) dropbear-clean: - $(MAKE) DESTDIR=$(TARGET_DIR) $(TARGET_CONFIGURE_OPTS) \ + rm -f $(TARGET_DIR)/usr/bin/scp + rm -f $(TARGET_DIR)/usr/bin/ssh + rm -f $(TARGET_DIR)/usr/bin/dbclient + rm -f $(TARGET_DIR)/usr/bin/dropbearkey + rm -f $(TARGET_DIR)/usr/bin/dropbearconvert + -$(MAKE) DESTDIR=$(TARGET_DIR) $(TARGET_CONFIGURE_OPTS) \ LD=$(TARGET_CC) -C $(DROPBEAR_DIR) uninstall -$(MAKE) -C $(DROPBEAR_DIR) clean Modified: trunk/runnix.config =================================================================== --- trunk/runnix.config 2007-07-13 13:49:11 UTC (rev 74) +++ trunk/runnix.config 2007-11-07 19:10:03 UTC (rev 75) @@ -136,7 +136,7 @@ # BR2_PACKAGE_DM is not set # BR2_PACKAGE_DNSMASQ is not set BR2_PACKAGE_DROPBEAR=y -# BR2_PACKAGE_DROPBEAR_URANDOM is not set +BR2_PACKAGE_DROPBEAR_URANDOM=y # BR2_PACKAGE_EXPAT is not set # BR2_PACKAGE_E2FSPROGS is not set # BR2_PACKAGE_FAKEROOT is not set @@ -169,7 +169,6 @@ # BR2_PACKAGE_MKDOSFS is not set # BR2_PACKAGE_MODULE_INIT_TOOLS is not set # BR2_PACKAGE_MODUTILS is not set -# BR2_PACKAGE_MPG123 is not set # BR2_PACKAGE_MROUTED is not set # BR2_PACKAGE_MSMTP is not set # BR2_PACKAGE_MTD is not set This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-07-13 13:49:14
|
Revision: 74 http://svn.sourceforge.net/runnix/?rev=74&view=rev Author: krisk84 Date: 2007-07-13 06:49:11 -0700 (Fri, 13 Jul 2007) Log Message: ----------- merge changes from trunk, with tweaks for 0.2 branch Modified Paths: -------------- branches/0.2/target/device/geni386/linux.config branches/0.2/toolchain/runrelease/files/rootfs_vfat/boot.msg branches/0.2/toolchain/runrelease/files/rootfs_vfat/runnix.conf.sample branches/0.2/toolchain/runrelease/files/rootfs_vfat/syslinux.cfg Modified: branches/0.2/target/device/geni386/linux.config =================================================================== --- branches/0.2/target/device/geni386/linux.config 2007-07-13 13:46:39 UTC (rev 73) +++ branches/0.2/target/device/geni386/linux.config 2007-07-13 13:49:11 UTC (rev 74) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit # Linux kernel version: 2.6.20 -# Fri Apr 27 16:20:39 2007 +# Fri Jul 13 09:40:20 2007 # CONFIG_X86_32=y CONFIG_GENERIC_TIME=y @@ -944,9 +944,9 @@ # CONFIG_DRM is not set # CONFIG_MWAVE is not set CONFIG_SCx200_GPIO=y -# CONFIG_PC8736x_GPIO is not set +CONFIG_PC8736x_GPIO=y CONFIG_NSC_GPIO=y -# CONFIG_CS5535_GPIO is not set +CONFIG_CS5535_GPIO=y # CONFIG_RAW_DRIVER is not set # CONFIG_HANGCHECK_TIMER is not set Modified: branches/0.2/toolchain/runrelease/files/rootfs_vfat/boot.msg =================================================================== --- branches/0.2/toolchain/runrelease/files/rootfs_vfat/boot.msg 2007-07-13 13:46:39 UTC (rev 73) +++ branches/0.2/toolchain/runrelease/files/rootfs_vfat/boot.msg 2007-07-13 13:49:11 UTC (rev 74) @@ -1,4 +1,4 @@ -runnix 0.1 - http://www.runnix.org +runnix 0.2-SVN - http://www.runnix.org Modified: branches/0.2/toolchain/runrelease/files/rootfs_vfat/runnix.conf.sample =================================================================== --- branches/0.2/toolchain/runrelease/files/rootfs_vfat/runnix.conf.sample 2007-07-13 13:46:39 UTC (rev 73) +++ branches/0.2/toolchain/runrelease/files/rootfs_vfat/runnix.conf.sample 2007-07-13 13:49:11 UTC (rev 74) @@ -14,7 +14,7 @@ # Like GRUB or any other bootloader, it can be any # option that is valid for your linux kernel # (kernel to be booted from your .run, most likely) -KCMD="root=/dev/ram0 rw init=/linuxrc astlinux=geni586 astimg=trunk.run astkd=/dev/sda1 astlive ide=nodma" +KCMD="root=/dev/ram0 rw init=/linuxrc astlinux=geni586 astimg=trunk.run astkd=/dev/sda1 astlive ide=nodma quiet" # Offset for root filesystem # If your filesystem is a hard disk image with a full Modified: branches/0.2/toolchain/runrelease/files/rootfs_vfat/syslinux.cfg =================================================================== --- branches/0.2/toolchain/runrelease/files/rootfs_vfat/syslinux.cfg 2007-07-13 13:46:39 UTC (rev 73) +++ branches/0.2/toolchain/runrelease/files/rootfs_vfat/syslinux.cfg 2007-07-13 13:49:11 UTC (rev 74) @@ -7,4 +7,4 @@ label runnix kernel runnix - append initrd=runnix.img root=/dev/ram0 rw init=/runnix runimg=auto rootdelay=10 + append initrd=runnix.img root=/dev/ram0 rw init=/runnix runimg=auto rootdelay=10 quiet This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-07-13 13:46:41
|
Revision: 73 http://svn.sourceforge.net/runnix/?rev=73&view=rev Author: krisk84 Date: 2007-07-13 06:46:39 -0700 (Fri, 13 Jul 2007) Log Message: ----------- update default boot params with quiet boot option; fix boot.msg Modified Paths: -------------- trunk/toolchain/runrelease/files/rootfs_vfat/boot.msg trunk/toolchain/runrelease/files/rootfs_vfat/runnix.conf.sample trunk/toolchain/runrelease/files/rootfs_vfat/syslinux.cfg Modified: trunk/toolchain/runrelease/files/rootfs_vfat/boot.msg =================================================================== --- trunk/toolchain/runrelease/files/rootfs_vfat/boot.msg 2007-07-13 13:42:59 UTC (rev 72) +++ trunk/toolchain/runrelease/files/rootfs_vfat/boot.msg 2007-07-13 13:46:39 UTC (rev 73) @@ -1,4 +1,4 @@ -runnix 0.1 - http://www.runnix.org +runnix SVN-TRUNK - http://www.runnix.org Modified: trunk/toolchain/runrelease/files/rootfs_vfat/runnix.conf.sample =================================================================== --- trunk/toolchain/runrelease/files/rootfs_vfat/runnix.conf.sample 2007-07-13 13:42:59 UTC (rev 72) +++ trunk/toolchain/runrelease/files/rootfs_vfat/runnix.conf.sample 2007-07-13 13:46:39 UTC (rev 73) @@ -14,7 +14,7 @@ # Like GRUB or any other bootloader, it can be any # option that is valid for your linux kernel # (kernel to be booted from your .run, most likely) -KCMD="root=/dev/ram0 rw init=/linuxrc astlinux=geni586 astimg=trunk.run astkd=/dev/sda1 astlive ide=nodma" +KCMD="root=/dev/ram0 rw init=/linuxrc astlinux=geni586 astimg=trunk.run astkd=/dev/sda1 astlive ide=nodma quiet" # Offset for root filesystem # If your filesystem is a hard disk image with a full Modified: trunk/toolchain/runrelease/files/rootfs_vfat/syslinux.cfg =================================================================== --- trunk/toolchain/runrelease/files/rootfs_vfat/syslinux.cfg 2007-07-13 13:42:59 UTC (rev 72) +++ trunk/toolchain/runrelease/files/rootfs_vfat/syslinux.cfg 2007-07-13 13:46:39 UTC (rev 73) @@ -7,4 +7,4 @@ label runnix kernel runnix - append initrd=runnix.img root=/dev/ram0 rw init=/runnix runimg=auto rootdelay=10 + append initrd=runnix.img root=/dev/ram0 rw init=/runnix runimg=auto rootdelay=10 quiet This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-07-13 13:43:00
|
Revision: 72 http://svn.sourceforge.net/runnix/?rev=72&view=rev Author: krisk84 Date: 2007-07-13 06:42:59 -0700 (Fri, 13 Jul 2007) Log Message: ----------- include support for CS5535 and PC8736x GPIO support Modified Paths: -------------- trunk/target/device/geni386/linux.config Modified: trunk/target/device/geni386/linux.config =================================================================== --- trunk/target/device/geni386/linux.config 2007-07-13 13:42:09 UTC (rev 71) +++ trunk/target/device/geni386/linux.config 2007-07-13 13:42:59 UTC (rev 72) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit # Linux kernel version: 2.6.20 -# Fri Apr 27 16:20:39 2007 +# Fri Jul 13 09:40:20 2007 # CONFIG_X86_32=y CONFIG_GENERIC_TIME=y @@ -944,9 +944,9 @@ # CONFIG_DRM is not set # CONFIG_MWAVE is not set CONFIG_SCx200_GPIO=y -# CONFIG_PC8736x_GPIO is not set +CONFIG_PC8736x_GPIO=y CONFIG_NSC_GPIO=y -# CONFIG_CS5535_GPIO is not set +CONFIG_CS5535_GPIO=y # CONFIG_RAW_DRIVER is not set # CONFIG_HANGCHECK_TIMER is not set This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-07-13 13:42:10
|
Revision: 71 http://svn.sourceforge.net/runnix/?rev=71&view=rev Author: krisk84 Date: 2007-07-13 06:42:09 -0700 (Fri, 13 Jul 2007) Log Message: ----------- when locating target drives, try cd first Modified Paths: -------------- trunk/target/generic/target_skeleton/runnix Modified: trunk/target/generic/target_skeleton/runnix =================================================================== --- trunk/target/generic/target_skeleton/runnix 2007-05-15 03:44:46 UTC (rev 70) +++ trunk/target/generic/target_skeleton/runnix 2007-07-13 13:42:09 UTC (rev 71) @@ -30,27 +30,27 @@ for x in $DRIVES do -if `mount -t vfat /dev/${x}1 $BASE > /dev/null 2>&1` +if `mount -t iso9660 -o ro /dev/${x} $BASE > /dev/null 2>&1` then if [ -f $BASE/runnix ] then DEVICE=${x} +RODEV=yes else -umount /dev/${x}1 +umount /dev/${x} fi fi done -for x in $DRIVES +for x in $DRIVES do -if `mount -t iso9660 -o ro /dev/${x} $BASE > /dev/null 2>&1` +if `mount -t vfat /dev/${x}1 $BASE > /dev/null 2>&1` then if [ -f $BASE/runnix ] then DEVICE=${x} -RODEV=yes else -umount /dev/${x} +umount /dev/${x}1 fi fi done This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-05-15 03:44:57
|
Revision: 70 http://svn.sourceforge.net/runnix/?rev=70&view=rev Author: krisk84 Date: 2007-05-14 20:44:46 -0700 (Mon, 14 May 2007) Log Message: ----------- remove mpg123 Modified Paths: -------------- trunk/package/Config.in trunk/target/x86/syslinux/syslinux.mk Removed Paths: ------------- trunk/package/mpg123/ Modified: trunk/package/Config.in =================================================================== --- trunk/package/Config.in 2007-05-01 19:11:43 UTC (rev 69) +++ trunk/package/Config.in 2007-05-15 03:44:46 UTC (rev 70) @@ -45,7 +45,6 @@ source "package/mkdosfs/Config.in" source "package/module-init-tools/Config.in" source "package/modutils/Config.in" -source "package/mpg123/Config.in" source "package/mrouted/Config.in" source "package/msmtp/Config.in" source "package/mtd/Config.in" Modified: trunk/target/x86/syslinux/syslinux.mk =================================================================== --- trunk/target/x86/syslinux/syslinux.mk 2007-05-01 19:11:43 UTC (rev 69) +++ trunk/target/x86/syslinux/syslinux.mk 2007-05-15 03:44:46 UTC (rev 70) @@ -13,7 +13,7 @@ $(SYSLINUX_DIR)/Makefile: $(DL_DIR)/$(SYSLINUX_SOURCE) bzcat $(DL_DIR)/$(SYSLINUX_SOURCE) | tar -C $(BUILD_DIR) -xvf - - toolchain/patch-kernel.sh $(SYSLINUX_DIR) target/x86/syslinux/ \*.patch +# toolchain/patch-kernel.sh $(SYSLINUX_DIR) target/x86/syslinux/ \*.patch touch -c $(SYSLINUX_DIR)/Makefile $(SYSLINUX_DIR)/unix/syslinux: $(SYSLINUX_DIR)/Makefile This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-05-01 19:11:49
|
Revision: 69 http://svn.sourceforge.net/runnix/?rev=69&view=rev Author: krisk84 Date: 2007-05-01 12:11:43 -0700 (Tue, 01 May 2007) Log Message: ----------- merge version reporting fix from trunk Modified Paths: -------------- branches/0.2/target/generic/target_skeleton/runnix Modified: branches/0.2/target/generic/target_skeleton/runnix =================================================================== --- branches/0.2/target/generic/target_skeleton/runnix 2007-05-01 19:10:58 UTC (rev 68) +++ branches/0.2/target/generic/target_skeleton/runnix 2007-05-01 19:11:43 UTC (rev 69) @@ -7,8 +7,14 @@ # ROOT is where the .run partition is mounted ROOT=/mnt/root +RUNVER=`cat /etc/runnix-release` + DRIVES="hda hdb hdc hdd hde hdf hdg hdh sda sdb sdc sdd" +echo " + +Runnix version $RUNVER starting" + if `mount -t proc none /proc` then echo "proc mounted" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-05-01 19:11:03
|
Revision: 68 http://svn.sourceforge.net/runnix/?rev=68&view=rev Author: krisk84 Date: 2007-05-01 12:10:58 -0700 (Tue, 01 May 2007) Log Message: ----------- make runnix report version on startup Modified Paths: -------------- trunk/target/generic/target_skeleton/runnix Modified: trunk/target/generic/target_skeleton/runnix =================================================================== --- trunk/target/generic/target_skeleton/runnix 2007-05-01 19:02:08 UTC (rev 67) +++ trunk/target/generic/target_skeleton/runnix 2007-05-01 19:10:58 UTC (rev 68) @@ -7,8 +7,14 @@ # ROOT is where the .run partition is mounted ROOT=/mnt/root +RUNVER=`cat /etc/runnix-release` + DRIVES="hda hdb hdc hdd hde hdf hdg hdh sda sdb sdc sdd" +echo " + +Runnix version $RUNVER starting" + if `mount -t proc none /proc` then echo "proc mounted" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-05-01 19:02:09
|
Revision: 67 http://svn.sourceforge.net/runnix/?rev=67&view=rev Author: krisk84 Date: 2007-05-01 12:02:08 -0700 (Tue, 01 May 2007) Log Message: ----------- update release for SVN Modified Paths: -------------- branches/0.2/target/generic/target_skeleton/etc/runnix-release Modified: branches/0.2/target/generic/target_skeleton/etc/runnix-release =================================================================== --- branches/0.2/target/generic/target_skeleton/etc/runnix-release 2007-05-01 19:01:30 UTC (rev 66) +++ branches/0.2/target/generic/target_skeleton/etc/runnix-release 2007-05-01 19:02:08 UTC (rev 67) @@ -1 +1 @@ -runnix-0.2.1 +runnix-0.2-SVN This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-05-01 19:01:40
|
Revision: 66 http://svn.sourceforge.net/runnix/?rev=66&view=rev Author: krisk84 Date: 2007-05-01 12:01:30 -0700 (Tue, 01 May 2007) Log Message: ----------- Create tag for 0.2.1 release Added Paths: ----------- tags/0.2.1/ Copied: tags/0.2.1 (from rev 65, branches/0.2) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kr...@us...> - 2007-05-01 19:01:00
|
Revision: 65 http://svn.sourceforge.net/runnix/?rev=65&view=rev Author: krisk84 Date: 2007-05-01 12:00:57 -0700 (Tue, 01 May 2007) Log Message: ----------- update runnix release Modified Paths: -------------- branches/0.2/target/generic/target_skeleton/etc/runnix-release Modified: branches/0.2/target/generic/target_skeleton/etc/runnix-release =================================================================== --- branches/0.2/target/generic/target_skeleton/etc/runnix-release 2007-05-01 18:58:05 UTC (rev 64) +++ branches/0.2/target/generic/target_skeleton/etc/runnix-release 2007-05-01 19:00:57 UTC (rev 65) @@ -1 +1 @@ -trunk +runnix-0.2.1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |