diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-03 14:01:35 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-03 14:01:35 +0000 |
commit | e6f2eaf47a177a8eca054d1d70a1b6287e8c3521 (patch) | |
tree | c5719e819a9e37df4b54affd61438f382ec38a8f /docs/HACKING.md | |
parent | Adding upstream version 060+5. (diff) | |
download | dracut-e6f2eaf47a177a8eca054d1d70a1b6287e8c3521.tar.xz dracut-e6f2eaf47a177a8eca054d1d70a1b6287e8c3521.zip |
Adding upstream version 102.upstream/102
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'docs/HACKING.md')
-rw-r--r-- | docs/HACKING.md | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/HACKING.md b/docs/HACKING.md index 6a19434..b6789fe 100644 --- a/docs/HACKING.md +++ b/docs/HACKING.md @@ -4,9 +4,9 @@ Please make sure to follow our [Contribution Guidelines](../CONTRIBUTING.md). ## git -Currently dracut lives on github.com. +Currently dracut-ng lives on github.com. -* https://github.com/dracutdevs/dracut.git +* https://github.com/dracut-ng/dracut-ng.git Pull requests should be filed preferably on github nowadays. @@ -244,8 +244,8 @@ $ podman run --rm -it \ ``` with `[CONTAINER]` being one of the -[github `dracutdevs` containers](https://github.com/orgs/dracutdevs/packages), -e.g. `ghcr.io/dracutdevs/fedora:latest`. +[github `dracut-ng` containers](https://github.com/orgs/dracut-ng/packages), +e.g. `ghcr.io/dracut-ng/fedora:latest`. ### On bare metal @@ -253,27 +253,27 @@ For the testsuite to pass, you will have to install at least the software packag mentioned in the `test/container` Dockerfiles. ``` -$ sudo make clean check +$ make clean check ``` in verbose mode: ``` -$ sudo make V=1 clean check +$ make V=1 clean check ``` only specific test: ``` -$ sudo make TESTS="01 20 40" clean check +$ make TESTS="01 20 40" clean check ``` only runs the 01, 20 and 40 tests. debug a specific test case: ``` $ cd TEST-01-BASIC -$ sudo make clean setup run +$ make clean setup run ``` ... change some kernel parameters in `test.sh` ... ``` -$ sudo make run +$ make run ``` to run the test without doing the setup. |