<feed xmlns='http://www.w3.org/2005/Atom'>
<title>software/src/opensbi.git/.gitignore, branch master</title>
<subtitle>RISC-V Open Source Supervisor Binary Interface</subtitle>
<id>https://git.rulkc.org/pub/scm/riscv/software/src/opensbi.git/atom?h=master</id>
<link rel='self' href='https://git.rulkc.org/pub/scm/riscv/software/src/opensbi.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/riscv/software/src/opensbi.git/'/>
<updated>2026-06-15T04:55:43+00:00</updated>
<entry>
<title>gitignore: Ignore python cache directories</title>
<updated>2026-06-15T04:55:43+00:00</updated>
<author>
<name>Michael Ellerman</name>
<email>mpe@kernel.org</email>
</author>
<published>2026-06-02T11:24:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/riscv/software/src/opensbi.git/commit/?id=dcb5179b5050075b575369536b4f113f6d15e7b1'/>
<id>urn:sha1:dcb5179b5050075b575369536b4f113f6d15e7b1</id>
<content type='text'>
Running ./scripts/Kconfiglib/setconfig.py leaves the tree with untracked
files:

    Untracked files:
      (use "git add &lt;file&gt;..." to include in what will be committed)
            scripts/Kconfiglib/__pycache__/

Add __pycache__ to .gitignore to fix it.

Signed-off-by: Michael Ellerman &lt;mpe@kernel.org&gt;
Reviewed-by: Anup Patel &lt;anup@brainfault.org&gt;
Link: https://lore.kernel.org/r/20260602-fix-gitignore-v1-1-4299e2e40ee4@kernel.org
Signed-off-by: Anup Patel &lt;anup@brainfault.org&gt;
</content>
</entry>
<entry>
<title>top: add ~ files to .gitignore</title>
<updated>2024-12-15T07:00:45+00:00</updated>
<author>
<name>Ben Dooks</name>
<email>ben.dooks@codethink.co.uk</email>
</author>
<published>2024-12-02T11:03:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/riscv/software/src/opensbi.git/commit/?id=c7866d99fe9a31f32c393a12b0251eacdc89a2b0'/>
<id>urn:sha1:c7866d99fe9a31f32c393a12b0251eacdc89a2b0</id>
<content type='text'>
Ignore temporary files, and avoid accidentally adding
them to a commit.

Signed-off-by: Ben Dooks &lt;ben.dooks@codethink.co.uk&gt;
Reviewed-by: Anup Patel &lt;anup@brainfault.org&gt;
</content>
</entry>
<entry>
<title>top: Add .editorconfig to set basic coding styles</title>
<updated>2024-11-06T10:55:37+00:00</updated>
<author>
<name>Hui Min Mina Chou</name>
<email>minachou@andestech.com</email>
</author>
<published>2024-09-16T09:56:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/riscv/software/src/opensbi.git/commit/?id=369c64517ee5c2753a33a5ff7695b4d2b6066e7b'/>
<id>urn:sha1:369c64517ee5c2753a33a5ff7695b4d2b6066e7b</id>
<content type='text'>
EditorConfig [1] ensures consistent coding styles for developers
collaborating on the same project across various editors and IDEs. By
adopting the Linux project's .editorconfig settings [2] and applying
them to OpenSBI, it helps users maintain uniform indentation across
different IDEs and version control systems, improving development
efficiency.

The main difference from Linux project is the addition of
'trim_trailing_whitespace = true', which removes trailing whitespace
before newlines. This change affects only three files in OpenSBI, but
it improves overall code consistency.

 $ grep -nr "\s$" --include={*.{c,dts,h,lds,ldS,mk,s,S.py},Kconfig,Makefile,Makefile.*} .
 ./include/sbi_utils/fdt/fdt_fixup.h:4: * Implement platform specific DT fixups on top of libfdt.
 ./platform/generic/platform.c:79: * The fw_platform_coldboot_harts_init() function is called by fw_platform_init()
 ./platform/generic/platform.c:81: * according to the DT property "cold-boot-harts" in "/chosen/opensbi-config"

Link: https://editorconfig.org/ [1]
Link: https://lore.kernel.org/lkml/ZbAbmchIO8Cd5hNd@surfacebook.localdomain/T/ [2]
Signed-off-by: Hui Min Mina Chou &lt;minachou@andestech.com&gt;
Reviewed-by: Anup Patel &lt;anup@brainfault.org&gt;
</content>
</entry>
<entry>
<title>.github: Add repo lockdown GitHub workflow and update .gitignore</title>
<updated>2024-07-04T05:01:39+00:00</updated>
<author>
<name>Dongdong Zhang</name>
<email>zhangdongdong@eswincomputing.com</email>
</author>
<published>2024-06-24T08:42:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/riscv/software/src/opensbi.git/commit/?id=c531adbf08cf9cd4cad0bc0c1fbf6e8333955e44'/>
<id>urn:sha1:c531adbf08cf9cd4cad0bc0c1fbf6e8333955e44</id>
<content type='text'>
This commit adds a new GitHub Actions workflow for repository
lockdown. The workflow triggers when a pull request is opened, and it
notifies the contributor to use the OpenSBI mailing list for patch
reviews.

Additionally, the .gitignore file is updated to include the .github
directory.

Signed-off-by: Dongdong Zhang &lt;zhangdongdong@eswincomputing.com&gt;
Reviewed-by: Anup Patel &lt;anup@branifault.org&gt;
</content>
</entry>
<entry>
<title>gitignore: allow gitignore to ignore most dot file</title>
<updated>2023-08-06T04:37:57+00:00</updated>
<author>
<name>Inochi Amaoto</name>
<email>inochiama@outlook.com</email>
</author>
<published>2023-08-01T11:41:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/riscv/software/src/opensbi.git/commit/?id=f536e0b02e7e29abc7e6d845939a8c9fb00ab7e1'/>
<id>urn:sha1:f536e0b02e7e29abc7e6d845939a8c9fb00ab7e1</id>
<content type='text'>
Nowadays, most of the editor use files or directories begin with dot to
store some settings. So let git ignore these files and directories to
reduce potential mistakes.

Add dot match to ignore any editor file and there are two exceptions:
- .gitignore
- .clang-format

Signed-off-by: Inochi Amaoto &lt;inochiama@outlook.com&gt;
Reviewed-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;
Reviewed-by: Anup Patel &lt;anup@brainfault.org&gt;
</content>
</entry>
<entry>
<title>gitignore: add vim swap files</title>
<updated>2022-12-05T12:27:30+00:00</updated>
<author>
<name>Sergey Matyukevich</name>
<email>sergey.matyukevich@syntacore.com</email>
</author>
<published>2022-12-03T21:04:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/riscv/software/src/opensbi.git/commit/?id=e1a0cb062ad6e302ac3f2b64f1abebbc3a3ace85'/>
<id>urn:sha1:e1a0cb062ad6e302ac3f2b64f1abebbc3a3ace85</id>
<content type='text'>
Update .gitignore for vim swap files.

Signed-off-by: Sergey Matyukevich &lt;sergey.matyukevich@syntacore.com&gt;
Reviewed-by: Bin Meng &lt;bmeng@tinylab.org&gt;
Reviewed-by: Xiang W &lt;wxjstz@126.com&gt;
Reviewed-by: Anup Patel &lt;anup@brainfault.org&gt;
</content>
</entry>
<entry>
<title>Makefile: Add cscope support</title>
<updated>2022-10-23T05:17:40+00:00</updated>
<author>
<name>Tan En De</name>
<email>ende.tan@linux.starfivetech.com</email>
</author>
<published>2022-10-13T01:26:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/riscv/software/src/opensbi.git/commit/?id=0fee0bf826b86ceb05b04d82ddaa0d6eaf6713ba'/>
<id>urn:sha1:0fee0bf826b86ceb05b04d82ddaa0d6eaf6713ba</id>
<content type='text'>
Add cscope support so that running `make cscope` will generate/update
cscope files used for source code browsing, while running `make
distclean` will remove the cscope files.

Also add entry in .gitignore to ignore generated cscope files.

Signed-off-by: Tan En De &lt;ende.tan@linux.starfivetech.com&gt;
Reviewed-by: Xiang W &lt;wxjstz@126.com&gt;
Reviewed-by: Anup Patel &lt;anup@brainfault.org&gt;
Reviewed-by: Andrew Jones &lt;ajones@ventanamicro.com&gt;
</content>
</entry>
<entry>
<title>Add tags to .gitignore for being development friendly</title>
<updated>2019-03-05T03:37:23+00:00</updated>
<author>
<name>Xiang Wang</name>
<email>wxjstz@126.com</email>
</author>
<published>2019-03-04T03:20:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/riscv/software/src/opensbi.git/commit/?id=a72467f5747fd6c9468581a787cdd51692bf01ef'/>
<id>urn:sha1:a72467f5747fd6c9468581a787cdd51692bf01ef</id>
<content type='text'>
Signed-off-by: Xiang Wang &lt;wxjstz@126.com&gt;
</content>
</entry>
<entry>
<title>Added .gitignore</title>
<updated>2018-12-20T05:41:36+00:00</updated>
<author>
<name>Damien Le Moal</name>
<email>damien.lemoal@wdc.com</email>
</author>
<published>2018-12-20T05:36:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/riscv/software/src/opensbi.git/commit/?id=fcfbb30fc368c05e5d45c7402a0e916dc58e3d42'/>
<id>urn:sha1:fcfbb30fc368c05e5d45c7402a0e916dc58e3d42</id>
<content type='text'>
Ignore build and install directories

Signed-off-by: Damien Le Moal &lt;damien.lemoal@wdc.com&gt;
</content>
</entry>
</feed>
