From: <bms...@us...> - 2006-07-11 21:17:00
|
Revision: 2348 Author: bmsleight Date: 2006-07-11 14:16:53 -0700 (Tue, 11 Jul 2006) ViewCVS: http://svn.sourceforge.net/morphix/?rev=2348&view=rev Log Message: ----------- Minor changes Modified Paths: -------------- trunk/morph-scripts/debian/morphmini.1 trunk/morph-scripts/morphix-rebrand.sh Modified: trunk/morph-scripts/debian/morphmini.1 =================================================================== --- trunk/morph-scripts/debian/morphmini.1 2006-07-11 21:14:29 UTC (rev 2347) +++ trunk/morph-scripts/debian/morphmini.1 2006-07-11 21:16:53 UTC (rev 2348) @@ -48,13 +48,35 @@ <local> <file>/home/morph/test\&.jpg</file> <file>/home/morph/test2\&.jpg</file> - <file>/home/morph/test3\&.jpg</file> - <file>/home/morph/test4\&.jpg</file> </local> <remote> <file>http://www\&.barwap\&.com/morphix/mmorphix/morphixsound2\&.wav</file> </remote> </filelist> + <root> <!\-\- Files or Packages to be overlaid on the rootfile system \- good for saving ramspace \-\-> + <files> + <local> + <from>/home/morph/test\&.jpg</from> + <to>/usr/share/misc/</to> + </local> + <local> + <from>/home/morph/test2\&.jpg</from> + <to>/usr/share/misc/</to> + </local> + <remote> + <from>http://www\&.barwap\&.com/morphix/mmorphix/morphixsound2\&.wav</from> + <to>/usr/share/misc/</to> + </remote> + </files> + <packages> + <local> + <targz>/home/morph/example\&.tar\&.gz</targz> + </local> + <remote> + <targz>http://www\&.barwap\&.com/morphix/rebrand/morphix\-rebrand\&.tar\&.gz</targz> + </remote> + </packages> + </root> <commandlist> <!\-\- Commands to be started from minimodule \-\-> <preX> <!\-\- Commands to run before X windows start \-\-> <command>echo "Hello"</command> @@ -69,11 +91,13 @@ <command>echo "Hello 6"</command> </postX> </commandlist> + <other> <!\-\- used to make a minimodule in another way \- command will be passed $1 for minimodule filesystem \-\-> + <buildcommand>echo "Hello World" > $1/morphix/hello\&.txt</buildcommand> + </other> </minimod> </group> </comps> - Most templates are much shorter\&. Sections version, bootoption, filelist, local, remote, commandlist, preX, X, postX are optional\&. .IP Modified: trunk/morph-scripts/morphix-rebrand.sh =================================================================== --- trunk/morph-scripts/morphix-rebrand.sh 2006-07-11 21:14:29 UTC (rev 2347) +++ trunk/morph-scripts/morphix-rebrand.sh 2006-07-11 21:16:53 UTC (rev 2348) @@ -22,7 +22,7 @@ mkdir -p $OLD_IMAGE_DIR TMP=$(basename "${GRAPHIC}") TITLE=${TMP%.*} -# TITLE=$(echo "$TITLE" | tr -cd '[:alnum:]') + TITLE=$(echo "$TITLE" | tr -cd '[:alnum:]') TITLE_LC=$(echo "$TITLE" | tr A-Z a-z) TITLE_UC=$(echo "$TITLE" | tr a-z A-Z) echo "New title: $TITLE $TITLE_LC $TITLE_UC" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |