- Oct 02, 2024
-
-
Vasco Guita authored
-
- Oct 01, 2024
-
-
Vasco Guita authored
-
- Sep 23, 2024
-
-
Vasco Guita authored
-
- Oct 12, 2023
-
-
Federico Vaga authored
Signed-off-by: Federico Vaga <federico.vaga@cern.ch>
-
Federico Vaga authored
Signed-off-by: Federico Vaga <federico.vaga@cern.ch>
-
- Oct 10, 2023
-
-
Federico Vaga authored
Merge branch '4-align-building-infrastructure-to-build-against-fecos-and-install-artifacts' into 'master' Resolve "Align building infrastructure to build against fecos and install artifacts" Closes #4 See merge request be-cem-edl/fec/hardware-modules/zio!4
-
- Oct 09, 2023
-
-
Federico Vaga authored
I've created this in a lib/ directory because these headers will be used by other libraries or tools. If any zio library would ever exist, that thsis will make even more sense. Signed-off-by: Federico Vaga <federico.vaga@cern.ch>
-
Federico Vaga authored
Signed-off-by: Federico Vaga <federico.vaga@cern.ch>
-
Federico Vaga authored
Signed-off-by: Federico Vaga <federico.vaga@cern.ch>
-
Federico Vaga authored
Signed-off-by: Federico Vaga <federico.vaga@cern.ch>
-
Federico Vaga authored
Signed-off-by: Federico Vaga <federico.vaga@cern.ch>
-
- Sep 05, 2023
-
-
Federico Vaga authored
Resolve "Use few-build-sw container to build zio" Closes #3 See merge request be-cem-edl/fec/hardware-modules/zio!3
-
- Sep 04, 2023
-
-
Vaibhav Gupta authored
Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
Vaibhav Gupta authored
Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
Vaibhav Gupta authored
Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
Vaibhav Gupta authored
Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
Vaibhav Gupta authored
Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
Vaibhav Gupta authored
Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
Vaibhav Gupta authored
Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
Vaibhav Gupta authored
Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
- Jun 12, 2023
-
-
Federico Vaga authored
Apply patches from gwen See merge request be-cem-edl/fec/hardware-modules/zio!2
-
- Jun 08, 2023
-
-
Gwenhael Goavec-Merou authored
-
- May 24, 2023
-
-
Gwenhael Goavec-Merou authored
-
- Nov 04, 2022
-
-
Federico Vaga authored
Resolve "review vaibhav patches" Closes #1 See merge request be-cem-edl/fec/hardware-modules/zio!1
-
Vaibhav Gupta authored
The makefile inside 'tools' directory already has a default value of 'M'. Reported-by: Federico Vaga <federico.vaga@cern.ch> Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
federico.vaga@cern.ch authored
Signed-off-by: federico.vaga@cern.ch <federico.vaga@cern.ch>
-
Federico Vaga authored
Signed-off-by: Federico Vaga <federico.vaga@cern.ch>
-
Federico Vaga authored
Signed-off-by: Federico Vaga <federico.vaga@cern.ch>
-
Vaibhav Gupta authored
Linux being an object orientd code, reuses the code wherever possible. Thus, there are cases where two completely independent and different structures might have a member which has same structure template. For example, in objects.c, in function "__ti_create", - trig->head.name, and - cset->zdev->head.name are of same type, but belong to different structures. And when the code tries to copy/ write one into another, we get truncation warning. And in this case we cannot even increase the size of only one, because both the members are created from same structure. Thus, one good solution is to not to treat those warnings as errors. Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
- Oct 13, 2022
-
-
Vaibhav Gupta authored
Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
Vaibhav Gupta authored
Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
- Jul 25, 2022
-
-
Vaibhav Gupta authored
Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
- Jun 16, 2022
-
-
Vaibhav Gupta authored
Variable name 'LINUX' is very ambiguous for its purpose in the makefile. Also, this project builds as a part of COHT project which uses another variable name 'KERNELSRC' for the same purpose. Hence, this change makes this project uniform with others. Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
Vaibhav Gupta authored
Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
Vaibhav Gupta authored
Signed-off-by: Vaibhav Gupta <vaibhav.gupta@cern.ch>
-
- Jul 28, 2021
-
-
federico.vaga@cern.ch authored
Signed-off-by: federico.vaga@cern.ch <federico.vaga@cern.ch>
-
federico.vaga@cern.ch authored
Signed-off-by: federico.vaga@cern.ch <federico.vaga@cern.ch>
-
federico.vaga@cern.ch authored
Signed-off-by: federico.vaga@cern.ch <federico.vaga@cern.ch>
-
federico.vaga@cern.ch authored
Signed-off-by: federico.vaga@cern.ch <federico.vaga@cern.ch>
-
Mathis MARION authored
`struct timespec` is no longer available from headers after kernel 5.6. It is now required to use `struct timespec64`, which uses a 64bit integer for seconds instead of the former 32bit. The function `timespec_to_ktime` becomes `timespec64_to_ktime` The function `getnstimeofday` becomes `ktime_get_real_ts64` Signed-off-by: Gwenhael GOAVEC <gwenhael.goavec@femto-st.fr> Signed-off-by: Mathis MARION <mathis.marion@grenoble-inp.org>
-