forked from PartialVolume/shredos.x86_64
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PartialVolume#274 ATTENTION: FIRST COMMIT, TRIPLE CHECK FOR MISTAKES …
…Added parallel package to buildroot (PartialVolume#275) Added parallel package to buildroot to close PartialVolume#274 Added .DS_Store due for development on mac clients. Updated readme.md regarding sg3_utils & parallel
- Loading branch information
Showing
13 changed files
with
51 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ | |
*.rej | ||
*~ | ||
*.pyc | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
config BR2_PACKAGE_PARALLEL | ||
bool "parallel" | ||
depends on BR2_PACKAGE_PERL | ||
depends on BR2_PACKAGE_PROCPS_NG | ||
help | ||
A shell tool for executing jobs in parallel. | ||
|
||
https://www.gnu.org/software/parallel/ | ||
|
||
comment "parallel needs Perl and procps-ng" | ||
depends on BR2_PACKAGE_PERL | ||
depends on BR2_PACKAGE_PROCPS_NG |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
sha256 d7bbd95b7631980b172be04cbd2138d5f7d8c063d6da5ad8f9f70dfd88c8309d parallel-20240822.tar.bz2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
################################################################################ | ||
# | ||
# parallel | ||
# | ||
################################################################################ | ||
|
||
# https://ftp.gnu.org/gnu/parallel/parallel-20240822.tar.bz2.sig | ||
# Latest version can always be sourced at https://ftp.gnu.org/gnu/parallel/parallel-latest.tar.bz2 | ||
|
||
PARALLEL_VERSION = 20240822 | ||
PARALLEL_SOURCE = parallel-$(PARALLEL_VERSION).tar.bz2 | ||
PARALLEL_SITE = https://ftp.gnu.org/gnu/parallel | ||
PARALLEL_LICENSE = GPL-3.0-only | ||
PARALLEL_LICENSE_FILES = LICENSES/GPL-3.0-only.txt | ||
|
||
$(eval $(autotools-package)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,4 +31,3 @@ index 2e8fb7dd..cf4a80de 100644 | |
#define SECURE_ESCAPE_ARGS(dst, bytes, cells) do { \ | ||
-- | ||
GitLab | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,5 +55,4 @@ index c4ad5da3..29cfedf7 100644 | |
#include <sys/syscall.h> | ||
#endif | ||
-- | ||
2.35.1 | ||
|
||
2.35.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,4 +91,4 @@ case "$1" in | |
*) | ||
echo "Usage: $0 {start|stop|restart|reload}" | ||
exit 1 | ||
esac | ||
esac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters