code
stringlengths
1
1.96M
language
stringclasses
1 value
#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. timestamp='2001-11-21' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU soft...
Shell
#! /bin/bash ############################################################################## ## This file is a shell script fragment that supplies the information ## necessary to tailor a template configure script into the configure ## script appropriate for this directory. For more information, check ## any existing ...
Shell
#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-05-22' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License...
Shell
#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-02-01' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GN...
Shell
#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-01-10' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License...
Shell
#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-01-02' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GN...
Shell
#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-05-22' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GN...
Shell
#!/bin/sh # Installs the system into a zipped CD-ROM ISO image file IMAGEFLOPPYLOG=${M_DIR_TMP}/image-floppy.log MKISOFSLOG=${M_DIR_TMP}/mkisofs.log DISTCOMMENT=${M_DIR_TMP}/distcomment ZIPLOG=${M_DIR_TMP}/zip.log echo "" echo "Making Ailes CD-ROM IMAGE file" # Are we doing a release version? If the argument is "-...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## api2html.sh ## # This is used against the kernel API header file, as well as the VSH # and window library header files, to generate a simple formatted HTML # listing of the function declarations with their descriptions if [ $# != 1 ] ; then echo "...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## Copyright (C) 2009 Vadim Ushakov ## ## check-tree.sh ## # Check the files in the build tree and make sure they are all listed in # one of the install files. # Then check that all of the items in the install files are in the build # tree BUILD_DIR="$...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## api2txt.sh ## # This is used against the kernel API header file, as well as the VSH # and window library header files, to generate a simple formatted TEXT # listing of the function declarations with their descriptions if [ $# != 1 ] ; then echo "U...
Shell
#!/bin/sh # Just echos the release number echo "0.7.0.x" exit 0
Shell
#!/bin/sh # Installs the Ailes system on the requested device. Suitable for use # only with Ailes SOURCE distribution. BUILDDIR="$M_DIR_BUILD" BOOTSECTOR="$BUILDDIR"/system/boot/bootsect-fat12 OSLOADER=/alldr FSTAB=/etc/fstab BASICFILES="$BUILDDIR"/system/install-files.basic FULLFILES="$BUILDDIR"/system/install-fil...
Shell
#!/bin/sh ## INPUT=$1 OUTPUT=$2 # Get the help text from the file cat $INPUT | \ sed -n '/<help>/,/<\/help>/p' | \ sed -e '/<help>/d' | \ sed -e '/<\/help>/d' > $OUTPUT if [ ! -s $OUTPUT ] ; then echo - $INPUT does not have a help file fi
Shell
#!/bin/sh # Installs the system into a zipped floppy image file BOOTSECTOR=ailes.bss TMPMOUNTDIR="$M_DIR_TMP/tmp_mnt" SYSLINUXCFG="$M_DIR_TMP/syslinux.cfg" SYSLINUXLOG="$M_DIR_TMP/syslinux.log" DISTCOMMENT="$M_DIR_TMP/distcomment" ZIPLOG="$M_DIR_TMP/zip.log" echo "" echo "Making FLOPPY IMAGE file" while [ "$1" != "...
Shell
#!/bin/sh echo "dev"
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## kernel-symbols.sh ## # This thing just dumps the symbol table of the kernel and creates a simple # list of all global function symbols and their addresses. TMPFILE=symbols$$.tmp if [ $# -ne 2 ] ; then echo "Usage: $0 <kernel_file> <output_file>" ...
Shell
#!/bin/sh # Installs the system into a zipped CD-ROM ISO image file IMAGEFLOPPYLOG=${M_DIR_TMP}/image-floppy.log MKISOFSLOG=${M_DIR_TMP}/mkisofs.log DISTCOMMENT=${M_DIR_TMP}/distcomment ZIPLOG=${M_DIR_TMP}/zip.log echo "" echo "Making Ailes CD-ROM IMAGE file" # Are we doing a release version? If the argument is "-...
Shell
#!/bin/sh echo "dev"
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## Copyright (C) 2009 Vadim Ushakov ## ## check-tree.sh ## # Check the files in the build tree and make sure they are all listed in # one of the install files. # Then check that all of the items in the install files are in the build # tree BUILD_DIR="$...
Shell
#!/bin/sh # Installs the Ailes system on the requested device. Suitable for use # only with Ailes SOURCE distribution. BUILDDIR="$M_DIR_BUILD" BOOTSECTOR="$BUILDDIR"/system/boot/bootsect-fat12 OSLOADER=/alldr FSTAB=/etc/fstab BASICFILES="$BUILDDIR"/system/install-files.basic FULLFILES="$BUILDDIR"/system/install-fil...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## api2txt.sh ## # This is used against the kernel API header file, as well as the VSH # and window library header files, to generate a simple formatted TEXT # listing of the function declarations with their descriptions if [ $# != 1 ] ; then echo "U...
Shell
#!/bin/sh ## INPUT=$1 OUTPUT=$2 # Get the help text from the file cat $INPUT | \ sed -n '/<help>/,/<\/help>/p' | \ sed -e '/<help>/d' | \ sed -e '/<\/help>/d' > $OUTPUT if [ ! -s $OUTPUT ] ; then echo - $INPUT does not have a help file fi
Shell
#!/bin/sh # Just echos the release number echo "0.7.0.x" exit 0
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## kernel-symbols.sh ## # This thing just dumps the symbol table of the kernel and creates a simple # list of all global function symbols and their addresses. TMPFILE=symbols$$.tmp if [ $# -ne 2 ] ; then echo "Usage: $0 <kernel_file> <output_file>" ...
Shell
#!/bin/sh # Installs the system into a zipped floppy image file BOOTSECTOR=ailes.bss TMPMOUNTDIR="$M_DIR_TMP/tmp_mnt" SYSLINUXCFG="$M_DIR_TMP/syslinux.cfg" SYSLINUXLOG="$M_DIR_TMP/syslinux.log" DISTCOMMENT="$M_DIR_TMP/distcomment" ZIPLOG="$M_DIR_TMP/zip.log" echo "" echo "Making FLOPPY IMAGE file" while [ "$1" != "...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## api2html.sh ## # This is used against the kernel API header file, as well as the VSH # and window library header files, to generate a simple formatted HTML # listing of the function declarations with their descriptions if [ $# != 1 ] ; then echo "...
Shell
#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. timestamp='2001-09-13' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as pu...
Shell
#! /bin/bash ############################################################################## ## This file is a shell script fragment that supplies the information ## necessary to tailor a template configure script into the configure ## script appropriate for this directory. For more information, check ## any existing ...
Shell
#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. timestamp='2001-11-21' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU soft...
Shell
#! /bin/bash ############################################################################## ## This file is a shell script fragment that supplies the information ## necessary to tailor a template configure script into the configure ## script appropriate for this directory. For more information, check ## any existing ...
Shell
#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-05-22' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License...
Shell
#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-02-01' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GN...
Shell
#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-01-10' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License...
Shell
#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-01-02' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GN...
Shell
#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-05-22' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GN...
Shell
#!/bin/sh # Installs the system into a zipped CD-ROM ISO image file IMAGEFLOPPYLOG=${M_DIR_TMP}/image-floppy.log MKISOFSLOG=${M_DIR_TMP}/mkisofs.log DISTCOMMENT=${M_DIR_TMP}/distcomment ZIPLOG=${M_DIR_TMP}/zip.log echo "" echo "Making Ailes CD-ROM IMAGE file" # Are we doing a release version? If the argument is "-...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## api2html.sh ## # This is used against the kernel API header file, as well as the VSH # and window library header files, to generate a simple formatted HTML # listing of the function declarations with their descriptions if [ $# != 1 ] ; then echo "...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## Copyright (C) 2009 Vadim Ushakov ## ## check-tree.sh ## # Check the files in the build tree and make sure they are all listed in # one of the install files. # Then check that all of the items in the install files are in the build # tree BUILD_DIR="$...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## api2txt.sh ## # This is used against the kernel API header file, as well as the VSH # and window library header files, to generate a simple formatted TEXT # listing of the function declarations with their descriptions if [ $# != 1 ] ; then echo "U...
Shell
#!/bin/sh # Just echos the release number echo "0.6.10.x" exit 0
Shell
#!/bin/sh # Installs the Ailes system on the requested device. Suitable for use # only with Ailes SOURCE distribution. BUILDDIR="$M_DIR_BUILD" BOOTSECTOR="$BUILDDIR"/system/boot/bootsect-fat12 OSLOADER=/alldr FSTAB=/etc/fstab BASICFILES="$BUILDDIR"/system/install-files.basic FULLFILES="$BUILDDIR"/system/install-fil...
Shell
#!/bin/sh ## INPUT=$1 OUTPUT=$2 # Get the help text from the file cat $INPUT | \ sed -n '/<help>/,/<\/help>/p' | \ sed -e '/<help>/d' | \ sed -e '/<\/help>/d' > $OUTPUT if [ ! -s $OUTPUT ] ; then echo - $INPUT does not have a help file fi
Shell
#!/bin/sh # Installs the system into a zipped floppy image file BOOTSECTOR=ailes.bss TMPMOUNTDIR="$M_DIR_TMP/tmp_mnt" SYSLINUXCFG="$M_DIR_TMP/syslinux.cfg" SYSLINUXLOG="$M_DIR_TMP/syslinux.log" DISTCOMMENT="$M_DIR_TMP/distcomment" ZIPLOG="$M_DIR_TMP/zip.log" echo "" echo "Making FLOPPY IMAGE file" while [ "$1" != "...
Shell
#!/bin/sh echo "dev"
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## kernel-symbols.sh ## # This thing just dumps the symbol table of the kernel and creates a simple # list of all global function symbols and their addresses. TMPFILE=symbols$$.tmp if [ $# -ne 2 ] ; then echo "Usage: $0 <kernel_file> <output_file>" ...
Shell
#!/bin/sh # Installs the system into a zipped CD-ROM ISO image file IMAGEFLOPPYLOG=${M_DIR_TMP}/image-floppy.log MKISOFSLOG=${M_DIR_TMP}/mkisofs.log DISTCOMMENT=${M_DIR_TMP}/distcomment ZIPLOG=${M_DIR_TMP}/zip.log echo "" echo "Making Ailes CD-ROM IMAGE file" # Are we doing a release version? If the argument is "-...
Shell
#!/bin/sh echo "dev"
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## Copyright (C) 2009 Vadim Ushakov ## ## check-tree.sh ## # Check the files in the build tree and make sure they are all listed in # one of the install files. # Then check that all of the items in the install files are in the build # tree BUILD_DIR="$...
Shell
#!/bin/sh # Installs the Ailes system on the requested device. Suitable for use # only with Ailes SOURCE distribution. BUILDDIR="$M_DIR_BUILD" BOOTSECTOR="$BUILDDIR"/system/boot/bootsect-fat12 OSLOADER=/alldr FSTAB=/etc/fstab BASICFILES="$BUILDDIR"/system/install-files.basic FULLFILES="$BUILDDIR"/system/install-fil...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## api2txt.sh ## # This is used against the kernel API header file, as well as the VSH # and window library header files, to generate a simple formatted TEXT # listing of the function declarations with their descriptions if [ $# != 1 ] ; then echo "U...
Shell
#!/bin/sh ## INPUT=$1 OUTPUT=$2 # Get the help text from the file cat $INPUT | \ sed -n '/<help>/,/<\/help>/p' | \ sed -e '/<help>/d' | \ sed -e '/<\/help>/d' > $OUTPUT if [ ! -s $OUTPUT ] ; then echo - $INPUT does not have a help file fi
Shell
#!/bin/sh # Just echos the release number echo "0.6.10.x" exit 0
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## kernel-symbols.sh ## # This thing just dumps the symbol table of the kernel and creates a simple # list of all global function symbols and their addresses. TMPFILE=symbols$$.tmp if [ $# -ne 2 ] ; then echo "Usage: $0 <kernel_file> <output_file>" ...
Shell
#!/bin/sh # Installs the system into a zipped floppy image file BOOTSECTOR=ailes.bss TMPMOUNTDIR="$M_DIR_TMP/tmp_mnt" SYSLINUXCFG="$M_DIR_TMP/syslinux.cfg" SYSLINUXLOG="$M_DIR_TMP/syslinux.log" DISTCOMMENT="$M_DIR_TMP/distcomment" ZIPLOG="$M_DIR_TMP/zip.log" echo "" echo "Making FLOPPY IMAGE file" while [ "$1" != "...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## api2html.sh ## # This is used against the kernel API header file, as well as the VSH # and window library header files, to generate a simple formatted HTML # listing of the function declarations with their descriptions if [ $# != 1 ] ; then echo "...
Shell
#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. timestamp='2001-09-13' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as pu...
Shell
#! /bin/bash ############################################################################## ## This file is a shell script fragment that supplies the information ## necessary to tailor a template configure script into the configure ## script appropriate for this directory. For more information, check ## any existing ...
Shell
#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. timestamp='2001-11-21' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU soft...
Shell
#! /bin/bash ############################################################################## ## This file is a shell script fragment that supplies the information ## necessary to tailor a template configure script into the configure ## script appropriate for this directory. For more information, check ## any existing ...
Shell
#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-05-22' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License...
Shell
#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-02-01' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GN...
Shell
#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-01-10' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License...
Shell
#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-01-02' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GN...
Shell
#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-05-22' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GN...
Shell
#!/bin/sh # Installs the system into a zipped CD-ROM ISO image file IMAGEFLOPPYLOG=${M_DIR_TMP}/image-floppy.log MKISOFSLOG=${M_DIR_TMP}/mkisofs.log DISTCOMMENT=${M_DIR_TMP}/distcomment ZIPLOG=${M_DIR_TMP}/zip.log echo "" echo "Making Ailes CD-ROM IMAGE file" # Are we doing a release version? If the argument is "-...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## api2html.sh ## # This is used against the kernel API header file, as well as the VSH # and window library header files, to generate a simple formatted HTML # listing of the function declarations with their descriptions if [ $# != 1 ] ; then echo "...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## check-tree.sh ## # Check the files in the build tree and make sure they are all listed in # one of the install files. # Then check that all of the items in the install files are in the build # tree BUILD_DIR="$M_DIR_BUILD" BUILD_FILES=buildfiles.$...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## api2txt.sh ## # This is used against the kernel API header file, as well as the VSH # and window library header files, to generate a simple formatted TEXT # listing of the function declarations with their descriptions if [ $# != 1 ] ; then echo "U...
Shell
#!/bin/sh # Just echos the release number echo "0.6.10" exit 0
Shell
#!/bin/sh # Installs the Ailes system on the requested device. Suitable for use # only with Ailes SOURCE distribution. BUILDDIR="$M_DIR_BUILD" BOOTSECTOR="$BUILDDIR"/system/boot/bootsect-fat12 OSLOADER=/alldr FSTAB=/etc/fstab BASICFILES="$BUILDDIR"/system/install-files.basic FULLFILES="$BUILDDIR"/system/install-fil...
Shell
#!/bin/sh ## INPUT=$1 OUTPUT=$2 # Get the help text from the file cat $INPUT | \ sed -n '/<help>/,/<\/help>/p' | \ sed -e '/<help>/d' | \ sed -e '/<\/help>/d' > $OUTPUT if [ ! -s $OUTPUT ] ; then echo - $INPUT does not have a help file fi
Shell
#!/bin/sh # Installs the system into a zipped floppy image file BOOTSECTOR=ailes.bss TMPMOUNTDIR="$M_DIR_TMP/tmp_mnt" SYSLINUXCFG="$M_DIR_TMP/syslinux.cfg" SYSLINUXLOG="$M_DIR_TMP/syslinux.log" DISTCOMMENT="$M_DIR_TMP/distcomment" ZIPLOG="$M_DIR_TMP/zip.log" echo "" echo "Making FLOPPY IMAGE file" while [ "$1" != "...
Shell
#!/bin/sh echo "dev"
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## kernel-symbols.sh ## # This thing just dumps the symbol table of the kernel and creates a simple # list of all global function symbols and their addresses. TMPFILE=symbols$$.tmp if [ $# -ne 2 ] ; then echo "Usage: $0 <kernel_file> <output_file>" ...
Shell
#!/bin/sh # Installs the system into a zipped CD-ROM ISO image file IMAGEFLOPPYLOG=${M_DIR_TMP}/image-floppy.log MKISOFSLOG=${M_DIR_TMP}/mkisofs.log DISTCOMMENT=${M_DIR_TMP}/distcomment ZIPLOG=${M_DIR_TMP}/zip.log echo "" echo "Making Ailes CD-ROM IMAGE file" # Are we doing a release version? If the argument is "-...
Shell
#!/bin/sh echo "dev"
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## check-tree.sh ## # Check the files in the build tree and make sure they are all listed in # one of the install files. # Then check that all of the items in the install files are in the build # tree BUILD_DIR="$M_DIR_BUILD" BUILD_FILES=buildfiles.$...
Shell
#!/bin/sh # Installs the Ailes system on the requested device. Suitable for use # only with Ailes SOURCE distribution. BUILDDIR="$M_DIR_BUILD" BOOTSECTOR="$BUILDDIR"/system/boot/bootsect-fat12 OSLOADER=/alldr FSTAB=/etc/fstab BASICFILES="$BUILDDIR"/system/install-files.basic FULLFILES="$BUILDDIR"/system/install-fil...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## api2txt.sh ## # This is used against the kernel API header file, as well as the VSH # and window library header files, to generate a simple formatted TEXT # listing of the function declarations with their descriptions if [ $# != 1 ] ; then echo "U...
Shell
#!/bin/sh ## INPUT=$1 OUTPUT=$2 # Get the help text from the file cat $INPUT | \ sed -n '/<help>/,/<\/help>/p' | \ sed -e '/<help>/d' | \ sed -e '/<\/help>/d' > $OUTPUT if [ ! -s $OUTPUT ] ; then echo - $INPUT does not have a help file fi
Shell
#!/bin/sh # Just echos the release number echo "0.6.10" exit 0
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## kernel-symbols.sh ## # This thing just dumps the symbol table of the kernel and creates a simple # list of all global function symbols and their addresses. TMPFILE=symbols$$.tmp if [ $# -ne 2 ] ; then echo "Usage: $0 <kernel_file> <output_file>" ...
Shell
#!/bin/sh # Installs the system into a zipped floppy image file BOOTSECTOR=ailes.bss TMPMOUNTDIR="$M_DIR_TMP/tmp_mnt" SYSLINUXCFG="$M_DIR_TMP/syslinux.cfg" SYSLINUXLOG="$M_DIR_TMP/syslinux.log" DISTCOMMENT="$M_DIR_TMP/distcomment" ZIPLOG="$M_DIR_TMP/zip.log" echo "" echo "Making FLOPPY IMAGE file" while [ "$1" != "...
Shell
#!/bin/sh ## ## Copyright (C) 1998-2007 J. Andrew McLaughlin ## ## api2html.sh ## # This is used against the kernel API header file, as well as the VSH # and window library header files, to generate a simple formatted HTML # listing of the function declarations with their descriptions if [ $# != 1 ] ; then echo "...
Shell
#!/bin/bash wd=$(dirname $0) srcf=$(${wd}/gputils.sh)/libgputils/gpprocessor.c if [ -f ${srcf} ] then proc=$(echo $1 | tr '[A-Z]' '[a-z]') if [ -n "${proc}" ] then egrep -e \"${proc}\" ${srcf} | awk -F, '{print $1}' | sed 's% *%%g; s%"%%g; s%.*_%%g' | tr '[A-Z]' '[a-z]' else cat<<EOF>&2 Usage $0 <proc> D...
Shell
#!/bin/bash # # Input: proc name (as aino.lib target basename), e.g. P16F873 # Output: proc speed (FOSC), e.g. 4000000 # # Adapt clock speed (FOSC) in 'xtal.sh' # wd=$(dirname $0) MHz=1000000 case $(${wd}/xtal.sh $1 ) in 3) echo "3.57945 * ${MHz}" | bc -l | sed 's/\..*//' ;; 4) echo "4.0 * ${MHz}" | bc -l | sed ...
Shell
#!/bin/bash # # Output sources directory for the gputils package. # As from https://sourceforge.net/projects/gputils/files/gputils/0.13.7/gputils-0.13.7.tar.gz/download # echo ${HOME}/src/gputils-0.13.7
Shell
#!/bin/bash # # Input: proc name (as aino.lib target basename), e.g. P16F873 # Output: proc speed (FOSC), e.g. 4000000 # # Adapt clock speed (FOSC) in 'xtal.sh' # wd=$(dirname $0) MHz=1000000 case $(${wd}/xtal.sh $1 ) in 3) echo "3.57945 * ${MHz}" | bc -l | sed 's/\..*//' ;; 4) echo "4.0 * ${MHz}" | bc -l | sed ...
Shell
#!/bin/bash wd=$(dirname $0) function usage { cat<<EOF>&2 Usage $0 [-r] target Description Generate one or more java source files into 'src/aino/lib' for the proc or arch described by 'target'. Options -r|--r|--regenerate Only regenerate existing files. -h|-?|--help This message. See al...
Shell
#!/bin/bash wd=$(dirname $0) srcf=$(${wd}/gputils.sh)/libgputils/gpprocessor.c if [ -f ${srcf} ] then arch=$(echo $1 | tr '[a-z]' '[A-Z]') if [ -n "${arch}" ] then if [ -n "$(${wd}/arch.sh ${arch} )" ] then echo ${arch} else egrep "_${arch}," ${srcf} | awk -F, '{print $4}' | sed 's% *%%g; s%"%%g; s%...
Shell
#!/bin/bash wd=$(dirname $0) srcf=$(${wd}/gputils.sh)/libgputils/gpprocessor.c if [ -f ${srcf} ] then proc=$(echo $1 | tr '[A-Z]' '[a-z]') if [ -n "${proc}" ] then egrep -e \"${proc}\" ${srcf} | awk -F, '{print $1}' | sed 's% *%%g; s%"%%g; s%.*_%%g' | tr '[A-Z]' '[a-z]' else cat<<EOF>&2 Usage $0 <proc> D...
Shell
#!/bin/bash # # Cycle through a compile-error and delete file process # until complete # count=1 while [ 0 -lt ${count} ] do count=0 for srcf in $(2>&1 javac -cp aino.jar -g -d bin -encoding ISO-8859-1 src/aino/lib/*.java | egrep aino/lib | sed 's/:.*//' | sort -u ) do if svn delete --force ${srcf} then ...
Shell
#!/bin/bash # # Input: proc name (as aino.lib target basename), e.g. P16F873 # Output: default XTAL for proc, one of {3,4,5,7,10,12,16,20} as for 'clock.sh' # case ${1} in *) echo 4 ;; esac
Shell
#!/bin/bash wd=$(dirname $0) srcf=$(${wd}/gputils.sh)/libgputils/gpprocessor.c if [ -f ${srcf} ] then arch=$(echo $1 | tr '[a-z]' '[A-Z]') if [ -n "${arch}" ] then if [ -n "$(${wd}/arch.sh ${arch} )" ] then echo ${arch} else egrep "_${arch}," ${srcf} | awk -F, '{print $4}' | sed 's% *%%g; s%"%%g; s%...
Shell
#!/bin/bash # # Cycle through a compile-error and delete file process # until complete # count=1 while [ 0 -lt ${count} ] do count=0 for srcf in $(2>&1 javac -cp aino.jar -g -d bin -encoding ISO-8859-1 src/aino/lib/*.java | egrep aino/lib | sed 's/:.*//' | sort -u ) do if svn delete --force ${srcf} then ...
Shell
#!/bin/bash # # Output sources directory for the gputils package. # As from https://sourceforge.net/projects/gputils/files/gputils/0.13.7/gputils-0.13.7.tar.gz/download # echo ${HOME}/src/gputils-0.13.7
Shell
#!/bin/bash wd=$(dirname $0) function usage { cat<<EOF>&2 Usage $0 [-r] target Description Generate one or more java source files into 'src/aino/lib' for the proc or arch described by 'target'. Options -r|--r|--regenerate Only regenerate existing files. -h|-?|--help This message. See al...
Shell
#!/bin/bash # # Input: proc name (as aino.lib target basename), e.g. P16F873 # Output: default XTAL for proc, one of {3,4,5,7,10,12,16,20} as for 'clock.sh' # case ${1} in *) echo 4 ;; esac
Shell
spawn-fcgi -u www-data -g www-data -d /var/www/simplecd/ -f /var/www/simplecd/code.py -a 127.0.0.1 -p 9001 -F 2
Shell