Skip to content

Commit

Permalink
narcissus: don't select a default machine, force user to do it
Browse files Browse the repository at this point in the history
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
  • Loading branch information
koenkooi committed May 3, 2012
1 parent 4d4c410 commit 568a351
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions machine-list.html
@@ -1,6 +1,7 @@
<div id='machinelist'>
Select the machine you want to build your rootfs image for:<br/><br/>
<select name='machine' onChange='showValues();'>
<option value="invalid">--------</option>
<option value="beagleboard">beagleboard</option>
<option value="beaglebone">beaglebone</option>
<option value="qemuarm">qemuarm</option>
Expand Down
3 changes: 2 additions & 1 deletion scripts/extract-supported-machines.sh
@@ -1,7 +1,7 @@
#!/bin/sh

# Narcissus - Online image builder for the angstrom distribution
# Koen Kooi (c) 2010-2011 all rights reserved
# Koen Kooi (c) 2010-2012 all rights reserved

# This script extracts metadata from the cache dir to use in e.g. manifests

Expand All @@ -12,6 +12,7 @@ fi
echo "<div id='machinelist'>" > machine-list.html
echo " Select the machine you want to build your rootfs image for:<br/><br/>" >> machine-list.html
echo " <select name='machine' onChange='showValues();'>" >> machine-list.html
echo " <option value=\"invalid\">--------</option>" >> machine-list.html

for machine in $(find conf/ -name "arch.conf" | awk -F/ '{print $2}' | sort | uniq) ; do
echo " <option value=\"$machine\">$machine</option>" >> machine-list.html
Expand Down

0 comments on commit 568a351

Please sign in to comment.