Browse Source

README: fix how-we-build section to be device independent

pull/35/head
Martin Kepplinger 6 years ago
parent
commit
aa22fd3d53
2 changed files with 10 additions and 3 deletions
  1. +2
    -3
      README.md
  2. +8
    -0
      x230/release.sh

+ 2
- 3
README.md View File

@ -20,9 +20,8 @@ Either when
* We change the config * We change the config
## How we build ## How we build
* Everything necessary to build coreboot (while only the top 4MB are usable of course) is included here
* The task of [building coreboot](https://www.coreboot.org/Build_HOWTO) is not too difficult
* When doing a release here, we always try to upload to coreboot's [board status project](https://www.coreboot.org/Supported_Motherboards)
* Everything necessary to [build coreboot](https://www.coreboot.org/Build_HOWTO) is included here
* When doing a release, we always try to upload to coreboot's [board status project](https://www.coreboot.org/Supported_Motherboards)
* If we add out-of-tree patches, we always [post them for review](http://review.coreboot.org/) upstream * If we add out-of-tree patches, we always [post them for review](http://review.coreboot.org/) upstream
## Alternatives ## Alternatives


+ 8
- 0
x230/release.sh View File

@ -92,9 +92,13 @@ if [ ! $filesize -eq "$reference_filesize" ] ; then
exit 1 exit 1
fi fi
# copy-in the ROM
cp ${RELEASE_IMAGE} . cp ${RELEASE_IMAGE} .
RELEASE_IMAGE_FILE=$(basename "${RELEASE_IMAGE}") RELEASE_IMAGE_FILE=$(basename "${RELEASE_IMAGE}")
# copy-in device independent stuff
cp ../SOURCE.md sources/
tar -cJf coreboot-x230-${version}.tar.xz \ tar -cJf coreboot-x230-${version}.tar.xz \
README.md \ README.md \
NEWS \ NEWS \
@ -103,8 +107,12 @@ tar -cJf coreboot-x230-${version}.tar.xz \
prepare_internal_flashing.sh \ prepare_internal_flashing.sh \
flashrom_rpi_bottom_unlock.sh \ flashrom_rpi_bottom_unlock.sh \
flashrom_rpi_top_write.sh \ flashrom_rpi_top_write.sh \
sources \
${RELEASE_IMAGE_FILE} ${RELEASE_IMAGE_FILE}
rm ${RELEASE_IMAGE_FILE}
rm sources/SOURCE.md
git commit -a -m "update to ${version}" git commit -a -m "update to ${version}"
git tag -s ${version} -m "coreboot-x230 ${version}" git tag -s ${version} -m "coreboot-x230 ${version}"


Loading…
Cancel
Save