Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

xcpmd: Avoid corrupting libevent & infinite loop #75

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
6c2abf4
xcpmd: Port vglass support patch
Jul 15, 2020
9aca0de
xcpmd: generate vglass stubs
Jul 16, 2020
e8d0195
libdmbus: retire defunct project
Aug 24, 2020
a94952b
Merge pull request #66 from eric-ch/vglass
jandryuk May 28, 2021
598f7b8
xcpmd: Use vglass idl dbus signals
jandryuk Aug 19, 2021
72859d2
Merge pull request #68 from jandryuk/vglass-battery
crogers1 Aug 30, 2021
30650d9
[guest-efi] Add varstored-watch
Sep 30, 2021
6decdfb
Merge pull request #69 from tsirakisn/guest-efi
jandryuk Oct 28, 2021
38b506b
varstored-watch: Check asprintf return value
jandryuk Apr 19, 2022
2b8a171
xcpmd: Fix strncpy truncation warning
jandryuk Apr 19, 2022
7ff5bea
qmp_helper: Fix build with fortify source
jandryuk Apr 19, 2022
17376fa
atapi_pt_helper: Fix fortify source cflags
jandryuk Apr 19, 2022
7cd378d
xcpmd: Send battery changed when the percent changes
jandryuk May 3, 2022
c460909
xcpmd: Don't leak FDs
jandryuk Oct 29, 2021
a7fab04
xcpmd: unify update_battery_info/status
jandryuk Jul 22, 2022
80146a8
xcpmd: Suppress ENODEV errors
jandryuk Jul 22, 2022
4ca6fd4
Merge pull request #71 from jandryuk/sec-flags
crogers1 Aug 18, 2022
0c30242
Merge pull request #70 from jandryuk/dont-leak-battery
crogers1 Sep 29, 2022
d949b71
Merge pull request #72 from jandryuk/fewer-dbus-signals
crogers1 Sep 29, 2022
5516255
xcpmd: Fix double closedir()
jandryuk Oct 4, 2022
7332959
Merge pull request #73 from jandryuk/closedir-fix
crogers1 Oct 4, 2022
feb5ff3
xcpmd: Avoid corrupting libevent & infinite loop
jandryuk Oct 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
qmp_helper: Fix build with fortify source
With security_flags, building qmp_helper fails with:
warning _FORTIFY_SOURCE requires compiling with optimization (-O)

Bitbake is passing in -O2, but the = assignment in the Makefile means
the passed in CFLAGS are dropped.  Change to += to let the bitbake flags
through.

Signed-off-by: Jason Andryuk <[email protected]>
  • Loading branch information
jandryuk committed Apr 19, 2022
commit 7ff5beab919518f2c3e0ec97df6c6c9f38bfc50e
2 changes: 1 addition & 1 deletion qmp_helper/src/Makefile.am
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#

CFLAGS = -Wall -Werror
CFLAGS += -Wall -Werror
CPROTO=cproto
INCLUDES = ${X_CFLAGS}