Is this a good place to submit Clover patches? Sourceforge is a joke

<pre><code>

Index: makeiso

--- makeiso (revision 5027) +++ makeiso (working copy) @@ -7,10 +7,11 @@ declare -r DRIVERS_LEGACY="BIOS" # same in buildpkg.sh/ebuild.sh declare -r DRIVERS_UEFI="UEFI" # same in buildpkg.sh/ebuild.sh declare -r DRIVERS_OFF="off" # same in buildpkg.sh/ebuild.sh +declare -r SYSNAME="$(uname)"

# Check that the caller is make caller=$(ps -p $PPID -o comm=) -if [[ "$caller" != "make" ]]; then +if [[ "$caller" != "make" && "$SYSNAME" != Linux ]]; then echo "Error: don't call the '$0' script directly !" >&2 echo "Use the 'make iso' command instead" >&2 # exit 1 @@ -50,7 +51,6 @@ dd if=${CLOVERROOT}/Bootloaders/x64/boot6 of=${SYMROOT}/i386/cdboot conv=sync bs=2k seek=1 &> /dev/null

echo Update cdboot with boot file size info -declare -r SYSNAME="$(uname)" if [[ "$SYSNAME" == Linux ]]; then declare -r STAT_PARAM='-c%s' else

</code></pre>

submitted by /u/florin9doi
[link] [comments]