Merge branch 'fix-scripts' into 'master'
Fix a typo on the scripts See merge request redox-os/redox!1482
This commit is contained in:
commit
cf8ffe43c1
|
@ -1,8 +1,8 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# This script allow the user to copy a Rust backtrace from Redox
|
||||
# and retrieve the symbols
|
||||
|
||||
#!/usr/bin/env bash
|
||||
|
||||
usage()
|
||||
{
|
||||
echo "Usage: $0 -r recipe [ -e command_name ] [ -R ] [ -X | -6 | -A ] [[ -b backtracefile ] | [ addr1 ... ]]"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# This script run the recipe command options on some Cookbook category
|
||||
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# This script run the recipe command options on some Cookbook category
|
||||
|
||||
if [ -z "$1" ] || [ -z "$2" ]
|
||||
then
|
||||
echo "Build or clean all recipe directories in a category" >&2
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# This script show the changelog of all Redox components
|
||||
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# This script show the changelog of all Redox components
|
||||
|
||||
set -e
|
||||
|
||||
LAST_RELEASE_TAG="$(git describe --tags --abbrev=0)"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# This script show the current Git branch and commit of the recipe source
|
||||
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# This script show the current Git branch and commit of the recipe source
|
||||
|
||||
if [ $# -ne 1 ]
|
||||
then
|
||||
echo "Usage: $0 recipe_name"
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# This script install Redox in the free space of your storage device
|
||||
# and add a boot entry (if you are using the systemd-boot boot loader)
|
||||
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
if [ -n "$1" ]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# This script show all files installed by a recipe
|
||||
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# This script show all files installed by a recipe
|
||||
|
||||
# Ensure arch and config are set as desired, we use these to find the build dir
|
||||
export ARCH=$(uname -m)
|
||||
export CONFIG_NAME=desktop
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# This script create a list with:
|
||||
# "recipe-name = {} #TODO"
|
||||
# For quick testing of WIP recipes
|
||||
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Given a string, find recipe.toml files containing that string.
|
||||
# Create a list that can be copy/pasted into a filesystem config.
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# This script show the package size of the recipes ("stage.pkgar" and "stage.tar.gz")
|
||||
# It must be used by package maintainers to enforce the library linking size policy
|
||||
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if [ $# = 0 ]
|
||||
then
|
||||
find cookbook/recipes \( -name stage.pkgar -o -name stage.tar.gz \) -exec ls -hs {} \;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# This script show the contents of the "stage" and "sysroot" folders in some recipe
|
||||
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# This script show the contents of the "stage" and "sysroot" folders in some recipe
|
||||
|
||||
if [ -z "$*" ]
|
||||
then
|
||||
echo "Show the contents of the stage and sysroot folders in recipe(s)"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# This script create and copy the Redox bootable image to an Ventoy-formatted device
|
||||
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# This script create and copy the Redox bootable image to an Ventoy-formatted device
|
||||
|
||||
set -e
|
||||
|
||||
ARCHS=(
|
||||
|
|
Loading…
Reference in a new issue