From: <kr...@us...> - 2006-10-01 19:42:41
|
Revision: 383 http://svn.sourceforge.net/astlinux/?rev=383&view=rev Author: krisk84 Date: 2006-10-01 12:42:35 -0700 (Sun, 01 Oct 2006) Log Message: ----------- add netstix specific build target & getter_better Modified Paths: -------------- trunk/target/device/Gumstix/Config.in trunk/target/device/Gumstix/Makefile.in Added Paths: ----------- trunk/target/device/Gumstix/netstix/ trunk/target/device/Gumstix/netstix/target_skeleton/ trunk/toolchain/getter_script.sh Modified: trunk/target/device/Gumstix/Config.in =================================================================== --- trunk/target/device/Gumstix/Config.in 2006-09-27 10:30:20 UTC (rev 382) +++ trunk/target/device/Gumstix/Config.in 2006-10-01 19:42:35 UTC (rev 383) @@ -6,6 +6,14 @@ help The gumstix basix and connex +config BR2_TARGET_GUMSTIX_NETSTIX + bool "Gumstix basix or connex" + depends on BR2_TARGET_GUMSTIX_BASIXCONNEX + default n + select BR2_PACKAGE_LINUX + help + gumstix Netstix specific files + config GUMSTIX_400MHZ bool "400MHz?" depends on BR2_TARGET_GUMSTIX_BASIXCONNEX Modified: trunk/target/device/Gumstix/Makefile.in =================================================================== --- trunk/target/device/Gumstix/Makefile.in 2006-09-27 10:30:20 UTC (rev 382) +++ trunk/target/device/Gumstix/Makefile.in 2006-10-01 19:42:35 UTC (rev 383) @@ -5,6 +5,10 @@ TARGET_SKEL2_DIR=target/device/Gumstix/basix-connex/target_skeleton BR2_TARGET_OPTIMIZATION="-Os -pipe -Os -march=armv5te -mtune=xscale -Wa,-mcpu=xscale" +ifeq ($(strip $(BR2_TARGET_GUMSTIX_NETSTIX)),y) +TARGET_SKEL2_DIR=target/device/Gumstix/netstix/target_skeleton +endif + ifeq ($(strip $(BR2_PACKAGE_LINUX)),y) TARGETS+=linux include target/device/Gumstix/basix-connex/linux.mk Copied: trunk/target/device/Gumstix/netstix/target_skeleton (from rev 382, trunk/target/device/Gumstix/basix-connex/target_skeleton) Added: trunk/toolchain/getter_script.sh =================================================================== --- trunk/toolchain/getter_script.sh (rev 0) +++ trunk/toolchain/getter_script.sh 2006-10-01 19:42:35 UTC (rev 383) @@ -0,0 +1,14 @@ +#!/bin/bash +# getter_better script from gumstix +# what a great idea... + +wget --passive-ftp $@ || ( + echo Retrying from astlinux alternate site... + index=$#-1 + # Copy all params into an array + for (( i=0; $?==0; i++ ));do a[$i]=$1; shift; done + # Chop all but filename from last param and prepend out URL + a[$index]=${a[index]/*\//http:\/\/files.astlinux.org/} + # Now wget that from out server + wget ${a[@]} +) Property changes on: trunk/toolchain/getter_script.sh ___________________________________________________________________ Name: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |