Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make adjustments for Odroid N2+ aarch64 build. | William Harrington | 2021-04-19 | 1 | -0/+1 |
| | |||||
* | Create fail and success functions and remove trailing white spaces at ends ↵ | William Harrington | 2021-04-15 | 1 | -4/+5 |
| | | | | of lines. | ||||
* | Add shellcheck directives. | William Harrington | 2021-04-08 | 1 | -0/+1 |
| | |||||
* | Change grep to look for package up until the first comma. | William Harrington | 2021-04-07 | 1 | -2/+2 |
| | |||||
* | Have grep exit 0 without stdoutput when checking if a package is in ↵ | William Harrington | 2021-04-05 | 1 | -1/+1 |
| | | | | packages.csv. | ||||
* | Remove lines for testing. | William Harrington | 2021-04-05 | 1 | -3/+0 |
| | |||||
* | Add a block to exit if package does not exist in packages.csv. | William Harrington | 2021-04-05 | 1 | -2/+11 |
| | |||||
* | Cleanup information messages. | William Harrington | 2021-04-02 | 1 | -2/+2 |
| | |||||
* | Format FAIL and OK messages with intense color. Reset colors before new ↵ | William Harrington | 2021-04-02 | 1 | -5/+5 |
| | | | | line. Try to keep a sane style in the scripts. | ||||
* | Use if [[ ... ]] instead of [ ... ] and change retval check in setupdisk ↵ | William Harrington | 2021-04-02 | 1 | -3/+3 |
| | | | | when checking exit code when creating partition. | ||||
* | Adjust function spinner to take in a spinner type. If no type is defined ↵ | William Harrington | 2021-04-01 | 1 | -3/+3 |
| | | | | then random will be chosen. Pass the 2nd argument as spinnertype when spinner is invoked. Cleanup some extraction text and reset the colors at the end. | ||||
* | If extraction is successful, print OK. Remove new line before printing the ↵ | William Harrington | 2021-03-26 | 1 | -1/+3 |
| | | | | compiling package message. | ||||
* | Remove unset command. Not needed. Remove the sleep 5 when compiling. | William Harrington | 2021-03-26 | 1 | -3/+0 |
| | |||||
* | Unset unused variables and remove commented out old way of getting DIRNAME. | William Harrington | 2021-03-25 | 1 | -1/+2 |
| | |||||
* | Use printf instead of echo. | William Harrington | 2021-03-23 | 1 | -6/+6 |
| | |||||
* | Cleanup packageinstall.sh and get toplevel directory using tar and reduce ↵ | William Harrington | 2021-03-23 | 1 | -21/+17 |
| | | | | the complexity of extracting then moving the source. | ||||
* | Remove LFS_SRC and use /sources, make extraction text intense blue, and ↵ | William Harrington | 2021-03-22 | 1 | -4/+10 |
| | | | | change the way we move files to include hidden files. Will be need for Perl and possibly other tarballs with hidden files. | ||||
* | Remove interpreter from scripts that are sourced. Remove executable bits are ↵ | William Harrington | 2021-03-22 | 1 | -3/+1 |
| | | | | required. | ||||
* | Assign retval after spinner returns exit code. | William Harrington | 2021-03-19 | 1 | -0/+1 |
| | |||||
* | Put compiling message on a new line. | William Harrington | 2021-03-19 | 1 | -1/+1 |
| | |||||
* | Add spinner when extracting source. | William Harrington | 2021-03-18 | 1 | -2/+3 |
| | |||||
* | Return the exit status from packageinstall scrip to the chapter loops in ↵ | William Harrington | 2021-03-18 | 1 | -5/+5 |
| | | | | lfs.sh and for sure stop the script when non zero status is returned. | ||||
* | Redirect popd command to null. Remove continue in first if block, useless here. | William Harrington | 2021-03-18 | 1 | -2/+1 |
| | |||||
* | Add package install. If package has been built then continue. Extract ↵ | William Harrington | 2021-03-18 | 1 | -0/+50 |
package, then build and pass background proces pid to spinner then when done, based on return value, display fail message or say package is done and touch a file named the package to notify the package was sucessfully built and installed during a consecutive run. |