Browse Source

Corrected various typos (#91)

* Rename License.md to LICENSE

* Correct typos

* Clean up code layout

Organize layout with extra lines
jessie
TJ Rana 8 years ago committed by XECDesign
parent
commit
3441133d1c
  1. 0
      LICENSE
  2. 4
      README.md
  3. 1
      build-docker.sh
  4. 2
      depends
  5. 1
      export-image/00-allow-rerun/files/policy-rc.d
  6. 2
      export-image/02-network/01-run.sh
  7. 1
      export-image/03-set-partuuid/00-run.sh
  8. 1
      export-image/prerun.sh
  9. 4
      scripts/dependencies_check
  10. 1
      stage0/prerun.sh
  11. 1
      stage1/01-sys-tweaks/files/policy-rc.d
  12. 1
      stage1/prerun.sh
  13. 1
      stage2/prerun.sh
  14. 1
      stage3/00-install-packages/01-run.sh
  15. 1
      stage3/prerun.sh
  16. 1
      stage4/prerun.sh
  17. 1
      stage5/prerun.sh

0
License.md → LICENSE

4
README.md

@ -132,11 +132,11 @@ maintenance and allows for more easy customization.
standard console hardware permission groups.
There are a few tools that may not make a whole lot of sense here for
development purposes on a minimal system such as basic python and lua
development purposes on a minimal system such as basic Python and Lua
packages as well as the `build-essential` package. They are lumped right
in with more essential packages presently, though they need not be with
pi-gen. These are understandable for Raspbian's target audience, but if
you were looking for something between truly minimal and Raspbian-lite,
you were looking for something between truly minimal and Raspbian-Lite,
here's where you start trimming.
- **Stage 3** - desktop system. Here's where you get the full desktop system

1
build-docker.sh

@ -1,4 +1,5 @@
#!/bin/bash -e
DOCKER="docker"
set +e
$DOCKER ps >/dev/null 2>&1

2
depends

@ -9,4 +9,4 @@ mkdosfs:dosfstools
capsh:libcap2-bin
bsdtar
grep
rsync
rsync

1
export-image/00-allow-rerun/files/policy-rc.d

@ -1,2 +1,3 @@
#!/bin/sh
exit 101

2
export-image/02-network/01-run.sh

@ -1,3 +1,3 @@
#/bin/bash -e
#!/bin/bash -e
install -m 644 files/resolv.conf ${ROOTFS_DIR}/etc/

1
export-image/03-set-partuuid/00-run.sh

@ -1,4 +1,5 @@
#!/bin/bash -e
IMG_FILE="${STAGE_WORK_DIR}/${IMG_DATE}-${IMG_NAME}${IMG_SUFFIX}.img"
IMGID="$(fdisk -l ${IMG_FILE} | sed -n 's/Disk identifier: 0x\([^ ]*\)/\1/p')"

1
export-image/prerun.sh

@ -1,4 +1,5 @@
#!/bin/bash -e
IMG_FILE="${STAGE_WORK_DIR}/${IMG_DATE}-${IMG_NAME}${IMG_SUFFIX}.img"
unmount_image ${IMG_FILE}

4
scripts/dependencies_check

@ -1,5 +1,5 @@
# dependencies_check
# $@ Dependnecy files to check
# $@ Dependency files to check
#
# Each dependency is in the form of a tool to test for, optionally followed by
# a : and the name of a package if the package on a Debian-ish system is not
@ -21,7 +21,7 @@ dependencies_check()
done
if [[ "$missing" ]]; then
echo "Reqired dependencies not installed"
echo "Required dependencies not installed"
echo
echo "This can be resolved on Debian/Raspbian systems by installing:"
echo "$missing"

1
stage0/prerun.sh

@ -1,4 +1,5 @@
#!/bin/bash -e
if [ ! -d ${ROOTFS_DIR} ]; then
bootstrap jessie ${ROOTFS_DIR} http://mirrordirector.raspbian.org/raspbian/
fi

1
stage1/01-sys-tweaks/files/policy-rc.d

@ -1,2 +1,3 @@
#!/bin/sh
exit 101

1
stage1/prerun.sh

@ -1,4 +1,5 @@
#!/bin/bash -e
if [ ! -d ${ROOTFS_DIR} ]; then
copy_previous
fi

1
stage2/prerun.sh

@ -1,4 +1,5 @@
#!/bin/bash -e
if [ ! -d ${ROOTFS_DIR} ]; then
copy_previous
fi

1
stage3/00-install-packages/01-run.sh

@ -6,4 +6,3 @@ update-alternatives --install /usr/bin/x-www-browser \
update-alternatives --install /usr/bin/gnome-www-browser \
gnome-www-browser /usr/bin/chromium-browser 86
EOF

1
stage3/prerun.sh

@ -1,4 +1,5 @@
#!/bin/bash -e
if [ ! -d ${ROOTFS_DIR} ]; then
copy_previous
fi

1
stage4/prerun.sh

@ -1,4 +1,5 @@
#!/bin/bash -e
if [ ! -d ${ROOTFS_DIR} ]; then
copy_previous
fi

1
stage5/prerun.sh

@ -1,4 +1,5 @@
#!/bin/bash -e
if [ ! -d ${ROOTFS_DIR} ]; then
copy_previous
fi

Loading…
Cancel
Save