mirror of
https://github.com/Fred78290/nct6687d
synced 2024-11-16 07:48:04 +01:00
Merge pull request #27 from hzyitc/main
Use git log to generate debian/changelog
This commit is contained in:
commit
404db05fe6
6 changed files with 15 additions and 50 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -15,6 +15,7 @@ nct6687.o
|
|||
.vscode/
|
||||
5.1*/
|
||||
|
||||
debian/changelog
|
||||
debian/nct6687d-dkms*
|
||||
debian/.debhelper
|
||||
debian/debhelper-build-stamp
|
||||
|
|
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,14 +0,0 @@
|
|||
# CHANGELOG
|
||||
|
||||
**07 Nov 2020**
|
||||
- Initial release
|
||||
|
||||
**08 Nov 2020**
|
||||
- Add voltage support with good label
|
||||
- Fix fan label
|
||||
- Add min/max value for fan speed (RPM)
|
||||
- Add min/max value for temperature
|
||||
|
||||
**23 Dec 2020**
|
||||
- Fix issue #2: Not all fans are updated
|
||||
- Add debug trace to nct6687_update_fans function
|
13
Makefile
13
Makefile
|
@ -17,3 +17,16 @@ install: build
|
|||
|
||||
clean:
|
||||
[ -d "${curpwd}/${kver}" ] && make -C /lib/modules/${kver}/build M=${curpwd}/${kver} clean
|
||||
|
||||
|
||||
debian/changelog: FORCE
|
||||
git --no-pager log \
|
||||
--format='nct6687d-dkms (%ad) unstable; urgency=low%n%n * %s%n%n -- %aN <%aE> %aD%n' \
|
||||
--date='format:%Y%m%d-%H%M%S' \
|
||||
> $@
|
||||
|
||||
deb: debian/changelog
|
||||
dpkg-buildpackage -b -rfakeroot -us -uc
|
||||
|
||||
.PHONY: FORCE
|
||||
FORCE:
|
|
@ -41,7 +41,7 @@ cd nct6687d
|
|||
3. Build package
|
||||
|
||||
```shell
|
||||
dpkg-buildpackage -b -rfakeroot -us -uc
|
||||
make deb
|
||||
```
|
||||
|
||||
4. Install package
|
||||
|
|
35
debian/changelog
vendored
35
debian/changelog
vendored
|
@ -1,35 +0,0 @@
|
|||
nct6687d-dkms (20220215) unstable; urgency=low
|
||||
|
||||
* Merge pull request #21 from Fred78290/nct6687d
|
||||
* Update README
|
||||
* Add suport for NCT6687D with ID 0xD592 found on MSI B460M bazooka
|
||||
* FIX: operator syntax & make simpler (rm -rf/mkdir -p are always silencious)
|
||||
* .gitignore: target directory per kernel version
|
||||
* Merge pull request #20 from discover02/patch-1
|
||||
* Bug(s) fixed
|
||||
* Merge pull request #19 from discover02/patch-1
|
||||
* New Makefile
|
||||
* Merge pull request #16 from vesrah/main
|
||||
* Fix "No rule to make target 'arch/x86/tools/relocs_32.c'" error on make install
|
||||
* Update README
|
||||
* Merge pull request #10 from msonowal/patch-1
|
||||
* added newbie instructions for loading extension on boot
|
||||
* Update CHANGELOG
|
||||
* FEAT: Add debug trace
|
||||
* FIX: Issue #2
|
||||
* FIX: Remove DEBUG trace
|
||||
* Update README.md
|
||||
* Update README
|
||||
* Update README
|
||||
* FEAT: Add voltage support and min max values for temp & fan
|
||||
* Add Change log
|
||||
* Update README
|
||||
* FEAT: Display fans label
|
||||
* Typo, rename in to voltage
|
||||
* Typo
|
||||
* Remove unused
|
||||
* Add sources
|
||||
* Initial commit
|
||||
|
||||
-- Frederic BOLTZ <frederic.boltz@gmail.com> Tue, 15 Feb 2022 23:21:48 +0100
|
||||
|
0
debian/rules
vendored
Normal file → Executable file
0
debian/rules
vendored
Normal file → Executable file
Loading…
Reference in a new issue