diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..92057c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# CMake build output +obj-*/ +build/ + +# debhelper generated packaging output +debian/.debhelper/ +debian/*.debhelper.log +debian/*.substvars +debian/files +debian/debhelper-build-stamp +debian/pawletprofiled/ +debian/pawletprofiled/ +debian/*.postrm.debhelper diff --git a/Android.bp b/Android.bp index 36b8d89..39de65f 100644 --- a/Android.bp +++ b/Android.bp @@ -1,17 +1,17 @@ -// vendor/oxmc/vesperprofiled/Android.bp +// vendor/oxmc/pawletprofiled/Android.bp // ───────────────────────────────────────────────────────────────────────── -// Drop this entire directory at vendor/oxmc/vesperprofiled/ and add -// "vesperprofiled" to PRODUCT_PACKAGES in your device makefile. +// Drop this entire directory at vendor/oxmc/pawletprofiled/ and add +// "pawletprofiled" to PRODUCT_PACKAGES in your device makefile. // -// m vesperprofiled — build the daemon -// m me.oxmc.vesperos.profile-V1-java — build Java stubs for system apps +// m pawletprofiled — build the daemon +// m os.pawlet.profiled-V1-java — build Java stubs for system apps // ───────────────────────────────────────────────────────────────────────── // ── AIDL interface ──────────────────────────────────────────────────────── aidl_interface { - name: "me.oxmc.vesperos.profile", - srcs: ["aidl/me/oxmc/vesperos/profile/IVesperProfileService.aidl"], + name: "os.pawlet.profiled", + srcs: ["aidl/os/pawlet/profiled/IPawletProfileService.aidl"], stability: "vintf", vendor_available: false, backend: { @@ -35,7 +35,7 @@ aidl_interface { // links a private static copy instead of touching the platform's crypto // libs. third_party/openssl-android/Android.bp is picked up automatically // by Soong's normal recursive discovery — nothing to reference here beyond -// the module names ("libssl_vesper_static" / "libcrypto_vesper_static") +// the module names ("libssl_pawlet_static" / "libcrypto_pawlet_static") // used in static_libs below. // ── Native daemon ───────────────────────────────────────────────────────── @@ -43,17 +43,17 @@ aidl_interface { // This file is the Android/Soong build only — the Linux/D-Bus build lives // in CMakeLists.txt and is entirely separate. Accordingly the source list // below is the Android-specific set: main_android.cpp (Binder entry point) -// and VesperProfileBinderService.cpp instead of main.cpp/VesperProfileService.cpp +// and PawletProfileBinderService.cpp instead of main.cpp/PawletProfileService.cpp // (D-Bus), and no ZTE client (it watches NetworkManager over D-Bus, which // doesn't exist on Android — separate follow-up work, see main_android.cpp's // header comment). cc_binary { - name: "vesperprofiled", + name: "pawletprofiled", srcs: [ "src/main_android.cpp", - "src/VesperProfileBinderService.cpp", + "src/PawletProfileBinderService.cpp", "src/ProfileParser.cpp", "src/ProfileStore.cpp", "src/SignatureVerifier.cpp", @@ -81,13 +81,13 @@ cc_binary { "libbinder_ndk", "libbase", "liblog", - "me.oxmc.vesperos.profile-V1-ndk", + "os.pawlet.profiled-V1-ndk", ], static_libs: [ "libyaml", - "libssl_vesper_static", - "libcrypto_vesper_static", + "libssl_pawlet_static", + "libcrypto_pawlet_static", ], cflags: [ @@ -97,16 +97,16 @@ cc_binary { "-std=c++17", ], - init_rc: ["vesperprofiled.rc"], - vintf_fragments: ["vesperprofiled.xml"], + init_rc: ["pawletprofiled.rc"], + vintf_fragments: ["pawletprofiled.xml"], - required: ["vesperprofiled_sepolicy"], + required: ["pawletprofiled_sepolicy"], } // ── SELinux policy shim ─────────────────────────────────────────────────── prebuilt_etc { - name: "vesperprofiled_sepolicy", - src: "sepolicy/vesperprofiled.te", + name: "pawletprofiled_sepolicy", + src: "sepolicy/pawletprofiled.te", sub_dir: "selinux", } diff --git a/CMakeLists.txt b/CMakeLists.txt index 40857dc..9c686cf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.18) -project(vesperprofiled VERSION 1.0.0 LANGUAGES CXX) +project(pawletprofiled VERSION 1.0.0 LANGUAGES CXX) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) @@ -24,7 +24,7 @@ pkg_check_modules(SYSTEMD REQUIRED libsystemd) # ── Sources ──────────────────────────────────────────────────────────────── set(SOURCES src/main.cpp - src/VesperProfileService.cpp + src/PawletProfileService.cpp src/ProfileParser.cpp src/ProfileStore.cpp src/SignatureVerifier.cpp @@ -51,9 +51,9 @@ set(SOURCES src/zte/ConnectivityWatcher.cpp ) -add_executable(vesperprofiled ${SOURCES}) +add_executable(pawletprofiled ${SOURCES}) -target_include_directories(vesperprofiled PRIVATE +target_include_directories(pawletprofiled PRIVATE src/ ${OPENSSL_INCLUDE_DIRS} ${LIBYAML_INCLUDE_DIRS} @@ -62,7 +62,7 @@ target_include_directories(vesperprofiled PRIVATE ${CURL_INCLUDE_DIRS} ) -target_link_libraries(vesperprofiled PRIVATE +target_link_libraries(pawletprofiled PRIVATE ${OPENSSL_LIBRARIES} ${LIBYAML_LIBRARIES} ${DBUS_LIBRARIES} @@ -71,7 +71,7 @@ target_link_libraries(vesperprofiled PRIVATE pthread ) -target_compile_options(vesperprofiled PRIVATE +target_compile_options(pawletprofiled PRIVATE -Wall -Wextra -Werror ${OPENSSL_CFLAGS_OTHER} ${LIBYAML_CFLAGS_OTHER} @@ -83,22 +83,22 @@ target_compile_options(vesperprofiled PRIVATE # ── Install ──────────────────────────────────────────────────────────────── include(GNUInstallDirs) -install(TARGETS vesperprofiled +install(TARGETS pawletprofiled RUNTIME DESTINATION ${CMAKE_INSTALL_SBINDIR} ) -install(FILES systemd/vesperprofiled.service +install(FILES systemd/pawletprofiled.service DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/systemd/system ) -install(FILES dbus/me.oxmc.vesperos.ProfileService.conf +install(FILES dbus/os.pawlet.ProfiledService.conf DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/dbus-1/system.d ) -install(FILES apparmor/vesperprofiled +install(FILES apparmor/pawletprofiled DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/apparmor.d ) install(FILES zte.conf.example - DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/vesperprofiled + DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/pawletprofiled RENAME zte.conf.example ) # Note: profile.schema.yml is NOT installed here — it is owned by the -# vesperprofiled-config-schema package and installed at -# /usr/share/vesperprofiled/schema/profile.schema.yml +# pawletprofiled-config-schema package and installed at +# /usr/share/pawletprofiled/schema/profile.schema.yml diff --git a/README.md b/README.md index 9812608..dc09905 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,18 @@ -# vesperprofiled +# pawletprofiled -VesperOS unified device management daemon. +PawletOS unified device management daemon. -One binary. Two subsystems. Ships on every VesperOS device. +One binary. Two subsystems. Ships on every PawletOS device. --- ## Subsystems ### Profile Service -D-Bus system service at `me.oxmc.vesperos.ProfileService`. +D-Bus system service at `os.pawlet.ProfiledService`. Parses, verifies, persists, and applies `.vconfig` profiles. The allowed payload types are controlled by the separately-installed -`vesperprofiled-config-schema` package — OEMs can restrict the +`pawletprofiled-config-schema` package — OEMs can restrict the configuration surface without touching the daemon binary. ### ZTE Client @@ -29,19 +29,19 @@ enrolls on the first successful connection later. ## Package layout ``` -vesperprofiled/ +pawletprofiled/ ├── Android.bp AOSP Soong build ├── CMakeLists.txt Linux CMake build -├── vesperprofiled.rc Android init script -├── vesperprofiled.xml Android VINTF fragment +├── pawletprofiled.rc Android init script +├── pawletprofiled.xml Android VINTF fragment ├── zte.conf.example ZTE client config │ -├── aidl/me/oxmc/vesperos/profile/ -│ └── IVesperProfileService.aidl Binder interface (Android) +├── aidl/os/pawlet/profiled/ +│ └── IPawletProfileService.aidl Binder interface (Android) │ ├── src/ │ ├── main.cpp Entry point -│ ├── VesperProfileService.h/.cpp D-Bus service (Linux) +│ ├── PawletProfileService.h/.cpp D-Bus service (Linux) │ ├── ProfileParser.h/.cpp YAML parser (libyaml) │ ├── ProfileStore.h/.cpp Disk persistence + password hashing │ ├── SignatureVerifier.h/.cpp CMS/PKCS#7 verification (OpenSSL) @@ -54,9 +54,9 @@ vesperprofiled/ │ ├── ZTELookupClient.h/.cpp ZTE server HTTPS client (libcurl) │ └── ConnectivityWatcher.h/.cpp NM D-Bus connectivity watcher │ -├── systemd/vesperprofiled.service Systemd unit -├── dbus/me.oxmc.vesperos.ProfileService.conf D-Bus policy -├── apparmor/vesperprofiled AppArmor MAC profile +├── systemd/pawletprofiled.service Systemd unit +├── dbus/os.pawlet.ProfiledService.conf D-Bus policy +├── apparmor/pawletprofiled AppArmor MAC profile ├── sepolicy/ Android SELinux policy └── debian/ Debian Trixie packaging ``` @@ -68,7 +68,7 @@ vesperprofiled/ ### Runtime | Package | Used for | |---|---| -| `vesperprofiled-config-schema` | Schema defining allowed payload types | +| `pawletprofiled-config-schema` | Schema defining allowed payload types | | `libssl3` | CMS signature verification, PBKDF2 | | `libyaml-0-2` | YAML parsing | | `libdbus-1-3` | D-Bus system service | @@ -99,11 +99,11 @@ sudo apt install -y \ cmake libssl-dev libyaml-dev libdbus-1-dev \ libsystemd-dev libcurl4-openssl-dev pkg-config -# Build .deb (includes vesperprofiled-config-schema as a dep) +# Build .deb (includes pawletprofiled-config-schema as a dep) dpkg-buildpackage -us -uc -b sudo apt install \ - ../vesperprofiled-config-schema_1.0.0-1_all.deb \ - ../vesperprofiled_1.0.0-1_amd64.deb + ../pawletprofiled-config-schema_1.0.0-1_all.deb \ + ../pawletprofiled_1.0.0-1_amd64.deb # Or build without packaging cmake -B build -DCMAKE_BUILD_TYPE=Release @@ -116,16 +116,16 @@ sudo cmake --install build ## Building — Android (AOSP) ```bash -cp -r vesperprofiled/ $AOSP_ROOT/vendor/oxmc/vesperprofiled/ +cp -r pawletprofiled/ $AOSP_ROOT/vendor/oxmc/pawletprofiled/ # Add to device makefile -echo 'PRODUCT_PACKAGES += vesperprofiled' \ - >> device/oxmc/vesperos/vesperos.mk -echo 'BOARD_SEPOLICY_DIRS += vendor/oxmc/vesperprofiled/sepolicy' \ - >> device/oxmc/vesperos/BoardConfig.mk +echo 'PRODUCT_PACKAGES += pawletprofiled' \ + >> device/oxmc/pawletos/pawletos.mk +echo 'BOARD_SEPOLICY_DIRS += vendor/oxmc/pawletprofiled/sepolicy' \ + >> device/oxmc/pawletos/BoardConfig.mk -source build/envsetup.sh && lunch vesperos_arm64-userdebug -m vesperprofiled +source build/envsetup.sh && lunch pawletos_arm64-userdebug +m pawletprofiled ``` --- @@ -134,25 +134,25 @@ m vesperprofiled ```bash # Service status -systemctl status vesperprofiled +systemctl status pawletprofiled # D-Bus connectivity dbus-send --system --print-reply \ - --dest=me.oxmc.vesperos.ProfileService \ - /me/oxmc/vesperos/ProfileService \ - me.oxmc.vesperos.IProfileService.IsDeviceManaged + --dest=os.pawlet.ProfiledService \ + /os/pawlet/ProfiledService \ + os.pawlet.IProfiledService.IsDeviceManaged # List installed profiles dbus-send --system --print-reply \ - --dest=me.oxmc.vesperos.ProfileService \ - /me/oxmc/vesperos/ProfileService \ - me.oxmc.vesperos.IProfileService.ListProfiles + --dest=os.pawlet.ProfiledService \ + /os/pawlet/ProfiledService \ + os.pawlet.IProfiledService.ListProfiles # ZTE enrollment state -cat /var/lib/vesperprofiled/zte_state.json +cat /var/lib/pawletprofiled/zte_state.json # Live logs -journalctl -u vesperprofiled -f +journalctl -u pawletprofiled -f ``` --- @@ -167,9 +167,9 @@ with open(sys.argv[1], 'rb') as f: data = f.read() bus = dbus.SystemBus() -obj = bus.get_object('me.oxmc.vesperos.ProfileService', - '/me/oxmc/vesperos/ProfileService') -svc = dbus.Interface(obj, 'me.oxmc.vesperos.IProfileService') +obj = bus.get_object('os.pawlet.ProfiledService', + '/os/pawlet/ProfiledService') +svc = dbus.Interface(obj, 'os.pawlet.IProfiledService') uuid = svc.InstallProfile(dbus.ByteArray(data)) print('Installed profile UUID:', uuid) ``` @@ -184,25 +184,25 @@ must be CMS/PKCS#7 signed. Unsigned profiles install with a trust warning. ```bash # Generate a development signing key and CA openssl req -x509 -newkey rsa:4096 -days 3650 -nodes \ - -keyout /etc/vesperprofiled/signing_key.pem \ - -out /etc/vesperprofiled/profile_ca.pem \ - -subj "/CN=VesperOS Profile Signing/O=oxmc" + -keyout /etc/pawletprofiled/signing_key.pem \ + -out /etc/pawletprofiled/profile_ca.pem \ + -subj "/CN=PawletOS Profile Signing/O=oxmc" # Sign a profile openssl cms -sign \ -in my.vconfig \ -out my.signed.vconfig \ - -signer /etc/vesperprofiled/profile_ca.pem \ - -inkey /etc/vesperprofiled/signing_key.pem \ + -signer /etc/pawletprofiled/profile_ca.pem \ + -inkey /etc/pawletprofiled/signing_key.pem \ -outform DER -nodetach ``` -The CA at `/etc/vesperprofiled/profile_ca.pem` is trusted automatically. +The CA at `/etc/pawletprofiled/profile_ca.pem` is trusted automatically. For a system-wide trusted badge, also install it as a system CA: ```bash -cp /etc/vesperprofiled/profile_ca.pem \ - /usr/local/share/ca-certificates/vesperos-profile-ca.crt +cp /etc/pawletprofiled/profile_ca.pem \ + /usr/local/share/ca-certificates/pawletos-profile-ca.crt update-ca-certificates ``` @@ -210,7 +210,7 @@ update-ca-certificates ## Preinstalled profiles -Drop signed `.vconfig` files into `/etc/vesperprofiled/preinstalled/` +Drop signed `.vconfig` files into `/etc/pawletprofiled/preinstalled/` before first boot. The daemon applies them at startup, **before** `cloud-init-local.service` starts (enforced via `Before=cloud-init-local.service` in the systemd unit). @@ -223,9 +223,9 @@ tries to reach its datasource. ## Zero-Touch Enrollment -ZTE configuration lives at `/etc/vesperprofiled/zte.conf` (copy from +ZTE configuration lives at `/etc/pawletprofiled/zte.conf` (copy from `zte.conf.example`). The key setting is `server_url`, which points to -your `vesper-zte-server` instance. +your `pawlet-zte-server` instance. ```ini server_url=https://zte.yourdomain.com @@ -249,7 +249,7 @@ Hardware identity priority used for the ZTE lookup: |---|---| | `ProfileParser.cpp` used `android-base/logging.h` and `LOG()` | Replaced with `syslog()` throughout | | `debian/rules` had postinst `install -d` lines leaked after `override_dh_installsystemd` | Removed stray lines | -| `sepolicy/vesperprofiled.te` had typo `vesperprofrofiled` | Fixed | -| `apparmor/vesperprofiled` used `abstractions/openssl` (doesn't exist on Debian) | Replaced with explicit `/etc/ssl/certs/` and network socket rules | +| `sepolicy/pawletprofiled.te` had typo `vesperprofrofiled` | Fixed | +| `apparmor/pawletprofiled` used `abstractions/openssl` (doesn't exist on Debian) | Replaced with explicit `/etc/ssl/certs/` and network socket rules | | `ZTELookupClient` called `curl_global_init` but never `curl_global_cleanup` | Added to destructor | -| `debian/control` missing `Depends: vesperprofiled-config-schema` | Added | +| `debian/control` missing `Depends: pawletprofiled-config-schema` | Added | diff --git a/aidl/me/oxmc/vesperos/profile/IVesperProfileService.aidl b/aidl/os/pawlet/profiled/IPawletProfileService.aidl similarity index 91% rename from aidl/me/oxmc/vesperos/profile/IVesperProfileService.aidl rename to aidl/os/pawlet/profiled/IPawletProfileService.aidl index 565a38c..62686ba 100644 --- a/aidl/me/oxmc/vesperos/profile/IVesperProfileService.aidl +++ b/aidl/os/pawlet/profiled/IPawletProfileService.aidl @@ -1,10 +1,10 @@ -package me.oxmc.vesperos.profile; +package os.pawlet.profiled; -// IVesperProfileService — Binder interface exposed by vesperprofiled. +// IPawletProfileService — Binder interface exposed by pawletprofiled. // Clients (system apps, Settings, installer UI) talk to the daemon via this. -// NDK backend; link against libvesperprofiled-ndk. +// NDK backend; link against libpawletprofiled-ndk. @VintfStability -interface IVesperProfileService { +interface IPawletProfileService { // ── Profile lifecycle ───────────────────────────────────────────────── diff --git a/debian/vesperprofiled/etc/apparmor.d/vesperprofiled b/apparmor/pawletprofiled similarity index 84% rename from debian/vesperprofiled/etc/apparmor.d/vesperprofiled rename to apparmor/pawletprofiled index 0067c49..55dd16f 100644 --- a/debian/vesperprofiled/etc/apparmor.d/vesperprofiled +++ b/apparmor/pawletprofiled @@ -1,10 +1,10 @@ -# /etc/apparmor.d/vesperprofiled -# AppArmor MAC profile for the vesperprofiled daemon. -# Installed by the vesperprofiled Debian package. +# /etc/apparmor.d/pawletprofiled +# AppArmor MAC profile for the pawletprofiled daemon. +# Installed by the pawletprofiled Debian package. #include -/usr/sbin/vesperprofiled { +/usr/sbin/pawletprofiled { #include #include @@ -12,15 +12,15 @@ #include # Own binary - /usr/sbin/vesperprofiled mr, + /usr/sbin/pawletprofiled mr, # ── Profile store ───────────────────────────────────────────────────────── - /var/lib/vesperprofiled/ rw, - /var/lib/vesperprofiled/** rw, + /var/lib/pawletprofiled/ rw, + /var/lib/pawletprofiled/** rw, # ── Config directories (profile drop-ins written here) ─────────────────── - /etc/vesperprofiled/ rw, - /etc/vesperprofiled/** rw, + /etc/pawletprofiled/ rw, + /etc/pawletprofiled/** rw, /etc/NetworkManager/conf.d/ rw, /etc/NetworkManager/conf.d/** rw, /etc/NetworkManager/system-connections/ rw, @@ -46,16 +46,16 @@ /etc/profile.d/** rw, /etc/dconf/db/local.d/ rw, /etc/dconf/db/local.d/** rw, - /etc/ssl/private/vesperos/ rw, - /etc/ssl/private/vesperos/** rw, - /usr/local/share/ca-certificates/vesperos/ rw, - /usr/local/share/ca-certificates/vesperos/** rw, + /etc/ssl/private/pawletos/ rw, + /etc/ssl/private/pawletos/** rw, + /usr/local/share/ca-certificates/pawletos/ rw, + /usr/local/share/ca-certificates/pawletos/** rw, /var/lib/gnome-initial-setup/ rw, /var/lib/gnome-initial-setup/** rw, - # ── Schema (read only — owned by vesperprofiled-config-schema) ──────────── - /usr/share/vesperprofiled/schema/ r, - /usr/share/vesperprofiled/schema/* r, + # ── Schema (read only — owned by pawletprofiled-config-schema) ──────────── + /usr/share/pawletprofiled/schema/ r, + /usr/share/pawletprofiled/schema/* r, # ── TLS / certificate paths (explicit — no abstractions/openssl on Debian) ─ /etc/ssl/certs/ r, @@ -64,12 +64,12 @@ /usr/lib/ssl/openssl.cnf r, /usr/share/ca-certificates/ r, /usr/share/ca-certificates/** r, - /etc/vesperprofiled/profile_ca.pem r, + /etc/pawletprofiled/profile_ca.pem r, # ── D-Bus service registration ──────────────────────────────────────────── dbus (send, receive, bind) bus=system - name="me.oxmc.vesperos.ProfileService", + name="os.pawlet.ProfiledService", dbus (send) bus=system interface="org.freedesktop.DBus" @@ -118,8 +118,8 @@ /dev/log w, # ── Lock file (ZTE enrollment serialisation) ────────────────────────────── - /run/vesperprofiled/ rw, - /run/vesperprofiled/** rw, + /run/pawletprofiled/ rw, + /run/pawletprofiled/** rw, # ── Deny sensitive paths ────────────────────────────────────────────────── deny /home/** rw, diff --git a/apparmor/vesperprofiled b/apparmor/vesperprofiled deleted file mode 100644 index 0067c49..0000000 --- a/apparmor/vesperprofiled +++ /dev/null @@ -1,130 +0,0 @@ -# /etc/apparmor.d/vesperprofiled -# AppArmor MAC profile for the vesperprofiled daemon. -# Installed by the vesperprofiled Debian package. - -#include - -/usr/sbin/vesperprofiled { - #include - #include - - # D-Bus (system bus access) - #include - - # Own binary - /usr/sbin/vesperprofiled mr, - - # ── Profile store ───────────────────────────────────────────────────────── - /var/lib/vesperprofiled/ rw, - /var/lib/vesperprofiled/** rw, - - # ── Config directories (profile drop-ins written here) ─────────────────── - /etc/vesperprofiled/ rw, - /etc/vesperprofiled/** rw, - /etc/NetworkManager/conf.d/ rw, - /etc/NetworkManager/conf.d/** rw, - /etc/NetworkManager/system-connections/ rw, - /etc/NetworkManager/system-connections/** rw, - /etc/apt/apt.conf.d/ rw, - /etc/apt/apt.conf.d/** rw, - /etc/cloud/cloud.cfg.d/ rw, - /etc/cloud/cloud.cfg.d/** rw, - /etc/systemd/timesyncd.conf.d/ rw, - /etc/systemd/timesyncd.conf.d/** rw, - /etc/systemd/resolved.conf.d/ rw, - /etc/systemd/resolved.conf.d/** rw, - /etc/security/pwquality.conf.d/ rw, - /etc/security/pwquality.conf.d/** rw, - /etc/security/faillock.conf.d/ rw, - /etc/security/faillock.conf.d/** rw, - /etc/nftables.d/ rw, - /etc/nftables.d/** rw, - /etc/ldap/ rw, - /etc/ldap/** rw, - /etc/nslcd.conf rw, - /etc/profile.d/ rw, - /etc/profile.d/** rw, - /etc/dconf/db/local.d/ rw, - /etc/dconf/db/local.d/** rw, - /etc/ssl/private/vesperos/ rw, - /etc/ssl/private/vesperos/** rw, - /usr/local/share/ca-certificates/vesperos/ rw, - /usr/local/share/ca-certificates/vesperos/** rw, - /var/lib/gnome-initial-setup/ rw, - /var/lib/gnome-initial-setup/** rw, - - # ── Schema (read only — owned by vesperprofiled-config-schema) ──────────── - /usr/share/vesperprofiled/schema/ r, - /usr/share/vesperprofiled/schema/* r, - - # ── TLS / certificate paths (explicit — no abstractions/openssl on Debian) ─ - /etc/ssl/certs/ r, - /etc/ssl/certs/** r, - /etc/ssl/openssl.cnf r, - /usr/lib/ssl/openssl.cnf r, - /usr/share/ca-certificates/ r, - /usr/share/ca-certificates/** r, - /etc/vesperprofiled/profile_ca.pem r, - - # ── D-Bus service registration ──────────────────────────────────────────── - dbus (send, receive, bind) - bus=system - name="me.oxmc.vesperos.ProfileService", - dbus (send) - bus=system - interface="org.freedesktop.DBus" - member="RequestName", - dbus (send) - bus=system - interface="org.freedesktop.NetworkManager", - dbus (receive) - bus=system - interface="org.freedesktop.NetworkManager", - - # ── Executables called by payload handlers ──────────────────────────────── - /usr/sbin/update-ca-certificates Px, - /usr/bin/dconf Px, - /usr/bin/gsettings Px, - /sbin/nft Px, - /usr/sbin/nslcd Px, - /usr/bin/pk12util Px, - /bin/systemctl Px, - /usr/bin/cloud-init Px, - # nmcli is no longer used (WiFi/Ethernet use keyfiles directly), - # but keep read access for diagnostics - /usr/bin/nmcli ix, - - # ── Network (ZTE HTTPS lookups via libcurl) ─────────────────────────────── - network inet stream, - network inet6 stream, - network inet dgram, # DNS resolution - - # ── /proc and system info ───────────────────────────────────────────────── - @{PROC}/@{pid}/status r, - @{PROC}/sys/kernel/hostname r, - /sys/class/dmi/id/ r, - /sys/class/dmi/id/* r, - /sys/class/net/ r, - /sys/class/net/** r, - /sys/firmware/efi/ r, - /sys/firmware/efi/** r, - /sys/class/tpm/ r, - /etc/machine-id r, - /var/lib/dbus/machine-id r, - - # ── Logging ─────────────────────────────────────────────────────────────── - /run/systemd/journal/socket w, - /run/systemd/notify w, - /dev/log w, - - # ── Lock file (ZTE enrollment serialisation) ────────────────────────────── - /run/vesperprofiled/ rw, - /run/vesperprofiled/** rw, - - # ── Deny sensitive paths ────────────────────────────────────────────────── - deny /home/** rw, - deny /root/** rw, - deny /boot/** rw, - deny network raw, - deny network packet, -} diff --git a/dbus/me.oxmc.vesperos.ProfileService.conf b/dbus/me.oxmc.vesperos.ProfileService.conf deleted file mode 100644 index 567b3c1..0000000 --- a/dbus/me.oxmc.vesperos.ProfileService.conf +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dbus/os.pawlet.ProfiledService.conf b/dbus/os.pawlet.ProfiledService.conf new file mode 100644 index 0000000..52c86a2 --- /dev/null +++ b/dbus/os.pawlet.ProfiledService.conf @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/debian/.debhelper/generated/vesperprofiled/dh_installchangelogs.dch.trimmed b/debian/.debhelper/generated/vesperprofiled/dh_installchangelogs.dch.trimmed deleted file mode 100644 index 16a8e2c..0000000 --- a/debian/.debhelper/generated/vesperprofiled/dh_installchangelogs.dch.trimmed +++ /dev/null @@ -1,22 +0,0 @@ -vesperprofiled (1.0.0-1) trixie; urgency=medium - - * Initial release for VesperOS 10.0 "Rainier". - * Unified binary: profile daemon + ZTE client in one process. - * Profile service: 55 payload types, CMS/PKCS#7 signature verification, - PBKDF2-SHA256 removal password hashing, D-Bus system service. - * WiFi/Ethernet: NetworkManager keyfile-based (no nmcli exec), full - 802.1X EAP support (TLS/PEAP/TTLS/EAP-FAST), WPA3-SAE, proxy. - * ZTE client: DMI UUID/serial, board serial, machine-id, permanent MACs, - EFI GUID, TPM detection. Priority-ordered primary serial derivation. - SHA-256 hardware fingerprint for fuzzy server-side matching. - * ZTE deferred enrollment: watches NetworkManager StateChanged and - PropertiesChanged D-Bus signals; checks current state at startup. - * Preinstalled profile support: applies profiles from - /etc/vesperprofiled/preinstalled/ before cloud-init runs. - * first-boot payload: suppresses GNOME Initial Setup and cloud-init - wizard modules; writes cloud-init drop-in before cloud-init starts. - * systemd ordering: Before=cloud-init-local.service ensures preinstalled - profiles and ZTE drops are in place before cloud-init runs. - * AppArmor profile included. - - -- oxmc Sun, 19 Apr 2026 00:00:00 +0000 diff --git a/debian/.debhelper/generated/vesperprofiled/installed-by-dh_installdocs b/debian/.debhelper/generated/vesperprofiled/installed-by-dh_installdocs deleted file mode 100644 index e69de29..0000000 diff --git a/debian/.debhelper/generated/vesperprofiled/postinst.service b/debian/.debhelper/generated/vesperprofiled/postinst.service deleted file mode 100644 index b26ec7b..0000000 --- a/debian/.debhelper/generated/vesperprofiled/postinst.service +++ /dev/null @@ -1,17 +0,0 @@ -# Automatically added by dh_installsystemd/13.14.1ubuntu5 -if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then - # The following line should be removed in trixie or trixie+1 - deb-systemd-helper unmask 'vesperprofiled.service' >/dev/null || true - - # was-enabled defaults to true, so new installations run enable. - if deb-systemd-helper --quiet was-enabled 'vesperprofiled.service'; then - # Enables the unit on first installation, creates new - # symlinks on upgrades if the unit file has changed. - deb-systemd-helper enable 'vesperprofiled.service' >/dev/null || true - else - # Update the statefile to add new symlinks (if any), which need to be - # cleaned up on purge. Also remove old symlinks. - deb-systemd-helper update-state 'vesperprofiled.service' >/dev/null || true - fi -fi -# End automatically added section diff --git a/debian/.debhelper/generated/vesperprofiled/preinst.service b/debian/.debhelper/generated/vesperprofiled/preinst.service deleted file mode 100644 index 2d21979..0000000 --- a/debian/.debhelper/generated/vesperprofiled/preinst.service +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically added by dh_installsystemd/13.14.1ubuntu5 -if [ -z "${DPKG_ROOT:-}" ] && [ "$1" = upgrade ] && [ -d /run/systemd/system ] ; then - deb-systemd-invoke stop 'vesperprofiled.service' >/dev/null || true -fi -# End automatically added section diff --git a/debian/.debhelper/vesperprofiled/dbgsym-build-ids b/debian/.debhelper/vesperprofiled/dbgsym-build-ids deleted file mode 100644 index d511517..0000000 --- a/debian/.debhelper/vesperprofiled/dbgsym-build-ids +++ /dev/null @@ -1 +0,0 @@ -3a272b0b159fbe1f2432ddef9ebc077884e5069b \ No newline at end of file diff --git a/debian/.debhelper/vesperprofiled/dbgsym-root/DEBIAN/control b/debian/.debhelper/vesperprofiled/dbgsym-root/DEBIAN/control deleted file mode 100644 index 817d81c..0000000 --- a/debian/.debhelper/vesperprofiled/dbgsym-root/DEBIAN/control +++ /dev/null @@ -1,13 +0,0 @@ -Package: vesperprofiled-dbgsym -Package-Type: ddeb -Source: vesperprofiled -Version: 1.0.0-1 -Auto-Built-Package: debug-symbols -Architecture: amd64 -Maintainer: oxmc -Installed-Size: 955 -Depends: vesperprofiled (= 1.0.0-1) -Section: debug -Priority: optional -Description: debug symbols for vesperprofiled -Build-Ids: 3a272b0b159fbe1f2432ddef9ebc077884e5069b diff --git a/debian/.debhelper/vesperprofiled/dbgsym-root/DEBIAN/md5sums b/debian/.debhelper/vesperprofiled/dbgsym-root/DEBIAN/md5sums deleted file mode 100644 index fce6c33..0000000 --- a/debian/.debhelper/vesperprofiled/dbgsym-root/DEBIAN/md5sums +++ /dev/null @@ -1 +0,0 @@ -5ef0e80bb06ea08211fa57c6228a7a02 usr/lib/debug/.build-id/3a/272b0b159fbe1f2432ddef9ebc077884e5069b.debug diff --git a/debian/.debhelper/vesperprofiled/dbgsym-root/usr/lib/debug/.build-id/3a/272b0b159fbe1f2432ddef9ebc077884e5069b.debug b/debian/.debhelper/vesperprofiled/dbgsym-root/usr/lib/debug/.build-id/3a/272b0b159fbe1f2432ddef9ebc077884e5069b.debug deleted file mode 100644 index 35b5f75..0000000 Binary files a/debian/.debhelper/vesperprofiled/dbgsym-root/usr/lib/debug/.build-id/3a/272b0b159fbe1f2432ddef9ebc077884e5069b.debug and /dev/null differ diff --git a/debian/.debhelper/vesperprofiled/dbgsym-root/usr/share/doc/vesperprofiled-dbgsym b/debian/.debhelper/vesperprofiled/dbgsym-root/usr/share/doc/vesperprofiled-dbgsym deleted file mode 120000 index df01152..0000000 --- a/debian/.debhelper/vesperprofiled/dbgsym-root/usr/share/doc/vesperprofiled-dbgsym +++ /dev/null @@ -1 +0,0 @@ -vesperprofiled \ No newline at end of file diff --git a/debian/changelog b/debian/changelog index 16a8e2c..a46cdb3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ -vesperprofiled (1.0.0-1) trixie; urgency=medium +pawletprofiled (1.0.0-1) trixie; urgency=medium - * Initial release for VesperOS 10.0 "Rainier". + * Initial release for PawletOS 10.0 "Rainier". * Unified binary: profile daemon + ZTE client in one process. * Profile service: 55 payload types, CMS/PKCS#7 signature verification, PBKDF2-SHA256 removal password hashing, D-Bus system service. @@ -12,7 +12,7 @@ vesperprofiled (1.0.0-1) trixie; urgency=medium * ZTE deferred enrollment: watches NetworkManager StateChanged and PropertiesChanged D-Bus signals; checks current state at startup. * Preinstalled profile support: applies profiles from - /etc/vesperprofiled/preinstalled/ before cloud-init runs. + /etc/pawletprofiled/preinstalled/ before cloud-init runs. * first-boot payload: suppresses GNOME Initial Setup and cloud-init wizard modules; writes cloud-init drop-in before cloud-init starts. * systemd ordering: Before=cloud-init-local.service ensures preinstalled diff --git a/debian/control b/debian/control index 3a1ec01..441c791 100644 --- a/debian/control +++ b/debian/control @@ -1,4 +1,4 @@ -Source: vesperprofiled +Source: pawletprofiled Section: admin Priority: optional Maintainer: oxmc @@ -12,15 +12,15 @@ Build-Depends: libcurl4-openssl-dev, pkg-config Standards-Version: 4.7.0 -Homepage: https://vesperos.oxmc.me -Vcs-Git: https://git.oxmc.me/vesperos/vesperprofiled.git +Homepage: https://pawletos.oxmc.me +Vcs-Git: https://git.oxmc.me/PawletOS/profiled.git -Package: vesperprofiled +Package: pawletprofiled Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, - vesperprofiled-config-schema (>= 1.0.0), + pawletprofiled-config-schema (>= 1.0.0), libssl3 (>= 3.0), libyaml-0-2, libdbus-1-3, @@ -41,16 +41,16 @@ Recommends: dconf-cli, tpm2-tools Suggests: - vesper-zte-server, - vesperos-ca -Description: VesperOS configuration profile daemon with Zero-Touch Enrollment - vesperprofiled is the unified device management daemon for VesperOS. + pawlet-zte-server, + pawletos-ca +Description: PawletOS configuration profile daemon with Zero-Touch Enrollment + pawletprofiled is the unified device management daemon for PawletOS. It ships as a single binary containing two subsystems: . Profile Service — parses, verifies, and applies .vconfig configuration profiles. Profiles are YAML files optionally wrapped in a CMS/PKCS#7 signed envelope. Which payload types are accepted is controlled by the - installed vesperprofiled-config-schema package, allowing OEMs to restrict + installed pawletprofiled-config-schema package, allowing OEMs to restrict the available configuration surface for their platform. . ZTE Client — Zero-Touch Enrollment. Collects hardware identity (DMI UUID, @@ -61,5 +61,5 @@ Description: VesperOS configuration profile daemon with Zero-Touch Enrollment available at first boot, the ZTE client enrolls on first connectivity. . The profile service is exposed as a D-Bus system service at - me.oxmc.vesperos.ProfileService. The ZTE client runs as a background + os.pawlet.ProfiledService. The ZTE client runs as a background thread in the same process. diff --git a/debian/debhelper-build-stamp b/debian/debhelper-build-stamp deleted file mode 100644 index 5bd3b06..0000000 --- a/debian/debhelper-build-stamp +++ /dev/null @@ -1 +0,0 @@ -vesperprofiled diff --git a/debian/files b/debian/files deleted file mode 100644 index 556a4a9..0000000 --- a/debian/files +++ /dev/null @@ -1,3 +0,0 @@ -vesperprofiled-dbgsym_1.0.0-1_amd64.ddeb debug optional automatic=yes -vesperprofiled_1.0.0-1_amd64.buildinfo admin optional -vesperprofiled_1.0.0-1_amd64.deb admin optional diff --git a/debian/postinst b/debian/postinst index 62096e5..5858e88 100755 --- a/debian/postinst +++ b/debian/postinst @@ -4,15 +4,15 @@ set -e case "$1" in configure) # Data directories - install -d -m 0700 /var/lib/vesperprofiled - install -d -m 0700 /var/lib/vesperprofiled/profiles - install -d -m 0755 /etc/vesperprofiled - install -d -m 0755 /etc/vesperprofiled/preinstalled + install -d -m 0700 /var/lib/pawletprofiled + install -d -m 0700 /var/lib/pawletprofiled/profiles + install -d -m 0755 /etc/pawletprofiled + install -d -m 0755 /etc/pawletprofiled/preinstalled # AppArmor if command -v aa-enabled >/dev/null 2>&1 && aa-enabled >/dev/null 2>&1; then if command -v apparmor_parser >/dev/null 2>&1; then - apparmor_parser -r /etc/apparmor.d/vesperprofiled || true + apparmor_parser -r /etc/apparmor.d/pawletprofiled || true fi fi @@ -29,8 +29,8 @@ case "$1" in if command -v systemctl >/dev/null 2>&1 && \ systemctl is-system-running --quiet 2>/dev/null; then systemctl daemon-reload - systemctl enable vesperprofiled.service - systemctl start vesperprofiled.service || true + systemctl enable pawletprofiled.service + systemctl start pawletprofiled.service || true fi ;; esac diff --git a/debian/postrm b/debian/postrm index c4629f5..29f0583 100755 --- a/debian/postrm +++ b/debian/postrm @@ -3,27 +3,27 @@ set -e case "$1" in purge) - rm -rf /var/lib/vesperprofiled - rm -rf /etc/vesperprofiled + rm -rf /var/lib/pawletprofiled + rm -rf /etc/pawletprofiled # Remove all managed config drops - rm -f /etc/apt/apt.conf.d/99-vesperos-update - rm -f /etc/apt/apt.conf.d/99-vesperos-proxy - rm -f /etc/NetworkManager/conf.d/vesperos-proxy.conf - rm -f /etc/systemd/timesyncd.conf.d/vesperos.conf - rm -f /etc/systemd/resolved.conf.d/vesperos-dns.conf - rm -f /etc/security/pwquality.conf.d/vesperos.conf - rm -f /etc/security/faillock.conf.d/vesperos.conf - rm -f /etc/nftables.d/vesperos.nft - rm -f /etc/profile.d/vesperos-proxy.sh - rm -f /etc/cloud/cloud.cfg.d/99-vesperos-mdm.cfg - rm -f /etc/cloud/cloud.cfg.d/99-vesperos-firstboot.cfg - rm -f /etc/dconf/db/local.d/00-vesperos-wallpaper - rm -f /etc/dconf/db/local.d/00-vesperos-screensaver - rm -f /etc/dconf/db/local.d/00-vesperos-firstboot - rm -f /etc/dconf/db/local.d/locks/vesperos-wallpaper - rm -f /etc/dconf/db/local.d/locks/vesperos-screensaver - rm -rf /usr/local/share/ca-certificates/vesperos - rm -rf /etc/ssl/private/vesperos + rm -f /etc/apt/apt.conf.d/99-pawletos-update + rm -f /etc/apt/apt.conf.d/99-pawletos-proxy + rm -f /etc/NetworkManager/conf.d/pawletos-proxy.conf + rm -f /etc/systemd/timesyncd.conf.d/pawletos.conf + rm -f /etc/systemd/resolved.conf.d/pawletos-dns.conf + rm -f /etc/security/pwquality.conf.d/pawletos.conf + rm -f /etc/security/faillock.conf.d/pawletos.conf + rm -f /etc/nftables.d/pawletos.nft + rm -f /etc/profile.d/pawletos-proxy.sh + rm -f /etc/cloud/cloud.cfg.d/99-pawletos-mdm.cfg + rm -f /etc/cloud/cloud.cfg.d/99-pawletos-firstboot.cfg + rm -f /etc/dconf/db/local.d/00-pawletos-wallpaper + rm -f /etc/dconf/db/local.d/00-pawletos-screensaver + rm -f /etc/dconf/db/local.d/00-pawletos-firstboot + rm -f /etc/dconf/db/local.d/locks/pawletos-wallpaper + rm -f /etc/dconf/db/local.d/locks/pawletos-screensaver + rm -rf /usr/local/share/ca-certificates/pawletos + rm -rf /etc/ssl/private/pawletos command -v update-ca-certificates >/dev/null 2>&1 && \ update-ca-certificates --fresh 2>/dev/null || true command -v dconf >/dev/null 2>&1 && \ diff --git a/debian/prerm b/debian/prerm index 0fb1e13..95a74bc 100755 --- a/debian/prerm +++ b/debian/prerm @@ -4,12 +4,12 @@ set -e case "$1" in remove|upgrade|deconfigure) if command -v systemctl >/dev/null 2>&1; then - systemctl stop vesperprofiled.service 2>/dev/null || true - systemctl disable vesperprofiled.service 2>/dev/null || true + systemctl stop pawletprofiled.service 2>/dev/null || true + systemctl disable pawletprofiled.service 2>/dev/null || true fi if command -v apparmor_parser >/dev/null 2>&1 && \ - [ -f /etc/apparmor.d/vesperprofiled ]; then - apparmor_parser -R /etc/apparmor.d/vesperprofiled 2>/dev/null || true + [ -f /etc/apparmor.d/pawletprofiled ]; then + apparmor_parser -R /etc/apparmor.d/pawletprofiled 2>/dev/null || true fi ;; esac diff --git a/debian/rules b/debian/rules index 339cf34..90af0d5 100755 --- a/debian/rules +++ b/debian/rules @@ -14,15 +14,15 @@ override_dh_auto_configure: override_dh_auto_install: dh_auto_install - install -Dm 0644 dbus/me.oxmc.vesperos.ProfileService.conf \ - debian/vesperprofiled/etc/dbus-1/system.d/me.oxmc.vesperos.ProfileService.conf - install -Dm 0644 apparmor/vesperprofiled \ - debian/vesperprofiled/etc/apparmor.d/vesperprofiled - install -d -m 0755 debian/vesperprofiled/etc/vesperprofiled - install -d -m 0755 debian/vesperprofiled/etc/vesperprofiled/preinstalled - install -d -m 0700 debian/vesperprofiled/var/lib/vesperprofiled/profiles + install -Dm 0644 dbus/os.pawlet.ProfiledService.conf \ + debian/pawletprofiled/etc/dbus-1/system.d/os.pawlet.ProfiledService.conf + install -Dm 0644 apparmor/pawletprofiled \ + debian/pawletprofiled/etc/apparmor.d/pawletprofiled + install -d -m 0755 debian/pawletprofiled/etc/pawletprofiled + install -d -m 0755 debian/pawletprofiled/etc/pawletprofiled/preinstalled + install -d -m 0700 debian/pawletprofiled/var/lib/pawletprofiled/profiles install -Dm 0640 zte.conf.example \ - debian/vesperprofiled/etc/vesperprofiled/zte.conf.example + debian/pawletprofiled/etc/pawletprofiled/zte.conf.example override_dh_installsystemd: - dh_installsystemd --name=vesperprofiled --no-start + dh_installsystemd --name=pawletprofiled --no-start diff --git a/debian/vesperprofiled.debhelper.log b/debian/vesperprofiled.debhelper.log deleted file mode 100644 index e15a197..0000000 --- a/debian/vesperprofiled.debhelper.log +++ /dev/null @@ -1 +0,0 @@ -dh_installsystemd diff --git a/debian/vesperprofiled.postrm.debhelper b/debian/vesperprofiled.postrm.debhelper deleted file mode 100644 index 857e215..0000000 --- a/debian/vesperprofiled.postrm.debhelper +++ /dev/null @@ -1,12 +0,0 @@ -# Automatically added by dh_installsystemd/13.14.1ubuntu5 -if [ "$1" = remove ] && [ -d /run/systemd/system ] ; then - systemctl --system daemon-reload >/dev/null || true -fi -# End automatically added section -# Automatically added by dh_installsystemd/13.14.1ubuntu5 -if [ "$1" = "purge" ]; then - if [ -x "/usr/bin/deb-systemd-helper" ]; then - deb-systemd-helper purge 'vesperprofiled.service' >/dev/null || true - fi -fi -# End automatically added section diff --git a/debian/vesperprofiled.substvars b/debian/vesperprofiled.substvars deleted file mode 100644 index 8a7e1b0..0000000 --- a/debian/vesperprofiled.substvars +++ /dev/null @@ -1,3 +0,0 @@ -shlibs:Depends=libc6 (>= 2.38), libcurl4t64 (>= 7.16.2), libdbus-1-3 (>= 1.9.14), libgcc-s1 (>= 3.3.1), libssl3t64 (>= 3.0.0), libstdc++6 (>= 11), libsystemd0, libyaml-0-2 -misc:Depends= -misc:Pre-Depends= diff --git a/debian/vesperprofiled/DEBIAN/conffiles b/debian/vesperprofiled/DEBIAN/conffiles deleted file mode 100644 index abbd6f2..0000000 --- a/debian/vesperprofiled/DEBIAN/conffiles +++ /dev/null @@ -1,3 +0,0 @@ -/etc/apparmor.d/vesperprofiled -/etc/dbus-1/system.d/me.oxmc.vesperos.ProfileService.conf -/etc/vesperprofiled/zte.conf.example diff --git a/debian/vesperprofiled/DEBIAN/control b/debian/vesperprofiled/DEBIAN/control deleted file mode 100644 index 48b5f3a..0000000 --- a/debian/vesperprofiled/DEBIAN/control +++ /dev/null @@ -1,31 +0,0 @@ -Package: vesperprofiled -Version: 1.0.0-1 -Architecture: amd64 -Maintainer: oxmc -Installed-Size: 245 -Depends: libc6 (>= 2.38), libcurl4t64 (>= 7.16.2), libdbus-1-3 (>= 1.9.14), libgcc-s1 (>= 3.3.1), libssl3t64 (>= 3.0.0), libstdc++6 (>= 11), libsystemd0, libyaml-0-2, vesperprofiled-config-schema (>= 1.0.0), libssl3 (>= 3.0), libcurl4, dbus, network-manager, ca-certificates -Recommends: cloud-init, nftables, network-manager-strongswan, network-manager-l2tp, libnss3-tools, libpam-pwquality, libpam-faillock, unattended-upgrades, dconf-cli, tpm2-tools -Suggests: vesper-zte-server, vesperos-ca -Section: admin -Priority: optional -Homepage: https://vesperos.oxmc.me -Description: VesperOS configuration profile daemon with Zero-Touch Enrollment - vesperprofiled is the unified device management daemon for VesperOS. - It ships as a single binary containing two subsystems: - . - Profile Service — parses, verifies, and applies .vconfig configuration - profiles. Profiles are YAML files optionally wrapped in a CMS/PKCS#7 - signed envelope. Which payload types are accepted is controlled by the - installed vesperprofiled-config-schema package, allowing OEMs to restrict - the available configuration surface for their platform. - . - ZTE Client — Zero-Touch Enrollment. Collects hardware identity (DMI UUID, - system/board serial, machine-id, permanent MAC addresses, EFI GUID) and - queries a ZTE lookup server on first internet connection. If the device is - registered, the signed MDM enrollment profile is downloaded and installed - automatically. Deferred enrollment is fully supported: if no network is - available at first boot, the ZTE client enrolls on first connectivity. - . - The profile service is exposed as a D-Bus system service at - me.oxmc.vesperos.ProfileService. The ZTE client runs as a background - thread in the same process. diff --git a/debian/vesperprofiled/DEBIAN/md5sums b/debian/vesperprofiled/DEBIAN/md5sums deleted file mode 100644 index 3904eab..0000000 --- a/debian/vesperprofiled/DEBIAN/md5sums +++ /dev/null @@ -1,3 +0,0 @@ -af865abb638806188b22085ca4d5fe77 usr/lib/systemd/system/vesperprofiled.service -f1b630bbe5f876dbba858c4b3fd38d5e usr/sbin/vesperprofiled -5af38dfb23cecbc388fed5881748e63b usr/share/doc/vesperprofiled/changelog.Debian.gz diff --git a/debian/vesperprofiled/DEBIAN/postinst b/debian/vesperprofiled/DEBIAN/postinst deleted file mode 100755 index 5a10a8d..0000000 --- a/debian/vesperprofiled/DEBIAN/postinst +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/sh -set -e - -case "$1" in - configure) - # Data directories - install -d -m 0700 /var/lib/vesperprofiled - install -d -m 0700 /var/lib/vesperprofiled/profiles - install -d -m 0755 /etc/vesperprofiled - install -d -m 0755 /etc/vesperprofiled/preinstalled - - # AppArmor - if command -v aa-enabled >/dev/null 2>&1 && aa-enabled >/dev/null 2>&1; then - if command -v apparmor_parser >/dev/null 2>&1; then - apparmor_parser -r /etc/apparmor.d/vesperprofiled || true - fi - fi - - # D-Bus reload - if [ -d /run/dbus ] && command -v dbus-send >/dev/null 2>&1; then - dbus-send --system \ - --dest=org.freedesktop.DBus \ - --type=method_call \ - /org/freedesktop/DBus \ - org.freedesktop.DBus.ReloadConfig 2>/dev/null || true - fi - - # systemd - if command -v systemctl >/dev/null 2>&1 && \ - systemctl is-system-running --quiet 2>/dev/null; then - systemctl daemon-reload - systemctl enable vesperprofiled.service - systemctl start vesperprofiled.service || true - fi - ;; -esac - -# Automatically added by dh_installsystemd/13.14.1ubuntu5 -if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then - # The following line should be removed in trixie or trixie+1 - deb-systemd-helper unmask 'vesperprofiled.service' >/dev/null || true - - # was-enabled defaults to true, so new installations run enable. - if deb-systemd-helper --quiet was-enabled 'vesperprofiled.service'; then - # Enables the unit on first installation, creates new - # symlinks on upgrades if the unit file has changed. - deb-systemd-helper enable 'vesperprofiled.service' >/dev/null || true - else - # Update the statefile to add new symlinks (if any), which need to be - # cleaned up on purge. Also remove old symlinks. - deb-systemd-helper update-state 'vesperprofiled.service' >/dev/null || true - fi -fi -# End automatically added section - -exit 0 diff --git a/debian/vesperprofiled/DEBIAN/postrm b/debian/vesperprofiled/DEBIAN/postrm deleted file mode 100755 index fb1512d..0000000 --- a/debian/vesperprofiled/DEBIAN/postrm +++ /dev/null @@ -1,58 +0,0 @@ -#!/bin/sh -set -e - -case "$1" in - purge) - rm -rf /var/lib/vesperprofiled - rm -rf /etc/vesperprofiled - # Remove all managed config drops - rm -f /etc/apt/apt.conf.d/99-vesperos-update - rm -f /etc/apt/apt.conf.d/99-vesperos-proxy - rm -f /etc/NetworkManager/conf.d/vesperos-proxy.conf - rm -f /etc/systemd/timesyncd.conf.d/vesperos.conf - rm -f /etc/systemd/resolved.conf.d/vesperos-dns.conf - rm -f /etc/security/pwquality.conf.d/vesperos.conf - rm -f /etc/security/faillock.conf.d/vesperos.conf - rm -f /etc/nftables.d/vesperos.nft - rm -f /etc/profile.d/vesperos-proxy.sh - rm -f /etc/cloud/cloud.cfg.d/99-vesperos-mdm.cfg - rm -f /etc/cloud/cloud.cfg.d/99-vesperos-firstboot.cfg - rm -f /etc/dconf/db/local.d/00-vesperos-wallpaper - rm -f /etc/dconf/db/local.d/00-vesperos-screensaver - rm -f /etc/dconf/db/local.d/00-vesperos-firstboot - rm -f /etc/dconf/db/local.d/locks/vesperos-wallpaper - rm -f /etc/dconf/db/local.d/locks/vesperos-screensaver - rm -rf /usr/local/share/ca-certificates/vesperos - rm -rf /etc/ssl/private/vesperos - command -v update-ca-certificates >/dev/null 2>&1 && \ - update-ca-certificates --fresh 2>/dev/null || true - command -v dconf >/dev/null 2>&1 && \ - dconf update 2>/dev/null || true - dbus-send --system --dest=org.freedesktop.DBus \ - --type=method_call /org/freedesktop/DBus \ - org.freedesktop.DBus.ReloadConfig 2>/dev/null || true - if command -v systemctl >/dev/null 2>&1; then - systemctl daemon-reload || true - fi - ;; - remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - if command -v systemctl >/dev/null 2>&1; then - systemctl daemon-reload || true - fi - ;; -esac - -# Automatically added by dh_installsystemd/13.14.1ubuntu5 -if [ "$1" = remove ] && [ -d /run/systemd/system ] ; then - systemctl --system daemon-reload >/dev/null || true -fi -# End automatically added section -# Automatically added by dh_installsystemd/13.14.1ubuntu5 -if [ "$1" = "purge" ]; then - if [ -x "/usr/bin/deb-systemd-helper" ]; then - deb-systemd-helper purge 'vesperprofiled.service' >/dev/null || true - fi -fi -# End automatically added section - -exit 0 diff --git a/debian/vesperprofiled/DEBIAN/preinst b/debian/vesperprofiled/DEBIAN/preinst deleted file mode 100755 index 8ed4db9..0000000 --- a/debian/vesperprofiled/DEBIAN/preinst +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -set -e -# Automatically added by dh_installsystemd/13.14.1ubuntu5 -if [ -z "${DPKG_ROOT:-}" ] && [ "$1" = upgrade ] && [ -d /run/systemd/system ] ; then - deb-systemd-invoke stop 'vesperprofiled.service' >/dev/null || true -fi -# End automatically added section diff --git a/debian/vesperprofiled/DEBIAN/prerm b/debian/vesperprofiled/DEBIAN/prerm deleted file mode 100755 index 2b10e7a..0000000 --- a/debian/vesperprofiled/DEBIAN/prerm +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh -set -e - -case "$1" in - remove|upgrade|deconfigure) - if command -v systemctl >/dev/null 2>&1; then - systemctl stop vesperprofiled.service 2>/dev/null || true - systemctl disable vesperprofiled.service 2>/dev/null || true - fi - if command -v apparmor_parser >/dev/null 2>&1 && \ - [ -f /etc/apparmor.d/vesperprofiled ]; then - apparmor_parser -R /etc/apparmor.d/vesperprofiled 2>/dev/null || true - fi - ;; -esac - - -exit 0 diff --git a/debian/vesperprofiled/etc/dbus-1/system.d/me.oxmc.vesperos.ProfileService.conf b/debian/vesperprofiled/etc/dbus-1/system.d/me.oxmc.vesperos.ProfileService.conf deleted file mode 100644 index 567b3c1..0000000 --- a/debian/vesperprofiled/etc/dbus-1/system.d/me.oxmc.vesperos.ProfileService.conf +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/debian/vesperprofiled/etc/vesperprofiled/zte.conf.example b/debian/vesperprofiled/etc/vesperprofiled/zte.conf.example deleted file mode 100644 index 9b4bc47..0000000 --- a/debian/vesperprofiled/etc/vesperprofiled/zte.conf.example +++ /dev/null @@ -1,34 +0,0 @@ -# /etc/vesperprofiled/zte.conf -# VesperOS Zero-Touch Enrollment configuration -# ───────────────────────────────────────────────────────────────────────── -# This file is read by vesper-zte on startup. -# Lines beginning with # are comments. -# All settings are optional — defaults are shown. - -# ZTE lookup server URL. -# Default: https://zte.vesperos.oxmc.me (oxmc hosted, public) -# Set this to your own server for self-hosted ZTE. -# -# server_url=https://zte.vesperos.oxmc.me - -# Disable ZTE entirely on this device. -# Set to "1" to prevent automatic enrollment. -# Can also be set by writing "disabled" to /var/lib/vesperprofiled/zte_state.json -# -# disabled=0 - -# Maximum number of enrollment retry attempts before giving up. -# 0 = retry indefinitely on every connectivity event. -# -# max_retries=0 - -# Delay between enrollment retries in seconds. -# The actual delay uses exponential backoff up to this maximum. -# -# retry_max_delay=300 - -# TLS CA bundle for verifying the ZTE server certificate. -# Override if you use a private CA for your self-hosted ZTE server. -# The server certificate must chain to this CA. -# -# ca_bundle=/etc/ssl/certs/ca-certificates.crt diff --git a/debian/vesperprofiled/usr/lib/systemd/system/vesperprofiled.service b/debian/vesperprofiled/usr/lib/systemd/system/vesperprofiled.service deleted file mode 100644 index 3be8cd3..0000000 --- a/debian/vesperprofiled/usr/lib/systemd/system/vesperprofiled.service +++ /dev/null @@ -1,55 +0,0 @@ -[Unit] -Description=VesperOS Profile Daemon (profiles + Zero-Touch Enrollment) -Documentation=https://vesperos.oxmc.me/docs/vesperprofiled - -# Must run before cloud-init so preinstalled profiles (WiFi, MDM drop-ins, -# first-boot config) are on disk when cloud-init starts. -Before=cloud-init-local.service cloud-init.service -After=local-fs.target dbus.service systemd-udev-settle.service - -# Start after NetworkManager so ZTE can immediately check current -# connectivity state rather than waiting for a StateChanged signal. -After=NetworkManager.service -# But don't hard-require NM — ZTE degrades gracefully if NM isn't present. -Wants=NetworkManager.service - -[Service] -Type=notify -NotifyAccess=main - -ExecStart=/usr/sbin/vesperprofiled -ExecReload=/bin/kill -HUP $MAINPID - -User=root -Group=root - -# Restart the whole daemon (profile service + ZTE watcher) on crash. -Restart=on-failure -RestartSec=5s -TimeoutStartSec=60 - -RuntimeDirectory=vesperprofiled -RuntimeDirectoryMode=0750 -StateDirectory=vesperprofiled -StateDirectoryMode=0700 - -# Writable paths — profile daemon writes config drops, ZTE writes state -ReadWritePaths=/etc /var/lib/vesperprofiled /run/vesperprofiled \ - /var/lib/gnome-initial-setup - -SystemCallFilter=@system-service @file-system @network-io @process -SystemCallErrorNumber=EPERM - -NoNewPrivileges=false -PrivateTmp=true -ProtectKernelLogs=true -ProtectKernelModules=true -ProtectControlGroups=true - -StandardOutput=journal -StandardError=journal -SyslogIdentifier=vesperprofiled - -[Install] -WantedBy=multi-user.target -WantedBy=cloud-init.target diff --git a/debian/vesperprofiled/usr/sbin/vesperprofiled b/debian/vesperprofiled/usr/sbin/vesperprofiled deleted file mode 100755 index 46a3e1c..0000000 Binary files a/debian/vesperprofiled/usr/sbin/vesperprofiled and /dev/null differ diff --git a/debian/vesperprofiled/usr/share/doc/vesperprofiled/changelog.Debian.gz b/debian/vesperprofiled/usr/share/doc/vesperprofiled/changelog.Debian.gz deleted file mode 100644 index 57a8b1b..0000000 Binary files a/debian/vesperprofiled/usr/share/doc/vesperprofiled/changelog.Debian.gz and /dev/null differ diff --git a/obj-x86_64-linux-gnu/CMakeCache.txt b/obj-x86_64-linux-gnu/CMakeCache.txt deleted file mode 100644 index a86fea7..0000000 --- a/obj-x86_64-linux-gnu/CMakeCache.txt +++ /dev/null @@ -1,699 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu -# It was generated by CMake: /usr/bin/cmake -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line - -//Path to a program. -CMAKE_AR:FILEPATH=/usr/bin/ar - -//Choose the type of build, options are: None Debug Release RelWithDebInfo -// MinSizeRel ... -CMAKE_BUILD_TYPE:STRING=Release - -//Enable/Disable color output during build. -CMAKE_COLOR_MAKEFILE:BOOL=ON - -//CXX compiler -CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13 - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13 - -//Flags used by the CXX compiler during all build types. -CMAKE_CXX_FLAGS:STRING=-g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3 - -//Flags used by the CXX compiler during DEBUG builds. -CMAKE_CXX_FLAGS_DEBUG:STRING=-g - -//Flags used by the CXX compiler during MINSIZEREL builds. -CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the CXX compiler during RELEASE builds. -CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the CXX compiler during RELWITHDEBINFO builds. -CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND - -//Flags used by the linker during all build types. -CMAKE_EXE_LINKER_FLAGS:STRING=-Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now - -//Flags used by the linker during DEBUG builds. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during MINSIZEREL builds. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during RELEASE builds. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during RELWITHDEBINFO builds. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Enable/Disable output of compile commands during generation. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= - -//No help, variable specified on the command line. -CMAKE_EXPORT_NO_PACKAGE_REGISTRY:UNINITIALIZED=ON - -//No help, variable specified on the command line. -CMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY:UNINITIALIZED=ON - -//Value Computed by CMake. -CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/pkgRedirects - -//No help, variable specified on the command line. -CMAKE_FIND_USE_PACKAGE_REGISTRY:UNINITIALIZED=OFF - -//User executables (bin) -CMAKE_INSTALL_BINDIR:PATH=bin - -//Read-only architecture-independent data (DATAROOTDIR) -CMAKE_INSTALL_DATADIR:PATH= - -//Read-only architecture-independent data root (share) -CMAKE_INSTALL_DATAROOTDIR:PATH=share - -//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) -CMAKE_INSTALL_DOCDIR:PATH= - -//C header files (include) -CMAKE_INSTALL_INCLUDEDIR:PATH=include - -//Info documentation (DATAROOTDIR/info) -CMAKE_INSTALL_INFODIR:PATH= - -//Object code libraries (lib) -CMAKE_INSTALL_LIBDIR:PATH=lib/x86_64-linux-gnu - -//Program executables (libexec) -CMAKE_INSTALL_LIBEXECDIR:PATH=libexec - -//Locale-dependent data (DATAROOTDIR/locale) -CMAKE_INSTALL_LOCALEDIR:PATH= - -//Modifiable single-machine data (var) -CMAKE_INSTALL_LOCALSTATEDIR:PATH=/var - -//Man documentation (DATAROOTDIR/man) -CMAKE_INSTALL_MANDIR:PATH= - -//C header files for non-gcc (/usr/include) -CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include - -//Install path prefix, prepended onto install directories. -CMAKE_INSTALL_PREFIX:PATH=/usr - -//Run-time variable data (LOCALSTATEDIR/run) -CMAKE_INSTALL_RUNSTATEDIR:PATH=/run - -//System admin executables (sbin) -CMAKE_INSTALL_SBINDIR:PATH=sbin - -//Modifiable architecture-independent data (com) -CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com - -//Read-only single-machine data (etc) -CMAKE_INSTALL_SYSCONFDIR:PATH=/etc - -//Path to a program. -CMAKE_LINKER:FILEPATH=/usr/bin/ld - -//Path to a program. -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING=-Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_NM:FILEPATH=/usr/bin/nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=vesperprofiled - -//Value Computed by CMake -CMAKE_PROJECT_VERSION:STATIC=1.0.0 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_MAJOR:STATIC=1 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_MINOR:STATIC=0 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_PATCH:STATIC=0 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_TWEAK:STATIC= - -//Path to a program. -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib - -//Path to a program. -CMAKE_READELF:FILEPATH=/usr/bin/readelf - -//Flags used by the linker during the creation of shared libraries -// during all build types. -CMAKE_SHARED_LINKER_FLAGS:STRING=-Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now - -//Flags used by the linker during the creation of shared libraries -// during DEBUG builds. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of shared libraries -// during MINSIZEREL builds. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELEASE builds. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELWITHDEBINFO builds. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//No help, variable specified on the command line. -CMAKE_SKIP_INSTALL_ALL_DEPENDENCY:UNINITIALIZED=ON - -//If set, runtime paths are not added when installing shared libraries, -// but are added when building. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO - -//If set, runtime paths are not added when using shared libraries. -CMAKE_SKIP_RPATH:BOOL=NO - -//Flags used by the linker during the creation of static libraries -// during all build types. -CMAKE_STATIC_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of static libraries -// during DEBUG builds. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of static libraries -// during MINSIZEREL builds. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELEASE builds. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELWITHDEBINFO builds. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_STRIP:FILEPATH=/usr/bin/strip - -//Path to a program. -CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND - -//If this value is on, makefiles will be generated without the -// .SILENT directive, and all commands will be echoed to the console -// during the make. This is useful for debugging only. With Visual -// Studio IDE projects all commands are done without /nologo. -CMAKE_VERBOSE_MAKEFILE:BOOL=ON - -//The directory containing a CMake configuration file for CURL. -CURL_DIR:PATH=CURL_DIR-NOTFOUND - -//Path to a file. -CURL_INCLUDE_DIR:PATH=/usr/include/x86_64-linux-gnu - -//Path to a library. -CURL_LIBRARY_DEBUG:FILEPATH=CURL_LIBRARY_DEBUG-NOTFOUND - -//Path to a library. -CURL_LIBRARY_RELEASE:FILEPATH=/usr/lib/x86_64-linux-gnu/libcurl.so - -//No help, variable specified on the command line. -FETCHCONTENT_FULLY_DISCONNECTED:UNINITIALIZED=ON - -//Arguments to supply to pkg-config -PKG_CONFIG_ARGN:STRING= - -//pkg-config executable -PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config - -//Path to a library. -pkgcfg_lib_DBUS_dbus-1:FILEPATH=/usr/lib/x86_64-linux-gnu/libdbus-1.so - -//Path to a library. -pkgcfg_lib_LIBYAML_yaml:FILEPATH=/usr/lib/x86_64-linux-gnu/libyaml.so - -//Path to a library. -pkgcfg_lib_OPENSSL_crypto:FILEPATH=/usr/lib/x86_64-linux-gnu/libcrypto.so - -//Path to a library. -pkgcfg_lib_OPENSSL_ssl:FILEPATH=/usr/lib/x86_64-linux-gnu/libssl.so - -//Path to a library. -pkgcfg_lib_PC_CURL_curl:FILEPATH=/usr/lib/x86_64-linux-gnu/libcurl.so - -//Path to a library. -pkgcfg_lib_SYSTEMD_systemd:FILEPATH=/usr/lib/x86_64-linux-gnu/libsystemd.so - -//Value Computed by CMake -vesperprofiled_BINARY_DIR:STATIC=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu - -//Value Computed by CMake -vesperprofiled_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -vesperprofiled_SOURCE_DIR:STATIC=/home/oxmc/VesperOS/packages/vesperprofiled - - -######################## -# INTERNAL cache entries -######################## - -//ADVANCED property for variable: CMAKE_ADDR2LINE -CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_AR -CMAKE_AR-ADVANCED:INTERNAL=1 -//This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=28 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 -//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE -CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=/usr/bin/cmake -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest -//ADVANCED property for variable: CMAKE_CXX_COMPILER -CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR -CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB -CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS -CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG -CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL -CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE -CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO -CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Unix Makefiles -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=/home/oxmc/VesperOS/packages/vesperprofiled -//ADVANCED property for variable: CMAKE_INSTALL_BINDIR -CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_DATADIR -CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR -CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR -CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR -CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_INFODIR -CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR -CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR -CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR -CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR -CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_MANDIR -CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR -CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR -CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR -CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR -CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 -//Install .so files without execute permission. -CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR -CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MAKE_PROGRAM -CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_NM -CMAKE_NM-ADVANCED:INTERNAL=1 -//number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.28 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_TAPI -CMAKE_TAPI-ADVANCED:INTERNAL=1 -//uname command -CMAKE_UNAME:INTERNAL=/usr/bin/uname -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CURL_DIR -CURL_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CURL_INCLUDE_DIR -CURL_INCLUDE_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CURL_LIBRARY_DEBUG -CURL_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CURL_LIBRARY_RELEASE -CURL_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 -DBUS_CFLAGS:INTERNAL=-I/usr/include/dbus-1.0;-I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -DBUS_CFLAGS_I:INTERNAL= -DBUS_CFLAGS_OTHER:INTERNAL= -DBUS_FOUND:INTERNAL=1 -DBUS_INCLUDEDIR:INTERNAL=/usr/include -DBUS_INCLUDE_DIRS:INTERNAL=/usr/include/dbus-1.0;/usr/lib/x86_64-linux-gnu/dbus-1.0/include -DBUS_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-ldbus-1 -DBUS_LDFLAGS_OTHER:INTERNAL= -DBUS_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu -DBUS_LIBRARIES:INTERNAL=dbus-1 -DBUS_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu -DBUS_LIBS:INTERNAL= -DBUS_LIBS_L:INTERNAL= -DBUS_LIBS_OTHER:INTERNAL= -DBUS_LIBS_PATHS:INTERNAL= -DBUS_MODULE_NAME:INTERNAL=dbus-1 -DBUS_PREFIX:INTERNAL=/usr -DBUS_STATIC_CFLAGS:INTERNAL=-I/usr/include/dbus-1.0;-I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -DBUS_STATIC_CFLAGS_I:INTERNAL= -DBUS_STATIC_CFLAGS_OTHER:INTERNAL= -DBUS_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/dbus-1.0;/usr/lib/x86_64-linux-gnu/dbus-1.0/include -DBUS_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-ldbus-1;-lsystemd -DBUS_STATIC_LDFLAGS_OTHER:INTERNAL= -DBUS_STATIC_LIBDIR:INTERNAL= -DBUS_STATIC_LIBRARIES:INTERNAL=dbus-1;systemd -DBUS_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu -DBUS_STATIC_LIBS:INTERNAL= -DBUS_STATIC_LIBS_L:INTERNAL= -DBUS_STATIC_LIBS_OTHER:INTERNAL= -DBUS_STATIC_LIBS_PATHS:INTERNAL= -DBUS_VERSION:INTERNAL=1.14.10 -DBUS_dbus-1_INCLUDEDIR:INTERNAL= -DBUS_dbus-1_LIBDIR:INTERNAL= -DBUS_dbus-1_PREFIX:INTERNAL= -DBUS_dbus-1_VERSION:INTERNAL= -//Details about finding CURL -FIND_PACKAGE_MESSAGE_DETAILS_CURL:INTERNAL=[/usr/lib/x86_64-linux-gnu/libcurl.so][/usr/include/x86_64-linux-gnu][c ][v8.5.0()] -//Details about finding PkgConfig -FIND_PACKAGE_MESSAGE_DETAILS_PkgConfig:INTERNAL=[/usr/bin/pkg-config][v1.8.1()] -LIBYAML_CFLAGS:INTERNAL=-I/usr/include -LIBYAML_CFLAGS_I:INTERNAL= -LIBYAML_CFLAGS_OTHER:INTERNAL= -LIBYAML_FOUND:INTERNAL=1 -LIBYAML_INCLUDEDIR:INTERNAL=/usr/include -LIBYAML_INCLUDE_DIRS:INTERNAL=/usr/include -LIBYAML_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lyaml -LIBYAML_LDFLAGS_OTHER:INTERNAL= -LIBYAML_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu -LIBYAML_LIBRARIES:INTERNAL=yaml -LIBYAML_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu -LIBYAML_LIBS:INTERNAL= -LIBYAML_LIBS_L:INTERNAL= -LIBYAML_LIBS_OTHER:INTERNAL= -LIBYAML_LIBS_PATHS:INTERNAL= -LIBYAML_MODULE_NAME:INTERNAL=yaml-0.1 -LIBYAML_PREFIX:INTERNAL=/usr -LIBYAML_STATIC_CFLAGS:INTERNAL=-I/usr/include -LIBYAML_STATIC_CFLAGS_I:INTERNAL= -LIBYAML_STATIC_CFLAGS_OTHER:INTERNAL= -LIBYAML_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include -LIBYAML_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lyaml -LIBYAML_STATIC_LDFLAGS_OTHER:INTERNAL= -LIBYAML_STATIC_LIBDIR:INTERNAL= -LIBYAML_STATIC_LIBRARIES:INTERNAL=yaml -LIBYAML_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu -LIBYAML_STATIC_LIBS:INTERNAL= -LIBYAML_STATIC_LIBS_L:INTERNAL= -LIBYAML_STATIC_LIBS_OTHER:INTERNAL= -LIBYAML_STATIC_LIBS_PATHS:INTERNAL= -LIBYAML_VERSION:INTERNAL=0.2.5 -LIBYAML_yaml-0.1_INCLUDEDIR:INTERNAL= -LIBYAML_yaml-0.1_LIBDIR:INTERNAL= -LIBYAML_yaml-0.1_PREFIX:INTERNAL= -LIBYAML_yaml-0.1_VERSION:INTERNAL= -OPENSSL_CFLAGS:INTERNAL=-I/usr/include -OPENSSL_CFLAGS_I:INTERNAL= -OPENSSL_CFLAGS_OTHER:INTERNAL= -OPENSSL_FOUND:INTERNAL=1 -OPENSSL_INCLUDEDIR:INTERNAL=/usr/include -OPENSSL_INCLUDE_DIRS:INTERNAL=/usr/include -OPENSSL_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lssl;-lcrypto -OPENSSL_LDFLAGS_OTHER:INTERNAL= -OPENSSL_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu -OPENSSL_LIBRARIES:INTERNAL=ssl;crypto -OPENSSL_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu -OPENSSL_LIBS:INTERNAL= -OPENSSL_LIBS_L:INTERNAL= -OPENSSL_LIBS_OTHER:INTERNAL= -OPENSSL_LIBS_PATHS:INTERNAL= -OPENSSL_MODULE_NAME:INTERNAL=openssl -OPENSSL_PREFIX:INTERNAL=/usr -OPENSSL_STATIC_CFLAGS:INTERNAL=-I/usr/include -OPENSSL_STATIC_CFLAGS_I:INTERNAL= -OPENSSL_STATIC_CFLAGS_OTHER:INTERNAL= -OPENSSL_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include -OPENSSL_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lssl;-L/usr/lib/x86_64-linux-gnu;-ldl;-pthread;-lcrypto;-ldl;-pthread -OPENSSL_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread;-pthread -OPENSSL_STATIC_LIBDIR:INTERNAL= -OPENSSL_STATIC_LIBRARIES:INTERNAL=ssl;dl;crypto;dl -OPENSSL_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu -OPENSSL_STATIC_LIBS:INTERNAL= -OPENSSL_STATIC_LIBS_L:INTERNAL= -OPENSSL_STATIC_LIBS_OTHER:INTERNAL= -OPENSSL_STATIC_LIBS_PATHS:INTERNAL= -OPENSSL_VERSION:INTERNAL=3.0.13 -OPENSSL_openssl_INCLUDEDIR:INTERNAL= -OPENSSL_openssl_LIBDIR:INTERNAL= -OPENSSL_openssl_PREFIX:INTERNAL= -OPENSSL_openssl_VERSION:INTERNAL= -PC_CURL_CFLAGS:INTERNAL=-I/usr/include/x86_64-linux-gnu -PC_CURL_CFLAGS_I:INTERNAL= -PC_CURL_CFLAGS_OTHER:INTERNAL= -PC_CURL_FOUND:INTERNAL=1 -PC_CURL_INCLUDEDIR:INTERNAL=/usr/include/x86_64-linux-gnu -PC_CURL_INCLUDE_DIRS:INTERNAL=/usr/include/x86_64-linux-gnu -PC_CURL_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lcurl -PC_CURL_LDFLAGS_OTHER:INTERNAL= -PC_CURL_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu -PC_CURL_LIBRARIES:INTERNAL=curl -PC_CURL_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu -PC_CURL_LIBS:INTERNAL= -PC_CURL_LIBS_L:INTERNAL= -PC_CURL_LIBS_OTHER:INTERNAL= -PC_CURL_LIBS_PATHS:INTERNAL= -PC_CURL_MODULE_NAME:INTERNAL=libcurl -PC_CURL_PREFIX:INTERNAL=/usr -PC_CURL_STATIC_CFLAGS:INTERNAL=-I/usr/include/x86_64-linux-gnu -PC_CURL_STATIC_CFLAGS_I:INTERNAL= -PC_CURL_STATIC_CFLAGS_OTHER:INTERNAL= -PC_CURL_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/x86_64-linux-gnu -PC_CURL_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lcurl;-lnghttp2;-lidn2;-lrtmp;-lssh;-lssh;-lpsl;-lssl;-lcrypto;-lssl;-lcrypto;-lgssapi_krb5;-llber;-lldap;-llber;-lzstd;-lbrotlidec;-lz -PC_CURL_STATIC_LDFLAGS_OTHER:INTERNAL= -PC_CURL_STATIC_LIBDIR:INTERNAL= -PC_CURL_STATIC_LIBRARIES:INTERNAL=curl;nghttp2;idn2;rtmp;ssh;ssh;psl;ssl;crypto;ssl;crypto;gssapi_krb5;lber;ldap;lber;zstd;brotlidec;z -PC_CURL_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu -PC_CURL_STATIC_LIBS:INTERNAL= -PC_CURL_STATIC_LIBS_L:INTERNAL= -PC_CURL_STATIC_LIBS_OTHER:INTERNAL= -PC_CURL_STATIC_LIBS_PATHS:INTERNAL= -PC_CURL_VERSION:INTERNAL=8.5.0 -PC_CURL_libcurl_INCLUDEDIR:INTERNAL= -PC_CURL_libcurl_LIBDIR:INTERNAL= -PC_CURL_libcurl_PREFIX:INTERNAL= -PC_CURL_libcurl_VERSION:INTERNAL= -//ADVANCED property for variable: PKG_CONFIG_ARGN -PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE -PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1 -SYSTEMD_CFLAGS:INTERNAL=-I/usr/include -SYSTEMD_CFLAGS_I:INTERNAL= -SYSTEMD_CFLAGS_OTHER:INTERNAL= -SYSTEMD_FOUND:INTERNAL=1 -SYSTEMD_INCLUDEDIR:INTERNAL=/usr/include -SYSTEMD_INCLUDE_DIRS:INTERNAL=/usr/include -SYSTEMD_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lsystemd -SYSTEMD_LDFLAGS_OTHER:INTERNAL= -SYSTEMD_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu -SYSTEMD_LIBRARIES:INTERNAL=systemd -SYSTEMD_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu -SYSTEMD_LIBS:INTERNAL= -SYSTEMD_LIBS_L:INTERNAL= -SYSTEMD_LIBS_OTHER:INTERNAL= -SYSTEMD_LIBS_PATHS:INTERNAL= -SYSTEMD_MODULE_NAME:INTERNAL=libsystemd -SYSTEMD_PREFIX:INTERNAL=/usr -SYSTEMD_STATIC_CFLAGS:INTERNAL=-I/usr/include -SYSTEMD_STATIC_CFLAGS_I:INTERNAL= -SYSTEMD_STATIC_CFLAGS_OTHER:INTERNAL= -SYSTEMD_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include -SYSTEMD_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lsystemd -SYSTEMD_STATIC_LDFLAGS_OTHER:INTERNAL= -SYSTEMD_STATIC_LIBDIR:INTERNAL= -SYSTEMD_STATIC_LIBRARIES:INTERNAL=systemd -SYSTEMD_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu -SYSTEMD_STATIC_LIBS:INTERNAL= -SYSTEMD_STATIC_LIBS_L:INTERNAL= -SYSTEMD_STATIC_LIBS_OTHER:INTERNAL= -SYSTEMD_STATIC_LIBS_PATHS:INTERNAL= -SYSTEMD_VERSION:INTERNAL=255 -SYSTEMD_libsystemd_INCLUDEDIR:INTERNAL= -SYSTEMD_libsystemd_LIBDIR:INTERNAL= -SYSTEMD_libsystemd_PREFIX:INTERNAL= -SYSTEMD_libsystemd_VERSION:INTERNAL= -//linker supports push/pop state -_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE -//CMAKE_INSTALL_PREFIX during last run -_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr -__pkg_config_arguments_DBUS:INTERNAL=REQUIRED;dbus-1 -__pkg_config_arguments_LIBYAML:INTERNAL=REQUIRED;yaml-0.1 -__pkg_config_arguments_OPENSSL:INTERNAL=REQUIRED;openssl -__pkg_config_arguments_PC_CURL:INTERNAL=QUIET;libcurl -__pkg_config_arguments_SYSTEMD:INTERNAL=REQUIRED;libsystemd -__pkg_config_checked_DBUS:INTERNAL=1 -__pkg_config_checked_LIBYAML:INTERNAL=1 -__pkg_config_checked_OPENSSL:INTERNAL=1 -__pkg_config_checked_PC_CURL:INTERNAL=1 -__pkg_config_checked_SYSTEMD:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_DBUS_dbus-1 -pkgcfg_lib_DBUS_dbus-1-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_LIBYAML_yaml -pkgcfg_lib_LIBYAML_yaml-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_OPENSSL_crypto -pkgcfg_lib_OPENSSL_crypto-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_OPENSSL_ssl -pkgcfg_lib_OPENSSL_ssl-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_PC_CURL_curl -pkgcfg_lib_PC_CURL_curl-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: pkgcfg_lib_SYSTEMD_systemd -pkgcfg_lib_SYSTEMD_systemd-ADVANCED:INTERNAL=1 -prefix_result:INTERNAL=/usr/lib/x86_64-linux-gnu - diff --git a/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CMakeCXXCompiler.cmake b/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CMakeCXXCompiler.cmake deleted file mode 100644 index 8dbc9d3..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,85 +0,0 @@ -set(CMAKE_CXX_COMPILER "/usr/bin/c++") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "GNU") -set(CMAKE_CXX_COMPILER_VERSION "13.3.0") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") -set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") - -set(CMAKE_CXX_PLATFORM_ID "Linux") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_CXX_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-13") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-13") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_COMPILER_IS_GNUCXX 1) -set(CMAKE_CXX_COMPILER_LOADED 1) -set(CMAKE_CXX_COMPILER_WORKS TRUE) -set(CMAKE_CXX_ABI_COMPILED TRUE) - -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") - -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) -set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -set(CMAKE_CXX_COMPILER_ABI "ELF") -set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") - -if(CMAKE_CXX_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_CXX_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -endif() - -if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") -endif() - -set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/13;/usr/include/x86_64-linux-gnu/c++/13;/usr/include/c++/13/backward;/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_CXX.bin b/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_CXX.bin deleted file mode 100755 index 082e91a..0000000 Binary files a/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_CXX.bin and /dev/null differ diff --git a/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CMakeSystem.cmake b/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CMakeSystem.cmake deleted file mode 100644 index 714b76e..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Linux-6.8.0-110-generic") -set(CMAKE_HOST_SYSTEM_NAME "Linux") -set(CMAKE_HOST_SYSTEM_VERSION "6.8.0-110-generic") -set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") - - - -set(CMAKE_SYSTEM "Linux-6.8.0-110-generic") -set(CMAKE_SYSTEM_NAME "Linux") -set(CMAKE_SYSTEM_VERSION "6.8.0-110-generic") -set(CMAKE_SYSTEM_PROCESSOR "x86_64") - -set(CMAKE_CROSSCOMPILING "FALSE") - -set(CMAKE_SYSTEM_LOADED 1) diff --git a/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CompilerIdCXX/CMakeCXXCompilerId.cpp deleted file mode 100644 index 9c9c90e..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CompilerIdCXX/CMakeCXXCompilerId.cpp +++ /dev/null @@ -1,869 +0,0 @@ -/* This source file must have a .cpp extension so that all C++ compilers - recognize the extension without flags. Borland does not know .cxx for - example. */ -#ifndef __cplusplus -# error "A C compiler has been selected for C++." -#endif - -#if !defined(__has_include) -/* If the compiler does not have __has_include, pretend the answer is - always no. */ -# define __has_include(x) 0 -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__COMO__) -# define COMPILER_ID "Comeau" - /* __COMO_VERSION__ = VRR */ -# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) -# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) - -#elif defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, - except that a few beta releases use the old format with V=2021. */ -# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) - /* The third version component from --version is an update index, - but no macro is provided for it. */ -# define COMPILER_VERSION_PATCH DEC(0) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -# define COMPILER_ID "IntelLLVM" -#if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -#endif -#if defined(__GNUC__) -# define SIMULATE_ID "GNU" -#endif -/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and - * later. Look for 6 digit vs. 8 digit version number to decide encoding. - * VVVV is no smaller than the current year when a version is released. - */ -#if __INTEL_LLVM_COMPILER < 1000000L -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -#else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -#endif -#if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -#endif -#if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -#elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -#endif -#if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -#endif -#if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -#endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_CC) -# define COMPILER_ID "SunPro" -# if __SUNPRO_CC >= 0x5100 - /* __SUNPRO_CC = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# endif - -#elif defined(__HP_aCC) -# define COMPILER_ID "HP" - /* __HP_aCC = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) - -#elif defined(__DECCXX) -# define COMPILER_ID "Compaq" - /* __DECCXX_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) - -#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -# define COMPILER_ID "XL" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) || defined(__GNUG__) -# define COMPILER_ID "GNU" -# if defined(__GNUC__) -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# else -# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L -# if defined(__INTEL_CXX11_MODE__) -# if defined(__cpp_aggregate_nsdmi) -# define CXX_STD 201402L -# else -# define CXX_STD 201103L -# endif -# else -# define CXX_STD 199711L -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# define CXX_STD _MSVC_LANG -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_standard_default = "INFO" ":" "standard_default[" -#if CXX_STD > 202002L - "23" -#elif CXX_STD > 201703L - "20" -#elif CXX_STD >= 201703L - "17" -#elif CXX_STD >= 201402L - "14" -#elif CXX_STD >= 201103L - "11" -#else - "98" -#endif -"]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -int main(int argc, char* argv[]) -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} diff --git a/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CompilerIdCXX/a.out b/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CompilerIdCXX/a.out deleted file mode 100755 index e771f02..0000000 Binary files a/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CompilerIdCXX/a.out and /dev/null differ diff --git a/obj-x86_64-linux-gnu/CMakeFiles/CMakeConfigureLog.yaml b/obj-x86_64-linux-gnu/CMakeFiles/CMakeConfigureLog.yaml deleted file mode 100644 index fca9987..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/CMakeConfigureLog.yaml +++ /dev/null @@ -1,329 +0,0 @@ - ---- -events: - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake:233 (message)" - - "CMakeLists.txt:2 (project)" - message: | - The system is: Linux - 6.8.0-110-generic - x86_64 - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:2 (project)" - message: | - Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. - Compiler: /usr/bin/c++ - Build flags: -g;-O2;-fno-omit-frame-pointer;-mno-omit-leaf-frame-pointer;-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.;-flto=auto;-ffat-lto-objects;-fstack-protector-strong;-fstack-clash-protection;-Wformat;-Werror=format-security;-fcf-protection;-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1;-Wdate-time;-D_FORTIFY_SOURCE=3 - Id flags: - - The output was: - 0 - - - Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" - - The CXX compiler identification is GNU, found in: - /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/3.28.3/CompilerIdCXX/a.out - - - - kind: "try_compile-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" - - "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - checks: - - "Detecting CXX compiler ABI info" - directories: - source: "/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6" - binary: "/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6" - cmakeVariables: - CMAKE_CXX_FLAGS: "-g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3" - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "-Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now" - buildResult: - variable: "CMAKE_CXX_ABI_COMPILED" - cached: true - stdout: | - Change Dir: '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6' - - Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_85847/fast - gmake[2]: Entering directory '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6' - /usr/bin/gmake -f CMakeFiles/cmTC_85847.dir/build.make CMakeFiles/cmTC_85847.dir/build - gmake[3]: Entering directory '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6' - Building CXX object CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o - /usr/bin/c++ -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3 -v -o CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp - Using built-in specs. - COLLECT_GCC=/usr/bin/c++ - OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa - OFFLOAD_TARGET_DEFAULT=1 - Target: x86_64-linux-gnu - Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) - COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-ffat-lto-objects' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-v' '-o' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_85847.dir/' - /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE -D _FORTIFY_SOURCE=3 /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_85847.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -Wformat=1 -Wdate-time -version -fno-omit-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cc28TbsU.s - GNU C++17 (Ubuntu 13.3.0-6ubuntu2~24.04.1) version 13.3.0 (x86_64-linux-gnu) - compiled by GNU C version 13.3.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/13" - ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" - ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu" - ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed" - ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include" - #include "..." search starts here: - #include <...> search starts here: - /usr/include/c++/13 - /usr/include/x86_64-linux-gnu/c++/13 - /usr/include/c++/13/backward - /usr/lib/gcc/x86_64-linux-gnu/13/include - /usr/local/include - /usr/include/x86_64-linux-gnu - /usr/include - End of search list. - Compiler executable checksum: 7896445e4990772fdae9dc0659a99266 - COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-ffat-lto-objects' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-v' '-o' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_85847.dir/' - as -v --gdwarf-5 --64 -o CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc28TbsU.s - GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42 - COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ - LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-ffat-lto-objects' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-v' '-o' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.' - Linking CXX executable cmTC_85847 - /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_85847.dir/link.txt --verbose=1 - /usr/bin/c++ -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3 -Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now -v CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_85847 - Using built-in specs. - COLLECT_GCC=/usr/bin/c++ - COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper - OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa - OFFLOAD_TARGET_DEFAULT=1 - Target: x86_64-linux-gnu - Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) - COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ - LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-flto=auto' '-ffat-lto-objects' '-v' '-o' 'cmTC_85847' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_85847.' - /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccLftuDB.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -flto=auto -flto=auto --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_85847 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -Bsymbolic-functions -z relro -z now CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o - /usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -fresolution=/tmp/ccLftuDB.res -flinker-output=pie CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o - /usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -fresolution=/tmp/ccLftuDB.res -flinker-output=pie CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o - LTO parallelism level set to 4 - /usr/bin/c++ @/tmp/ccmGlKpl - Using built-in specs. - COLLECT_GCC=/usr/bin/c++ - OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa - OFFLOAD_TARGET_DEFAULT=1 - Target: x86_64-linux-gnu - Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) - COLLECT_GCC_OPTIONS='-c' '-fno-openmp' '-fno-openacc' '-fPIC' '-g' '-O2' '-fcf-protection=full' '-fasynchronous-unwind-tables' '-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-fstack-protector-strong' '-fstack-clash-protection' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-ffat-lto-objects' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-fltrans-output-list=/tmp/ccfE6lTw.ltrans.out' '-fwpa=4' '-fresolution=/tmp/ccLftuDB.res' '-flinker-output=pie' '-shared-libgcc' - /usr/libexec/gcc/x86_64-linux-gnu/13/lto1 -quiet -dumpbase ./cmTC_85847.wpa -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -version -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -ffat-lto-objects -fltrans-output-list=/tmp/ccfE6lTw.ltrans.out -fwpa=4 -fresolution=/tmp/ccLftuDB.res -flinker-output=pie @/tmp/ccsDQWAN - GNU GIMPLE (Ubuntu 13.3.0-6ubuntu2~24.04.1) version 13.3.0 (x86_64-linux-gnu) - compiled by GNU C version 13.3.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ - LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/../lib/:/lib/../lib/x86_64-linux-gnu/:/lib/../lib/../lib/:/usr/lib/../lib/x86_64-linux-gnu/:/usr/lib/../lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-c' '-fno-openmp' '-fno-openacc' '-fPIC' '-g' '-O2' '-fcf-protection=full' '-fasynchronous-unwind-tables' '-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-fstack-protector-strong' '-fstack-clash-protection' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-ffat-lto-objects' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-fltrans-output-list=/tmp/ccfE6lTw.ltrans.out' '-fwpa=4' '-fresolution=/tmp/ccLftuDB.res' '-flinker-output=pie' '-shared-libgcc' '-dumpdir' './cmTC_85847.wpa.' - make -f /tmp/ccgAyZ2A.mk -j4 all - Using built-in specs. - COLLECT_GCC=/usr/bin/c++ - OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa - OFFLOAD_TARGET_DEFAULT=1 - Target: x86_64-linux-gnu - Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) - COLLECT_GCC_OPTIONS='-c' '-fno-openmp' '-fno-openacc' '-fPIC' '-g' '-O2' '-fcf-protection=full' '-fasynchronous-unwind-tables' '-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-fstack-protector-strong' '-fstack-clash-protection' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-ffat-lto-objects' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-fltrans' '-o' '/tmp/ccfE6lTw.ltrans0.ltrans.o' '-shared-libgcc' - /usr/libexec/gcc/x86_64-linux-gnu/13/lto1 -quiet -dumpbase ./cmTC_85847.ltrans0.ltrans -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -g -O2 -O2 -version -fno-openmp -fno-openacc -fPIC -fcf-protection=full -fasynchronous-unwind-tables -fno-omit-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -ffat-lto-objects -fltrans /tmp/ccfE6lTw.ltrans0.o -o /tmp/cclS4XMi.s - GNU GIMPLE (Ubuntu 13.3.0-6ubuntu2~24.04.1) version 13.3.0 (x86_64-linux-gnu) - compiled by GNU C version 13.3.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - COLLECT_GCC_OPTIONS='-c' '-fno-openmp' '-fno-openacc' '-fPIC' '-g' '-O2' '-fcf-protection=full' '-fasynchronous-unwind-tables' '-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-fstack-protector-strong' '-fstack-clash-protection' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-ffat-lto-objects' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-fltrans' '-o' '/tmp/ccfE6lTw.ltrans0.ltrans.o' '-shared-libgcc' - as -v --gdwarf-5 --64 -o /tmp/ccfE6lTw.ltrans0.ltrans.o /tmp/cclS4XMi.s - GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42 - MAKEFLAGS=w -j4 - COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ - LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/../lib/:/lib/../lib/x86_64-linux-gnu/:/lib/../lib/../lib/:/usr/lib/../lib/x86_64-linux-gnu/:/usr/lib/../lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-c' '-fno-openmp' '-fno-openacc' '-fPIC' '-g' '-O2' '-fcf-protection=full' '-fasynchronous-unwind-tables' '-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-fstack-protector-strong' '-fstack-clash-protection' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-ffat-lto-objects' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-fltrans' '-o' '/tmp/ccfE6lTw.ltrans0.ltrans.o' '-shared-libgcc' '-dumpdir' './cmTC_85847.ltrans0.ltrans.' - COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-flto=auto' '-ffat-lto-objects' '-v' '-o' 'cmTC_85847' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_85847.' - gmake[3]: Leaving directory '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6' - gmake[2]: Leaving directory '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6' - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" - - "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - message: | - Parsed CXX implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [/usr/include/c++/13] - add: [/usr/include/x86_64-linux-gnu/c++/13] - add: [/usr/include/c++/13/backward] - add: [/usr/lib/gcc/x86_64-linux-gnu/13/include] - add: [/usr/local/include] - add: [/usr/include/x86_64-linux-gnu] - add: [/usr/include] - end of search list found - collapse include dir [/usr/include/c++/13] ==> [/usr/include/c++/13] - collapse include dir [/usr/include/x86_64-linux-gnu/c++/13] ==> [/usr/include/x86_64-linux-gnu/c++/13] - collapse include dir [/usr/include/c++/13/backward] ==> [/usr/include/c++/13/backward] - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/13/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/13/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/usr/include/c++/13;/usr/include/x86_64-linux-gnu/c++/13;/usr/include/c++/13/backward;/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] - - - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:159 (message)" - - "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - message: | - Parsed CXX implicit link information: - link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - ignore line: [Change Dir: '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6'] - ignore line: [] - ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_85847/fast] - ignore line: [gmake[2]: Entering directory '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6'] - ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_85847.dir/build.make CMakeFiles/cmTC_85847.dir/build] - ignore line: [gmake[3]: Entering directory '/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/CMakeScratch/TryCompile-CThoO6'] - ignore line: [Building CXX object CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/c++ -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3 -v -o CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) ] - ignore line: [COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-ffat-lto-objects' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-v' '-o' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_85847.dir/'] - ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE -D _FORTIFY_SOURCE=3 /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_85847.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mno-omit-leaf-frame-pointer -mtune=generic -march=x86-64 -g -O2 -Wformat=1 -Wdate-time -version -fno-omit-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cc28TbsU.s] - ignore line: [GNU C++17 (Ubuntu 13.3.0-6ubuntu2~24.04.1) version 13.3.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 13.3.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/13"] - ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/include/c++/13] - ignore line: [ /usr/include/x86_64-linux-gnu/c++/13] - ignore line: [ /usr/include/c++/13/backward] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/13/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/include/x86_64-linux-gnu] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: 7896445e4990772fdae9dc0659a99266] - ignore line: [COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-ffat-lto-objects' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-v' '-o' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_85847.dir/'] - ignore line: [ as -v --gdwarf-5 --64 -o CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc28TbsU.s] - ignore line: [GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-ffat-lto-objects' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-v' '-o' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.'] - ignore line: [Linking CXX executable cmTC_85847] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_85847.dir/link.txt --verbose=1] - ignore line: [/usr/bin/c++ -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3 -Wl -Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl -z relro -Wl -z now -v CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_85847 ] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04.1' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-EldibY/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04.1) ] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-g' '-O2' '-fno-omit-frame-pointer' '-mno-omit-leaf-frame-pointer' '-ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=.' '-flto=auto' '-fstack-protector-strong' '-fstack-clash-protection' '-Wformat=1' '-fcf-protection=full' '-fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1' '-Wdate-time' '-D' '_FORTIFY_SOURCE=3' '-flto=auto' '-ffat-lto-objects' '-v' '-o' 'cmTC_85847' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_85847.'] - link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccLftuDB.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -flto=auto -flto=auto --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_85847 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -Bsymbolic-functions -z relro -z now CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] - arg [/usr/libexec/gcc/x86_64-linux-gnu/13/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccLftuDB.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-flto=auto] ==> ignore - arg [-flto=auto] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [--as-needed] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-znow] ==> ignore - arg [-zrelro] ==> ignore - arg [-o] ==> ignore - arg [cmTC_85847] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] - arg [-Bsymbolic-functions] ==> ignore - arg [-zrelro] ==> ignore - arg [-znow] ==> ignore - arg [CMakeFiles/cmTC_85847.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lm] ==> lib [m] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13] ==> [/usr/lib/gcc/x86_64-linux-gnu/13] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> [/usr/lib] - implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] - implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] - implicit fwks: [] - - -... diff --git a/obj-x86_64-linux-gnu/CMakeFiles/CMakeDirectoryInformation.cmake b/obj-x86_64-linux-gnu/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 54da81a..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/oxmc/VesperOS/packages/vesperprofiled") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/obj-x86_64-linux-gnu/CMakeFiles/Makefile.cmake b/obj-x86_64-linux-gnu/CMakeFiles/Makefile.cmake deleted file mode 100644 index ab0f617..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/Makefile.cmake +++ /dev/null @@ -1,112 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# The generator used is: -set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") - -# The top level Makefile was generated from the following files: -set(CMAKE_MAKEFILE_DEPENDS - "CMakeCache.txt" - "/home/oxmc/VesperOS/packages/vesperprofiled/CMakeLists.txt" - "CMakeFiles/3.28.3/CMakeCXXCompiler.cmake" - "CMakeFiles/3.28.3/CMakeSystem.cmake" - "/usr/share/cmake-3.28/Modules/CMakeCXXCompiler.cmake.in" - "/usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp" - "/usr/share/cmake-3.28/Modules/CMakeCXXInformation.cmake" - "/usr/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake" - "/usr/share/cmake-3.28/Modules/CMakeCompilerIdDetection.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompileFeatures.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake" - "/usr/share/cmake-3.28/Modules/CMakeFindBinUtils.cmake" - "/usr/share/cmake-3.28/Modules/CMakeGenericSystem.cmake" - "/usr/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake" - "/usr/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake" - "/usr/share/cmake-3.28/Modules/CMakeParseImplicitIncludeInfo.cmake" - "/usr/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake" - "/usr/share/cmake-3.28/Modules/CMakeParseLibraryArchitecture.cmake" - "/usr/share/cmake-3.28/Modules/CMakeSystem.cmake.in" - "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake" - "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake" - "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake" - "/usr/share/cmake-3.28/Modules/CMakeTestCompilerCommon.cmake" - "/usr/share/cmake-3.28/Modules/CMakeUnixFindMake.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/ADSP-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/ARMCC-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/ARMClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/AppleClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Borland-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Cray-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/CrayClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GHS-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GNU-CXX.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GNU-FindBinUtils.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GNU.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/IAR-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Intel-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/MSVC-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/NVHPC-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/OrangeC-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/PGI-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/PathScale-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/SCO-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/TI-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Tasking-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Watcom-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/FindCURL.cmake" - "/usr/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake" - "/usr/share/cmake-3.28/Modules/FindPackageMessage.cmake" - "/usr/share/cmake-3.28/Modules/FindPkgConfig.cmake" - "/usr/share/cmake-3.28/Modules/GNUInstallDirs.cmake" - "/usr/share/cmake-3.28/Modules/Internal/FeatureTesting.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux-Determine-CXX.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU-CXX.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux-Initialize.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux.cmake" - "/usr/share/cmake-3.28/Modules/Platform/UnixPaths.cmake" - "/usr/share/cmake-3.28/Modules/SelectLibraryConfigurations.cmake" - ) - -# The corresponding makefile is: -set(CMAKE_MAKEFILE_OUTPUTS - "Makefile" - "CMakeFiles/cmake.check_cache" - ) - -# Byproducts of CMake generate step: -set(CMAKE_MAKEFILE_PRODUCTS - "CMakeFiles/3.28.3/CMakeSystem.cmake" - "CMakeFiles/3.28.3/CMakeCXXCompiler.cmake" - "CMakeFiles/3.28.3/CMakeCXXCompiler.cmake" - "CMakeFiles/CMakeDirectoryInformation.cmake" - ) - -# Dependency information for all targets: -set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/vesperprofiled.dir/DependInfo.cmake" - ) diff --git a/obj-x86_64-linux-gnu/CMakeFiles/Makefile2 b/obj-x86_64-linux-gnu/CMakeFiles/Makefile2 deleted file mode 100644 index a456aa4..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/Makefile2 +++ /dev/null @@ -1,115 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Produce verbose output by default. -VERBOSE = 1 - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/oxmc/VesperOS/packages/vesperprofiled - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu - -#============================================================================= -# Directory level rules for the build root directory - -# The main recursive "all" target. -all: CMakeFiles/vesperprofiled.dir/all -.PHONY : all - -# The main recursive "preinstall" target. -preinstall: -.PHONY : preinstall - -# The main recursive "clean" target. -clean: CMakeFiles/vesperprofiled.dir/clean -.PHONY : clean - -#============================================================================= -# Target rules for target CMakeFiles/vesperprofiled.dir - -# All Build rule for target. -CMakeFiles/vesperprofiled.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10 "Built target vesperprofiled" -.PHONY : CMakeFiles/vesperprofiled.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/vesperprofiled.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles 10 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/vesperprofiled.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles 0 -.PHONY : CMakeFiles/vesperprofiled.dir/rule - -# Convenience name for target. -vesperprofiled: CMakeFiles/vesperprofiled.dir/rule -.PHONY : vesperprofiled - -# clean rule for target. -CMakeFiles/vesperprofiled.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/clean -.PHONY : CMakeFiles/vesperprofiled.dir/clean - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/obj-x86_64-linux-gnu/CMakeFiles/TargetDirectories.txt b/obj-x86_64-linux-gnu/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index 007d7ad..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,7 +0,0 @@ -/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir -/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/edit_cache.dir -/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/rebuild_cache.dir -/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/list_install_components.dir -/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/install.dir -/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/install/local.dir -/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/install/strip.dir diff --git a/obj-x86_64-linux-gnu/CMakeFiles/cmake.check_cache b/obj-x86_64-linux-gnu/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd73..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/obj-x86_64-linux-gnu/CMakeFiles/progress.marks b/obj-x86_64-linux-gnu/CMakeFiles/progress.marks deleted file mode 100644 index f599e28..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -10 diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/DependInfo.cmake b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/DependInfo.cmake deleted file mode 100644 index b1bd46c..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/DependInfo.cmake +++ /dev/null @@ -1,31 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.cpp" "CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o.d" - "/home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.cpp" "CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o.d" - "/home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.cpp" "CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o.d" - "/home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.cpp" "CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o.d" - "/home/oxmc/VesperOS/packages/vesperprofiled/src/main.cpp" "CMakeFiles/vesperprofiled.dir/src/main.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/main.cpp.o.d" - "/home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandlers.cpp" "CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o.d" - "/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.cpp" "CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o.d" - "/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.cpp" "CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o.d" - "/home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.cpp" "CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o" "gcc" "CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/build.make b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/build.make deleted file mode 100644 index d13367f..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/build.make +++ /dev/null @@ -1,242 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Produce verbose output by default. -VERBOSE = 1 - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/oxmc/VesperOS/packages/vesperprofiled - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu - -# Include any dependencies generated for this target. -include CMakeFiles/vesperprofiled.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include CMakeFiles/vesperprofiled.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/vesperprofiled.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/vesperprofiled.dir/flags.make - -CMakeFiles/vesperprofiled.dir/src/main.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make -CMakeFiles/vesperprofiled.dir/src/main.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/main.cpp -CMakeFiles/vesperprofiled.dir/src/main.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/vesperprofiled.dir/src/main.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/main.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/main.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/main.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/main.cpp - -CMakeFiles/vesperprofiled.dir/src/main.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/main.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/main.cpp > CMakeFiles/vesperprofiled.dir/src/main.cpp.i - -CMakeFiles/vesperprofiled.dir/src/main.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/main.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/main.cpp -o CMakeFiles/vesperprofiled.dir/src/main.cpp.s - -CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make -CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.cpp -CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.cpp - -CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.cpp > CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.i - -CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.cpp -o CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.s - -CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make -CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.cpp -CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.cpp - -CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.cpp > CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.i - -CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.cpp -o CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.s - -CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make -CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.cpp -CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.cpp - -CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.cpp > CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.i - -CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.cpp -o CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.s - -CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make -CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.cpp -CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.cpp - -CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.cpp > CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.i - -CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.cpp -o CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.s - -CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make -CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandlers.cpp -CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandlers.cpp - -CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandlers.cpp > CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.i - -CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandlers.cpp -o CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.s - -CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make -CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.cpp -CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.cpp - -CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.cpp > CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.i - -CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.cpp -o CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.s - -CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make -CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.cpp -CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.cpp - -CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.cpp > CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.i - -CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.cpp -o CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.s - -CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o: CMakeFiles/vesperprofiled.dir/flags.make -CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o: /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.cpp -CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o: CMakeFiles/vesperprofiled.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o -MF CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o.d -o CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o -c /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.cpp - -CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.cpp > CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.i - -CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.cpp -o CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.s - -# Object files for target vesperprofiled -vesperprofiled_OBJECTS = \ -"CMakeFiles/vesperprofiled.dir/src/main.cpp.o" \ -"CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o" \ -"CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o" \ -"CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o" \ -"CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o" \ -"CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o" \ -"CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o" \ -"CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o" \ -"CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o" - -# External object files for target vesperprofiled -vesperprofiled_EXTERNAL_OBJECTS = - -vesperprofiled: CMakeFiles/vesperprofiled.dir/src/main.cpp.o -vesperprofiled: CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o -vesperprofiled: CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o -vesperprofiled: CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o -vesperprofiled: CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o -vesperprofiled: CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o -vesperprofiled: CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o -vesperprofiled: CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o -vesperprofiled: CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o -vesperprofiled: CMakeFiles/vesperprofiled.dir/build.make -vesperprofiled: /usr/lib/x86_64-linux-gnu/libcurl.so -vesperprofiled: CMakeFiles/vesperprofiled.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking CXX executable vesperprofiled" - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/vesperprofiled.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/vesperprofiled.dir/build: vesperprofiled -.PHONY : CMakeFiles/vesperprofiled.dir/build - -CMakeFiles/vesperprofiled.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/vesperprofiled.dir/cmake_clean.cmake -.PHONY : CMakeFiles/vesperprofiled.dir/clean - -CMakeFiles/vesperprofiled.dir/depend: - cd /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/oxmc/VesperOS/packages/vesperprofiled /home/oxmc/VesperOS/packages/vesperprofiled /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/vesperprofiled.dir/depend - diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/cmake_clean.cmake b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/cmake_clean.cmake deleted file mode 100644 index f17703b..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/cmake_clean.cmake +++ /dev/null @@ -1,27 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o" - "CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o.d" - "CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o" - "CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o.d" - "CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o" - "CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o.d" - "CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o" - "CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o.d" - "CMakeFiles/vesperprofiled.dir/src/main.cpp.o" - "CMakeFiles/vesperprofiled.dir/src/main.cpp.o.d" - "CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o" - "CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o.d" - "CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o" - "CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o.d" - "CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o" - "CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o.d" - "CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o" - "CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o.d" - "vesperprofiled" - "vesperprofiled.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/vesperprofiled.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/compiler_depend.make b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/compiler_depend.make deleted file mode 100644 index d027a49..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for vesperprofiled. -# This may be replaced when dependencies are built. diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/compiler_depend.ts b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/compiler_depend.ts deleted file mode 100644 index f5937e1..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for vesperprofiled. diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/depend.make b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/depend.make deleted file mode 100644 index 48dabe8..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for vesperprofiled. -# This may be replaced when dependencies are built. diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/flags.make b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/flags.make deleted file mode 100644 index d6f02d6..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# compile CXX with /usr/bin/c++ -CXX_DEFINES = - -CXX_INCLUDES = -I/home/oxmc/VesperOS/packages/vesperprofiled/src -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include - -CXX_FLAGS = -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3 -O2 -DNDEBUG -std=c++17 -Wall -Wextra -Werror - diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/link.txt b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/link.txt deleted file mode 100644 index 08dec5a..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/c++ -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -fdebug-prefix-map=/home/oxmc/VesperOS/packages/vesperprofiled=/usr/src/vesperprofiled-1.0.0-1 -Wdate-time -D_FORTIFY_SOURCE=3 -O2 -DNDEBUG -Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now CMakeFiles/vesperprofiled.dir/src/main.cpp.o CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o -o vesperprofiled -lssl -lcrypto -lyaml -ldbus-1 -lsystemd /usr/lib/x86_64-linux-gnu/libcurl.so -lpthread diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/progress.make b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/progress.make deleted file mode 100644 index 6c587e2..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/progress.make +++ /dev/null @@ -1,11 +0,0 @@ -CMAKE_PROGRESS_1 = 1 -CMAKE_PROGRESS_2 = 2 -CMAKE_PROGRESS_3 = 3 -CMAKE_PROGRESS_4 = 4 -CMAKE_PROGRESS_5 = 5 -CMAKE_PROGRESS_6 = 6 -CMAKE_PROGRESS_7 = 7 -CMAKE_PROGRESS_8 = 8 -CMAKE_PROGRESS_9 = 9 -CMAKE_PROGRESS_10 = 10 - diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o deleted file mode 100644 index 11654ec..0000000 Binary files a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o and /dev/null differ diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o.d b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o.d deleted file mode 100644 index 210fa75..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o.d +++ /dev/null @@ -1,186 +0,0 @@ -CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o: \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.cpp \ - /usr/include/stdc-predef.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.h \ - /usr/include/c++/13/cstdint \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/c++/13/bits/stringfwd.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ - /usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2.h \ - /usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/move.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/cctype /usr/include/ctype.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/bits/ptr_traits.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/basic_string.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ - /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/select2.h \ - /usr/include/x86_64-linux-gnu/bits/select-decl.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ - /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/stdio.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \ - /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h /usr/include/yaml.h \ - /usr/include/c++/13/stdlib.h /usr/include/string.h \ - /usr/include/strings.h \ - /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ - /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ - /usr/include/syslog.h /usr/include/x86_64-linux-gnu/sys/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-path.h \ - /usr/include/x86_64-linux-gnu/bits/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-decl.h \ - /usr/include/c++/13/cstring /usr/include/c++/13/sstream \ - /usr/include/c++/13/istream /usr/include/c++/13/ios \ - /usr/include/c++/13/exception /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \ - /usr/include/c++/13/bits/streambuf.tcc \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \ - /usr/include/c++/13/bits/ostream.tcc \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/c++/13/bits/sstream.tcc diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o deleted file mode 100644 index 522fb31..0000000 Binary files a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o and /dev/null differ diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o.d b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o.d deleted file mode 100644 index 69e36f9..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o.d +++ /dev/null @@ -1,247 +0,0 @@ -CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o: \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.cpp \ - /usr/include/stdc-predef.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.h \ - /usr/include/c++/13/cstdint \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/c++/13/bits/stringfwd.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ - /usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2.h \ - /usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/move.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/cctype /usr/include/ctype.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/bits/ptr_traits.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/basic_string.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ - /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/select2.h \ - /usr/include/x86_64-linux-gnu/bits/select-decl.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ - /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/stdio.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \ - /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h /usr/include/openssl/evp.h \ - /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/types.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/include/openssl/e_os2.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/core.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/bio.h /usr/include/openssl/crypto.h \ - /usr/include/c++/13/stdlib.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/cryptoerr_legacy.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/rand.h /usr/include/openssl/randerr.h \ - /usr/include/c++/13/algorithm /usr/include/c++/13/bits/stl_algo.h \ - /usr/include/c++/13/bits/algorithmfwd.h \ - /usr/include/c++/13/bits/stl_heap.h \ - /usr/include/c++/13/bits/uniform_int_dist.h \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/pstl/glue_algorithm_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/cstring \ - /usr/include/string.h /usr/include/strings.h \ - /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ - /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ - /usr/include/c++/13/ctime /usr/include/dirent.h \ - /usr/include/x86_64-linux-gnu/bits/dirent.h \ - /usr/include/x86_64-linux-gnu/bits/dirent_ext.h \ - /usr/include/c++/13/fstream /usr/include/c++/13/istream \ - /usr/include/c++/13/ios /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \ - /usr/include/c++/13/bits/streambuf.tcc \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \ - /usr/include/c++/13/bits/ostream.tcc \ - /usr/include/c++/13/bits/istream.tcc /usr/include/c++/13/bits/codecvt.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/basic_file.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++io.h \ - /usr/include/c++/13/bits/fstream.tcc /usr/include/c++/13/sstream \ - /usr/include/c++/13/bits/sstream.tcc \ - /usr/include/x86_64-linux-gnu/sys/stat.h \ - /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ - /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ - /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ - /usr/include/syslog.h /usr/include/x86_64-linux-gnu/sys/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-path.h \ - /usr/include/x86_64-linux-gnu/bits/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-decl.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o deleted file mode 100644 index 37fb7cc..0000000 Binary files a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o and /dev/null differ diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o.d b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o.d deleted file mode 100644 index a322c3b..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o.d +++ /dev/null @@ -1,224 +0,0 @@ -CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o: \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.cpp \ - /usr/include/stdc-predef.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.h \ - /usr/include/c++/13/cstdint \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/c++/13/bits/stringfwd.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ - /usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2.h \ - /usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/move.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/cctype /usr/include/ctype.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/bits/ptr_traits.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/basic_string.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ - /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/select2.h \ - /usr/include/x86_64-linux-gnu/bits/select-decl.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ - /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/stdio.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \ - /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/vector.tcc /usr/include/openssl/cms.h \ - /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/x509.h \ - /usr/include/openssl/e_os2.h /usr/include/openssl/types.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/include/openssl/safestack.h /usr/include/openssl/stack.h \ - /usr/include/openssl/symhacks.h /usr/include/openssl/buffer.h \ - /usr/include/openssl/crypto.h /usr/include/c++/13/stdlib.h \ - /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/cryptoerr_legacy.h \ - /usr/include/openssl/core.h /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/openssl/buffererr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/bio.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ec.h /usr/include/string.h /usr/include/strings.h \ - /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ - /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ - /usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \ - /usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \ - /usr/include/openssl/dh.h /usr/include/openssl/dherr.h \ - /usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \ - /usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/x509v3.h \ - /usr/include/openssl/x509v3err.h /usr/include/openssl/cmserr.h \ - /usr/include/openssl/err.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/c++/13/cstring \ - /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h /usr/include/c++/13/typeinfo \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/ext/concurrence.h /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h \ - /usr/include/x86_64-linux-gnu/sys/stat.h \ - /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ - /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ - /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ - /usr/include/syslog.h /usr/include/x86_64-linux-gnu/sys/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-path.h \ - /usr/include/x86_64-linux-gnu/bits/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-decl.h diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o deleted file mode 100644 index 015fb2a..0000000 Binary files a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o and /dev/null differ diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o.d b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o.d deleted file mode 100644 index fb95e9d..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o.d +++ /dev/null @@ -1,254 +0,0 @@ -CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o: \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.cpp \ - /usr/include/stdc-predef.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.h \ - /usr/include/c++/13/cstdint \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/c++/13/bits/stringfwd.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ - /usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2.h \ - /usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/move.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/cctype /usr/include/ctype.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/bits/ptr_traits.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/basic_string.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ - /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/select2.h \ - /usr/include/x86_64-linux-gnu/bits/select-decl.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ - /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/stdio.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \ - /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.h \ - /usr/include/dbus-1.0/dbus/dbus.h \ - /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h \ - /usr/include/dbus-1.0/dbus/dbus-macros.h \ - /usr/include/dbus-1.0/dbus/dbus-address.h \ - /usr/include/dbus-1.0/dbus/dbus-types.h \ - /usr/include/dbus-1.0/dbus/dbus-errors.h \ - /usr/include/dbus-1.0/dbus/dbus-protocol.h \ - /usr/include/dbus-1.0/dbus/dbus-bus.h \ - /usr/include/dbus-1.0/dbus/dbus-connection.h \ - /usr/include/dbus-1.0/dbus/dbus-memory.h \ - /usr/include/dbus-1.0/dbus/dbus-message.h \ - /usr/include/dbus-1.0/dbus/dbus-shared.h \ - /usr/include/dbus-1.0/dbus/dbus-misc.h \ - /usr/include/dbus-1.0/dbus/dbus-pending-call.h \ - /usr/include/dbus-1.0/dbus/dbus-server.h \ - /usr/include/dbus-1.0/dbus/dbus-signature.h \ - /usr/include/dbus-1.0/dbus/dbus-syntax.h \ - /usr/include/dbus-1.0/dbus/dbus-threads.h /usr/include/c++/13/mutex \ - /usr/include/c++/13/exception /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/chrono.h /usr/include/c++/13/ratio \ - /usr/include/c++/13/limits /usr/include/c++/13/ctime /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/c++/13/bits/parse_numbers.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/bits/std_mutex.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/c++/13/bits/unique_lock.h \ - /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/functional /usr/include/c++/13/bits/std_function.h \ - /usr/include/c++/13/unordered_map \ - /usr/include/c++/13/bits/unordered_map.h \ - /usr/include/c++/13/bits/hashtable.h \ - /usr/include/c++/13/bits/hashtable_policy.h \ - /usr/include/c++/13/bits/enable_special_members.h \ - /usr/include/c++/13/array /usr/include/c++/13/compare \ - /usr/include/c++/13/bits/stl_algo.h \ - /usr/include/c++/13/bits/algorithmfwd.h \ - /usr/include/c++/13/bits/stl_heap.h \ - /usr/include/c++/13/bits/uniform_int_dist.h \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandler.h \ - /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h \ - /usr/include/systemd/sd-daemon.h /usr/include/inttypes.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/x86_64-linux-gnu/bits/socket2.h \ - /usr/include/systemd/_sd-common.h /usr/include/syslog.h \ - /usr/include/x86_64-linux-gnu/sys/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-path.h \ - /usr/include/x86_64-linux-gnu/bits/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-decl.h \ - /usr/include/c++/13/cstring /usr/include/string.h /usr/include/strings.h \ - /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ - /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ - /usr/include/c++/13/sstream /usr/include/c++/13/istream \ - /usr/include/c++/13/ios /usr/include/c++/13/bits/ios_base.h \ - /usr/include/c++/13/bits/locale_classes.h \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error /usr/include/c++/13/stdexcept \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/streambuf.tcc \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \ - /usr/include/c++/13/bits/ostream.tcc \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/c++/13/bits/sstream.tcc diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/main.cpp.o b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/main.cpp.o deleted file mode 100644 index 4cd442e..0000000 Binary files a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/main.cpp.o and /dev/null differ diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/main.cpp.o.d b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/main.cpp.o.d deleted file mode 100644 index d3273a5..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/main.cpp.o.d +++ /dev/null @@ -1,304 +0,0 @@ -CMakeFiles/vesperprofiled.dir/src/main.cpp.o: \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/main.cpp \ - /usr/include/stdc-predef.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/VesperProfileService.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileParser.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/SignatureVerifier.h \ - /usr/include/c++/13/cstdint \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/c++/13/bits/stringfwd.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ - /usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2.h \ - /usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/move.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/cctype /usr/include/ctype.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/bits/ptr_traits.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/basic_string.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ - /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/select2.h \ - /usr/include/x86_64-linux-gnu/bits/select-decl.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ - /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/stdio.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \ - /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/ProfileStore.h \ - /usr/include/dbus-1.0/dbus/dbus.h \ - /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h \ - /usr/include/dbus-1.0/dbus/dbus-macros.h \ - /usr/include/dbus-1.0/dbus/dbus-address.h \ - /usr/include/dbus-1.0/dbus/dbus-types.h \ - /usr/include/dbus-1.0/dbus/dbus-errors.h \ - /usr/include/dbus-1.0/dbus/dbus-protocol.h \ - /usr/include/dbus-1.0/dbus/dbus-bus.h \ - /usr/include/dbus-1.0/dbus/dbus-connection.h \ - /usr/include/dbus-1.0/dbus/dbus-memory.h \ - /usr/include/dbus-1.0/dbus/dbus-message.h \ - /usr/include/dbus-1.0/dbus/dbus-shared.h \ - /usr/include/dbus-1.0/dbus/dbus-misc.h \ - /usr/include/dbus-1.0/dbus/dbus-pending-call.h \ - /usr/include/dbus-1.0/dbus/dbus-server.h \ - /usr/include/dbus-1.0/dbus/dbus-signature.h \ - /usr/include/dbus-1.0/dbus/dbus-syntax.h \ - /usr/include/dbus-1.0/dbus/dbus-threads.h /usr/include/c++/13/mutex \ - /usr/include/c++/13/exception /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/chrono.h /usr/include/c++/13/ratio \ - /usr/include/c++/13/limits /usr/include/c++/13/ctime /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/c++/13/bits/parse_numbers.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/bits/std_mutex.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/c++/13/bits/unique_lock.h \ - /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/functional /usr/include/c++/13/bits/std_function.h \ - /usr/include/c++/13/unordered_map \ - /usr/include/c++/13/bits/unordered_map.h \ - /usr/include/c++/13/bits/hashtable.h \ - /usr/include/c++/13/bits/hashtable_policy.h \ - /usr/include/c++/13/bits/enable_special_members.h \ - /usr/include/c++/13/array /usr/include/c++/13/compare \ - /usr/include/c++/13/bits/stl_algo.h \ - /usr/include/c++/13/bits/algorithmfwd.h \ - /usr/include/c++/13/bits/stl_heap.h \ - /usr/include/c++/13/bits/uniform_int_dist.h \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandler.h \ - /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.h \ - /usr/include/systemd/sd-daemon.h /usr/include/inttypes.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/x86_64-linux-gnu/bits/socket2.h \ - /usr/include/systemd/_sd-common.h /usr/include/c++/13/atomic \ - /usr/include/c++/13/csignal /usr/include/signal.h \ - /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ - /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ - /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ - /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ - /usr/include/x86_64-linux-gnu/bits/siginfo-consts-arch.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ - /usr/include/x86_64-linux-gnu/bits/sigaction.h \ - /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ - /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ - /usr/include/x86_64-linux-gnu/sys/ucontext.h \ - /usr/include/x86_64-linux-gnu/bits/sigstack.h \ - /usr/include/x86_64-linux-gnu/bits/sigstksz.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h \ - /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ - /usr/include/x86_64-linux-gnu/bits/sigthread.h \ - /usr/include/x86_64-linux-gnu/bits/signal_ext.h /usr/include/dirent.h \ - /usr/include/x86_64-linux-gnu/bits/dirent.h \ - /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/dirent_ext.h \ - /usr/include/c++/13/fstream /usr/include/c++/13/istream \ - /usr/include/c++/13/ios /usr/include/c++/13/bits/ios_base.h \ - /usr/include/c++/13/bits/locale_classes.h \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error /usr/include/c++/13/stdexcept \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/streambuf.tcc \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \ - /usr/include/c++/13/bits/ostream.tcc \ - /usr/include/c++/13/bits/istream.tcc /usr/include/c++/13/bits/codecvt.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/basic_file.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++io.h \ - /usr/include/c++/13/bits/fstream.tcc /usr/include/c++/13/sstream \ - /usr/include/c++/13/bits/sstream.tcc /usr/include/syslog.h \ - /usr/include/x86_64-linux-gnu/sys/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-path.h \ - /usr/include/x86_64-linux-gnu/bits/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-decl.h \ - /usr/include/x86_64-linux-gnu/sys/stat.h \ - /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ - /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ - /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ - /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ - /usr/include/c++/13/thread /usr/include/c++/13/bits/std_thread.h \ - /usr/include/c++/13/bits/this_thread_sleep.h diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o deleted file mode 100644 index 2dc89f4..0000000 Binary files a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o and /dev/null differ diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o.d b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o.d deleted file mode 100644 index 37898ef..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o.d +++ /dev/null @@ -1,277 +0,0 @@ -CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o: \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandlers.cpp \ - /usr/include/stdc-predef.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/PayloadHandler.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/../ProfileParser.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/payloads/../SignatureVerifier.h \ - /usr/include/c++/13/cstdint \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/c++/13/bits/stringfwd.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ - /usr/include/wchar.h /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2.h \ - /usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/move.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/cctype /usr/include/ctype.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/bits/ptr_traits.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/basic_string.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ - /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/select2.h \ - /usr/include/x86_64-linux-gnu/bits/select-decl.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ - /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/stdio.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \ - /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/functional \ - /usr/include/c++/13/bits/std_function.h /usr/include/c++/13/typeinfo \ - /usr/include/c++/13/unordered_map \ - /usr/include/c++/13/bits/unordered_map.h \ - /usr/include/c++/13/bits/hashtable.h \ - /usr/include/c++/13/bits/hashtable_policy.h \ - /usr/include/c++/13/bits/enable_special_members.h \ - /usr/include/c++/13/array /usr/include/c++/13/compare \ - /usr/include/c++/13/bits/stl_algo.h \ - /usr/include/c++/13/bits/algorithmfwd.h \ - /usr/include/c++/13/bits/stl_heap.h \ - /usr/include/c++/13/bits/uniform_int_dist.h \ - /usr/include/c++/13/bits/stl_tempbuf.h /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/ext/concurrence.h /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/openssl/evp.h \ - /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/types.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/include/openssl/e_os2.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/core.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/bio.h /usr/include/openssl/crypto.h \ - /usr/include/c++/13/stdlib.h /usr/include/openssl/cryptoerr.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/bioerr.h \ - /usr/include/openssl/evperr.h /usr/include/openssl/params.h \ - /usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \ - /usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \ - /usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \ - /usr/include/openssl/objectserr.h /usr/include/dbus-1.0/dbus/dbus.h \ - /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h \ - /usr/include/dbus-1.0/dbus/dbus-macros.h \ - /usr/include/dbus-1.0/dbus/dbus-address.h \ - /usr/include/dbus-1.0/dbus/dbus-types.h \ - /usr/include/dbus-1.0/dbus/dbus-errors.h \ - /usr/include/dbus-1.0/dbus/dbus-protocol.h \ - /usr/include/dbus-1.0/dbus/dbus-bus.h \ - /usr/include/dbus-1.0/dbus/dbus-connection.h \ - /usr/include/dbus-1.0/dbus/dbus-memory.h \ - /usr/include/dbus-1.0/dbus/dbus-message.h \ - /usr/include/dbus-1.0/dbus/dbus-shared.h \ - /usr/include/dbus-1.0/dbus/dbus-misc.h \ - /usr/include/dbus-1.0/dbus/dbus-pending-call.h \ - /usr/include/dbus-1.0/dbus/dbus-server.h \ - /usr/include/dbus-1.0/dbus/dbus-signature.h \ - /usr/include/dbus-1.0/dbus/dbus-syntax.h \ - /usr/include/dbus-1.0/dbus/dbus-threads.h /usr/include/syslog.h \ - /usr/include/x86_64-linux-gnu/sys/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-path.h \ - /usr/include/x86_64-linux-gnu/bits/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-decl.h \ - /usr/include/x86_64-linux-gnu/sys/stat.h \ - /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ - /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ - /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ - /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/c++/13/cstring \ - /usr/include/string.h /usr/include/strings.h \ - /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ - /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ - /usr/include/c++/13/fstream /usr/include/c++/13/istream \ - /usr/include/c++/13/ios /usr/include/c++/13/bits/ios_base.h \ - /usr/include/c++/13/bits/locale_classes.h \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \ - /usr/include/c++/13/bits/streambuf.tcc \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \ - /usr/include/c++/13/bits/ostream.tcc \ - /usr/include/c++/13/bits/istream.tcc /usr/include/c++/13/bits/codecvt.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/basic_file.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++io.h \ - /usr/include/c++/13/bits/fstream.tcc /usr/include/c++/13/sstream \ - /usr/include/c++/13/bits/sstream.tcc diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o deleted file mode 100644 index e29e33d..0000000 Binary files a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o and /dev/null differ diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o.d b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o.d deleted file mode 100644 index 50954f2..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o.d +++ /dev/null @@ -1,176 +0,0 @@ -CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o: \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.cpp \ - /usr/include/stdc-predef.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ConnectivityWatcher.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.h \ - /usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stringfwd.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ - /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2.h \ - /usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/move.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/cctype /usr/include/ctype.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/bits/ptr_traits.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/basic_string.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ - /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/select2.h \ - /usr/include/x86_64-linux-gnu/bits/select-decl.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ - /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/stdio.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \ - /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/include/c++/13/map /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/cstdint \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/functional /usr/include/c++/13/bits/std_function.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/unordered_map \ - /usr/include/c++/13/bits/unordered_map.h \ - /usr/include/c++/13/bits/hashtable.h \ - /usr/include/c++/13/bits/hashtable_policy.h \ - /usr/include/c++/13/bits/enable_special_members.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/array \ - /usr/include/c++/13/compare /usr/include/c++/13/bits/stl_algo.h \ - /usr/include/c++/13/bits/algorithmfwd.h \ - /usr/include/c++/13/bits/stl_heap.h \ - /usr/include/c++/13/bits/uniform_int_dist.h \ - /usr/include/c++/13/bits/stl_tempbuf.h /usr/include/dbus-1.0/dbus/dbus.h \ - /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h \ - /usr/include/dbus-1.0/dbus/dbus-macros.h \ - /usr/include/dbus-1.0/dbus/dbus-address.h \ - /usr/include/dbus-1.0/dbus/dbus-types.h \ - /usr/include/dbus-1.0/dbus/dbus-errors.h \ - /usr/include/dbus-1.0/dbus/dbus-protocol.h \ - /usr/include/dbus-1.0/dbus/dbus-bus.h \ - /usr/include/dbus-1.0/dbus/dbus-connection.h \ - /usr/include/dbus-1.0/dbus/dbus-memory.h \ - /usr/include/dbus-1.0/dbus/dbus-message.h \ - /usr/include/dbus-1.0/dbus/dbus-shared.h \ - /usr/include/dbus-1.0/dbus/dbus-misc.h \ - /usr/include/dbus-1.0/dbus/dbus-pending-call.h \ - /usr/include/dbus-1.0/dbus/dbus-server.h \ - /usr/include/dbus-1.0/dbus/dbus-signature.h \ - /usr/include/dbus-1.0/dbus/dbus-syntax.h \ - /usr/include/dbus-1.0/dbus/dbus-threads.h /usr/include/c++/13/cstring \ - /usr/include/string.h /usr/include/strings.h \ - /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ - /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ - /usr/include/syslog.h /usr/include/x86_64-linux-gnu/sys/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-path.h \ - /usr/include/x86_64-linux-gnu/bits/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-decl.h diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o deleted file mode 100644 index dfc3c3d..0000000 Binary files a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o and /dev/null differ diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o.d b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o.d deleted file mode 100644 index 86c65ef..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o.d +++ /dev/null @@ -1,264 +0,0 @@ -CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o: \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.cpp \ - /usr/include/stdc-predef.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.h \ - /usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stringfwd.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ - /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2.h \ - /usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/move.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/cctype /usr/include/ctype.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/bits/ptr_traits.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/basic_string.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ - /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/select2.h \ - /usr/include/x86_64-linux-gnu/bits/select-decl.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ - /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/stdio.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \ - /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/include/c++/13/map /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h /usr/include/openssl/evp.h \ - /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/types.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/include/openssl/e_os2.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/openssl/safestack.h /usr/include/openssl/stack.h \ - /usr/include/openssl/core.h /usr/include/openssl/core_dispatch.h \ - /usr/include/openssl/symhacks.h /usr/include/openssl/bio.h \ - /usr/include/openssl/crypto.h /usr/include/c++/13/stdlib.h \ - /usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/cryptoerr_legacy.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/sha.h /usr/include/c++/13/algorithm \ - /usr/include/c++/13/bits/stl_algo.h \ - /usr/include/c++/13/bits/algorithmfwd.h \ - /usr/include/c++/13/bits/stl_heap.h \ - /usr/include/c++/13/bits/uniform_int_dist.h \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/pstl/glue_algorithm_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/ctime \ - /usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \ - /usr/include/x86_64-linux-gnu/bits/dirent_ext.h \ - /usr/include/c++/13/fstream /usr/include/c++/13/istream \ - /usr/include/c++/13/ios /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \ - /usr/include/c++/13/bits/streambuf.tcc \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \ - /usr/include/c++/13/bits/ostream.tcc \ - /usr/include/c++/13/bits/istream.tcc /usr/include/c++/13/bits/codecvt.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/basic_file.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++io.h \ - /usr/include/c++/13/bits/fstream.tcc /usr/include/c++/13/iomanip \ - /usr/include/c++/13/locale \ - /usr/include/c++/13/bits/locale_facets_nonio.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/time_members.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/messages_members.h \ - /usr/include/libintl.h /usr/include/c++/13/bits/locale_facets_nonio.tcc \ - /usr/include/c++/13/bits/locale_conv.h \ - /usr/include/c++/13/bits/quoted_string.h /usr/include/c++/13/sstream \ - /usr/include/c++/13/bits/sstream.tcc /usr/include/net/if.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/x86_64-linux-gnu/bits/socket2.h /usr/include/netinet/in.h \ - /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/x86_64-linux-gnu/sys/ioctl.h \ - /usr/include/x86_64-linux-gnu/bits/ioctls.h \ - /usr/include/x86_64-linux-gnu/asm/ioctls.h \ - /usr/include/asm-generic/ioctls.h /usr/include/linux/ioctl.h \ - /usr/include/x86_64-linux-gnu/asm/ioctl.h \ - /usr/include/asm-generic/ioctl.h \ - /usr/include/x86_64-linux-gnu/bits/ioctl-types.h \ - /usr/include/x86_64-linux-gnu/sys/ttydefaults.h \ - /usr/include/x86_64-linux-gnu/sys/stat.h \ - /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ - /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ - /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ - /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ - /usr/include/syslog.h /usr/include/x86_64-linux-gnu/sys/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-path.h \ - /usr/include/x86_64-linux-gnu/bits/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-decl.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o deleted file mode 100644 index f4ae493..0000000 Binary files a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o and /dev/null differ diff --git a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o.d b/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o.d deleted file mode 100644 index badfba3..0000000 --- a/obj-x86_64-linux-gnu/CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o.d +++ /dev/null @@ -1,310 +0,0 @@ -CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o: \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.cpp \ - /usr/include/stdc-predef.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/ZTELookupClient.h \ - /home/oxmc/VesperOS/packages/vesperprofiled/src/zte/DeviceIdentity.h \ - /usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stringfwd.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ - /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/wchar2.h \ - /usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/move.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/cctype /usr/include/ctype.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/bits/ptr_traits.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/basic_string.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ - /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/select2.h \ - /usr/include/x86_64-linux-gnu/bits/select-decl.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ - /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2-decl.h \ - /usr/include/x86_64-linux-gnu/bits/stdio.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/c++/13/cerrno \ - /usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \ - /usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/include/c++/13/map /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/cstdint \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/functional /usr/include/c++/13/bits/std_function.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/unordered_map \ - /usr/include/c++/13/bits/unordered_map.h \ - /usr/include/c++/13/bits/hashtable.h \ - /usr/include/c++/13/bits/hashtable_policy.h \ - /usr/include/c++/13/bits/enable_special_members.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/array \ - /usr/include/c++/13/compare /usr/include/c++/13/bits/stl_algo.h \ - /usr/include/c++/13/bits/algorithmfwd.h \ - /usr/include/c++/13/bits/stl_heap.h \ - /usr/include/c++/13/bits/uniform_int_dist.h \ - /usr/include/c++/13/bits/stl_tempbuf.h /usr/include/openssl/ssl.h \ - /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/comp.h /usr/include/openssl/crypto.h \ - /usr/include/c++/13/stdlib.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/openssl/safestack.h /usr/include/openssl/stack.h \ - /usr/include/openssl/types.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/bio.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \ - /usr/include/openssl/evperr.h /usr/include/openssl/params.h \ - /usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \ - /usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \ - /usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \ - /usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \ - /usr/include/string.h /usr/include/strings.h \ - /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ - /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ - /usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \ - /usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \ - /usr/include/openssl/dh.h /usr/include/openssl/dherr.h \ - /usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \ - /usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/err.h /usr/include/dbus-1.0/dbus/dbus.h \ - /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h \ - /usr/include/dbus-1.0/dbus/dbus-macros.h \ - /usr/include/dbus-1.0/dbus/dbus-address.h \ - /usr/include/dbus-1.0/dbus/dbus-types.h \ - /usr/include/dbus-1.0/dbus/dbus-errors.h \ - /usr/include/dbus-1.0/dbus/dbus-protocol.h \ - /usr/include/dbus-1.0/dbus/dbus-bus.h \ - /usr/include/dbus-1.0/dbus/dbus-connection.h \ - /usr/include/dbus-1.0/dbus/dbus-memory.h \ - /usr/include/dbus-1.0/dbus/dbus-message.h \ - /usr/include/dbus-1.0/dbus/dbus-shared.h \ - /usr/include/dbus-1.0/dbus/dbus-misc.h \ - /usr/include/dbus-1.0/dbus/dbus-pending-call.h \ - /usr/include/dbus-1.0/dbus/dbus-server.h \ - /usr/include/dbus-1.0/dbus/dbus-signature.h \ - /usr/include/dbus-1.0/dbus/dbus-syntax.h \ - /usr/include/dbus-1.0/dbus/dbus-threads.h \ - /usr/include/x86_64-linux-gnu/curl/curl.h \ - /usr/include/x86_64-linux-gnu/curl/curlver.h \ - /usr/include/x86_64-linux-gnu/curl/system.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/x86_64-linux-gnu/bits/socket2.h \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/curl/easy.h \ - /usr/include/x86_64-linux-gnu/curl/multi.h \ - /usr/include/x86_64-linux-gnu/curl/curl.h \ - /usr/include/x86_64-linux-gnu/curl/urlapi.h \ - /usr/include/x86_64-linux-gnu/curl/options.h \ - /usr/include/x86_64-linux-gnu/curl/header.h \ - /usr/include/x86_64-linux-gnu/curl/websockets.h \ - /usr/include/x86_64-linux-gnu/curl/mprintf.h /usr/include/c++/13/ctime \ - /usr/include/fcntl.h /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl2.h /usr/include/c++/13/fstream \ - /usr/include/c++/13/istream /usr/include/c++/13/ios \ - /usr/include/c++/13/exception /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \ - /usr/include/c++/13/bits/streambuf.tcc \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \ - /usr/include/c++/13/bits/ostream.tcc \ - /usr/include/c++/13/bits/istream.tcc /usr/include/c++/13/bits/codecvt.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/basic_file.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++io.h \ - /usr/include/c++/13/bits/fstream.tcc /usr/include/c++/13/sstream \ - /usr/include/c++/13/bits/sstream.tcc \ - /usr/include/x86_64-linux-gnu/sys/file.h \ - /usr/include/x86_64-linux-gnu/sys/stat.h \ - /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ - /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ - /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ - /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ - /usr/include/syslog.h /usr/include/x86_64-linux-gnu/sys/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-path.h \ - /usr/include/x86_64-linux-gnu/bits/syslog.h \ - /usr/include/x86_64-linux-gnu/bits/syslog-decl.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/unistd-decl.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h diff --git a/obj-x86_64-linux-gnu/Makefile b/obj-x86_64-linux-gnu/Makefile deleted file mode 100644 index 82fac1e..0000000 --- a/obj-x86_64-linux-gnu/Makefile +++ /dev/null @@ -1,449 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Produce verbose output by default. -VERBOSE = 1 - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/oxmc/VesperOS/packages/vesperprofiled - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." - /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /usr/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /usr/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu//CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -#============================================================================= -# Target rules for targets named vesperprofiled - -# Build rule for target. -vesperprofiled: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 vesperprofiled -.PHONY : vesperprofiled - -# fast build rule for target. -vesperprofiled/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/build -.PHONY : vesperprofiled/fast - -src/ProfileParser.o: src/ProfileParser.cpp.o -.PHONY : src/ProfileParser.o - -# target to build an object file -src/ProfileParser.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.o -.PHONY : src/ProfileParser.cpp.o - -src/ProfileParser.i: src/ProfileParser.cpp.i -.PHONY : src/ProfileParser.i - -# target to preprocess a source file -src/ProfileParser.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.i -.PHONY : src/ProfileParser.cpp.i - -src/ProfileParser.s: src/ProfileParser.cpp.s -.PHONY : src/ProfileParser.s - -# target to generate assembly for a file -src/ProfileParser.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/ProfileParser.cpp.s -.PHONY : src/ProfileParser.cpp.s - -src/ProfileStore.o: src/ProfileStore.cpp.o -.PHONY : src/ProfileStore.o - -# target to build an object file -src/ProfileStore.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.o -.PHONY : src/ProfileStore.cpp.o - -src/ProfileStore.i: src/ProfileStore.cpp.i -.PHONY : src/ProfileStore.i - -# target to preprocess a source file -src/ProfileStore.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.i -.PHONY : src/ProfileStore.cpp.i - -src/ProfileStore.s: src/ProfileStore.cpp.s -.PHONY : src/ProfileStore.s - -# target to generate assembly for a file -src/ProfileStore.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/ProfileStore.cpp.s -.PHONY : src/ProfileStore.cpp.s - -src/SignatureVerifier.o: src/SignatureVerifier.cpp.o -.PHONY : src/SignatureVerifier.o - -# target to build an object file -src/SignatureVerifier.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.o -.PHONY : src/SignatureVerifier.cpp.o - -src/SignatureVerifier.i: src/SignatureVerifier.cpp.i -.PHONY : src/SignatureVerifier.i - -# target to preprocess a source file -src/SignatureVerifier.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.i -.PHONY : src/SignatureVerifier.cpp.i - -src/SignatureVerifier.s: src/SignatureVerifier.cpp.s -.PHONY : src/SignatureVerifier.s - -# target to generate assembly for a file -src/SignatureVerifier.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/SignatureVerifier.cpp.s -.PHONY : src/SignatureVerifier.cpp.s - -src/VesperProfileService.o: src/VesperProfileService.cpp.o -.PHONY : src/VesperProfileService.o - -# target to build an object file -src/VesperProfileService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.o -.PHONY : src/VesperProfileService.cpp.o - -src/VesperProfileService.i: src/VesperProfileService.cpp.i -.PHONY : src/VesperProfileService.i - -# target to preprocess a source file -src/VesperProfileService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.i -.PHONY : src/VesperProfileService.cpp.i - -src/VesperProfileService.s: src/VesperProfileService.cpp.s -.PHONY : src/VesperProfileService.s - -# target to generate assembly for a file -src/VesperProfileService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/VesperProfileService.cpp.s -.PHONY : src/VesperProfileService.cpp.s - -src/main.o: src/main.cpp.o -.PHONY : src/main.o - -# target to build an object file -src/main.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/main.cpp.o -.PHONY : src/main.cpp.o - -src/main.i: src/main.cpp.i -.PHONY : src/main.i - -# target to preprocess a source file -src/main.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/main.cpp.i -.PHONY : src/main.cpp.i - -src/main.s: src/main.cpp.s -.PHONY : src/main.s - -# target to generate assembly for a file -src/main.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/main.cpp.s -.PHONY : src/main.cpp.s - -src/payloads/PayloadHandlers.o: src/payloads/PayloadHandlers.cpp.o -.PHONY : src/payloads/PayloadHandlers.o - -# target to build an object file -src/payloads/PayloadHandlers.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.o -.PHONY : src/payloads/PayloadHandlers.cpp.o - -src/payloads/PayloadHandlers.i: src/payloads/PayloadHandlers.cpp.i -.PHONY : src/payloads/PayloadHandlers.i - -# target to preprocess a source file -src/payloads/PayloadHandlers.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.i -.PHONY : src/payloads/PayloadHandlers.cpp.i - -src/payloads/PayloadHandlers.s: src/payloads/PayloadHandlers.cpp.s -.PHONY : src/payloads/PayloadHandlers.s - -# target to generate assembly for a file -src/payloads/PayloadHandlers.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/payloads/PayloadHandlers.cpp.s -.PHONY : src/payloads/PayloadHandlers.cpp.s - -src/zte/ConnectivityWatcher.o: src/zte/ConnectivityWatcher.cpp.o -.PHONY : src/zte/ConnectivityWatcher.o - -# target to build an object file -src/zte/ConnectivityWatcher.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.o -.PHONY : src/zte/ConnectivityWatcher.cpp.o - -src/zte/ConnectivityWatcher.i: src/zte/ConnectivityWatcher.cpp.i -.PHONY : src/zte/ConnectivityWatcher.i - -# target to preprocess a source file -src/zte/ConnectivityWatcher.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.i -.PHONY : src/zte/ConnectivityWatcher.cpp.i - -src/zte/ConnectivityWatcher.s: src/zte/ConnectivityWatcher.cpp.s -.PHONY : src/zte/ConnectivityWatcher.s - -# target to generate assembly for a file -src/zte/ConnectivityWatcher.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/ConnectivityWatcher.cpp.s -.PHONY : src/zte/ConnectivityWatcher.cpp.s - -src/zte/DeviceIdentity.o: src/zte/DeviceIdentity.cpp.o -.PHONY : src/zte/DeviceIdentity.o - -# target to build an object file -src/zte/DeviceIdentity.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.o -.PHONY : src/zte/DeviceIdentity.cpp.o - -src/zte/DeviceIdentity.i: src/zte/DeviceIdentity.cpp.i -.PHONY : src/zte/DeviceIdentity.i - -# target to preprocess a source file -src/zte/DeviceIdentity.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.i -.PHONY : src/zte/DeviceIdentity.cpp.i - -src/zte/DeviceIdentity.s: src/zte/DeviceIdentity.cpp.s -.PHONY : src/zte/DeviceIdentity.s - -# target to generate assembly for a file -src/zte/DeviceIdentity.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/DeviceIdentity.cpp.s -.PHONY : src/zte/DeviceIdentity.cpp.s - -src/zte/ZTELookupClient.o: src/zte/ZTELookupClient.cpp.o -.PHONY : src/zte/ZTELookupClient.o - -# target to build an object file -src/zte/ZTELookupClient.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.o -.PHONY : src/zte/ZTELookupClient.cpp.o - -src/zte/ZTELookupClient.i: src/zte/ZTELookupClient.cpp.i -.PHONY : src/zte/ZTELookupClient.i - -# target to preprocess a source file -src/zte/ZTELookupClient.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.i -.PHONY : src/zte/ZTELookupClient.cpp.i - -src/zte/ZTELookupClient.s: src/zte/ZTELookupClient.cpp.s -.PHONY : src/zte/ZTELookupClient.s - -# target to generate assembly for a file -src/zte/ZTELookupClient.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vesperprofiled.dir/build.make CMakeFiles/vesperprofiled.dir/src/zte/ZTELookupClient.cpp.s -.PHONY : src/zte/ZTELookupClient.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... vesperprofiled" - @echo "... src/ProfileParser.o" - @echo "... src/ProfileParser.i" - @echo "... src/ProfileParser.s" - @echo "... src/ProfileStore.o" - @echo "... src/ProfileStore.i" - @echo "... src/ProfileStore.s" - @echo "... src/SignatureVerifier.o" - @echo "... src/SignatureVerifier.i" - @echo "... src/SignatureVerifier.s" - @echo "... src/VesperProfileService.o" - @echo "... src/VesperProfileService.i" - @echo "... src/VesperProfileService.s" - @echo "... src/main.o" - @echo "... src/main.i" - @echo "... src/main.s" - @echo "... src/payloads/PayloadHandlers.o" - @echo "... src/payloads/PayloadHandlers.i" - @echo "... src/payloads/PayloadHandlers.s" - @echo "... src/zte/ConnectivityWatcher.o" - @echo "... src/zte/ConnectivityWatcher.i" - @echo "... src/zte/ConnectivityWatcher.s" - @echo "... src/zte/DeviceIdentity.o" - @echo "... src/zte/DeviceIdentity.i" - @echo "... src/zte/DeviceIdentity.s" - @echo "... src/zte/ZTELookupClient.o" - @echo "... src/zte/ZTELookupClient.i" - @echo "... src/zte/ZTELookupClient.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/obj-x86_64-linux-gnu/cmake_install.cmake b/obj-x86_64-linux-gnu/cmake_install.cmake deleted file mode 100644 index e9233c7..0000000 --- a/obj-x86_64-linux-gnu/cmake_install.cmake +++ /dev/null @@ -1,118 +0,0 @@ -# Install script for directory: /home/oxmc/VesperOS/packages/vesperprofiled - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/usr") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Release") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Install shared libraries without execute permission? -if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) - set(CMAKE_INSTALL_SO_NO_EXE "1") -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/usr/bin/objdump") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/sbin/vesperprofiled" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/sbin/vesperprofiled") - file(RPATH_CHECK - FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/sbin/vesperprofiled" - RPATH "") - endif() - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/sbin" TYPE EXECUTABLE FILES "/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/vesperprofiled") - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/sbin/vesperprofiled" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/sbin/vesperprofiled") - if(CMAKE_INSTALL_DO_STRIP) - execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/sbin/vesperprofiled") - endif() - endif() -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES - "/usr/lib/systemd/system/vesperprofiled.service") - if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) - message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") - endif() - if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) - message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") - endif() - file(INSTALL DESTINATION "/usr/lib/systemd/system" TYPE FILE FILES "/home/oxmc/VesperOS/packages/vesperprofiled/systemd/vesperprofiled.service") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES - "/etc/dbus-1/system.d/me.oxmc.vesperos.ProfileService.conf") - if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) - message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") - endif() - if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) - message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") - endif() - file(INSTALL DESTINATION "/etc/dbus-1/system.d" TYPE FILE FILES "/home/oxmc/VesperOS/packages/vesperprofiled/dbus/me.oxmc.vesperos.ProfileService.conf") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES - "/etc/apparmor.d/vesperprofiled") - if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) - message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") - endif() - if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) - message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") - endif() - file(INSTALL DESTINATION "/etc/apparmor.d" TYPE FILE FILES "/home/oxmc/VesperOS/packages/vesperprofiled/apparmor/vesperprofiled") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES - "/etc/vesperprofiled/zte.conf.example") - if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) - message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") - endif() - if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) - message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") - endif() - file(INSTALL DESTINATION "/etc/vesperprofiled" TYPE FILE RENAME "zte.conf.example" FILES "/home/oxmc/VesperOS/packages/vesperprofiled/zte.conf.example") -endif() - -if(CMAKE_INSTALL_COMPONENT) - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") -file(WRITE "/home/oxmc/VesperOS/packages/vesperprofiled/obj-x86_64-linux-gnu/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/obj-x86_64-linux-gnu/install_manifest.txt b/obj-x86_64-linux-gnu/install_manifest.txt deleted file mode 100644 index 99c4c06..0000000 --- a/obj-x86_64-linux-gnu/install_manifest.txt +++ /dev/null @@ -1,5 +0,0 @@ -/usr/sbin/vesperprofiled -/usr/lib/systemd/system/vesperprofiled.service -/etc/dbus-1/system.d/me.oxmc.vesperos.ProfileService.conf -/etc/apparmor.d/vesperprofiled -/etc/vesperprofiled/zte.conf.example \ No newline at end of file diff --git a/obj-x86_64-linux-gnu/vesperprofiled b/obj-x86_64-linux-gnu/vesperprofiled deleted file mode 100755 index 8e1d724..0000000 Binary files a/obj-x86_64-linux-gnu/vesperprofiled and /dev/null differ diff --git a/vesperprofiled.rc b/pawletprofiled.rc similarity index 72% rename from vesperprofiled.rc rename to pawletprofiled.rc index af63c49..3db5122 100644 --- a/vesperprofiled.rc +++ b/pawletprofiled.rc @@ -1,28 +1,28 @@ -# vendor/oxmc/vesperprofiled/vesperprofiled.rc +# vendor/oxmc/pawletprofiled/pawletprofiled.rc # ───────────────────────────────────────────────────────────────────────── -# Android init language script — starts vesperprofiled at boot. +# Android init language script — starts pawletprofiled at boot. # Placed in /system/etc/init/ by the build system via init_rc in Android.bp. # ───────────────────────────────────────────────────────────────────────── -service vesperprofiled /system/bin/vesperprofiled +service pawletprofiled /system/bin/pawletprofiled class main user system group system - # Capabilities needed to write to /data/system/vesperos/ and to + # Capabilities needed to write to /data/system/pawletos/ and to # call privileged Binder services (DevicePolicyManager, KeyChain, etc.) capabilities SETUID SETGID # Restart automatically if the daemon crashes. restart_period 5 - # SELinux domain (matches the type defined in vesperprofiled.te) - seclabel u:r:vesperprofiled:s0 + # SELinux domain (matches the type defined in pawletprofiled.te) + seclabel u:r:pawletprofiled:s0 # Only start once the filesystem is decrypted and /data is available. on_property:vold.decrypt=trigger_restart_framework # Create the data directory on first boot. on post-fs-data - mkdir /data/system/vesperos 0700 system system - mkdir /data/system/vesperos/profiles 0700 system system - mkdir /data/system/vesperos/preinstalled 0700 system system + mkdir /data/system/pawletos 0700 system system + mkdir /data/system/pawletos/profiles 0700 system system + mkdir /data/system/pawletos/preinstalled 0700 system system # content-cache payload's policy override — world-readable by design, # PawletCacheService (a regular app UID) reads it directly. See # PayloadHandlers.cpp's ContentCacheHandler and PolicyOverride.kt. diff --git a/vesperprofiled.xml b/pawletprofiled.xml similarity index 56% rename from vesperprofiled.xml rename to pawletprofiled.xml index d947ff9..7f4c3da 100644 --- a/vesperprofiled.xml +++ b/pawletprofiled.xml @@ -1,14 +1,14 @@ - me.oxmc.vesperos.profile + os.pawlet.profiled 1 - IVesperProfileService/default + IPawletProfileService/default diff --git a/sepolicy/file_contexts b/sepolicy/file_contexts index a78016d..208941a 100644 --- a/sepolicy/file_contexts +++ b/sepolicy/file_contexts @@ -1,11 +1,11 @@ -# vendor/oxmc/vesperprofiled/sepolicy/file_contexts +# vendor/oxmc/pawletprofiled/sepolicy/file_contexts # ───────────────────────────────────────────────────────────────────────── # Maps filesystem paths to SELinux security contexts. # Included automatically when BOARD_SEPOLICY_DIRS points here. # ───────────────────────────────────────────────────────────────────────── # Daemon binary -/system/bin/vesperprofiled u:object_r:vesperprofiled_exec:s0 +/system/bin/pawletprofiled u:object_r:pawletprofiled_exec:s0 # Profile data directory and all contents -/data/system/vesperos(/.*)? u:object_r:vesperprofiled_data_file:s0 +/data/system/pawletos(/.*)? u:object_r:pawletprofiled_data_file:s0 diff --git a/sepolicy/vesperprofiled.te b/sepolicy/pawletprofiled.te similarity index 56% rename from sepolicy/vesperprofiled.te rename to sepolicy/pawletprofiled.te index 5812c3c..0a67740 100644 --- a/sepolicy/vesperprofiled.te +++ b/sepolicy/pawletprofiled.te @@ -1,69 +1,69 @@ -# vendor/oxmc/vesperprofiled/sepolicy/vesperprofiled.te -# SELinux policy for the vesperprofiled system daemon (Android/AOSP). +# vendor/oxmc/pawletprofiled/sepolicy/pawletprofiled.te +# SELinux policy for the pawletprofiled system daemon (Android/AOSP). # # To activate, add to your device's BoardConfig.mk: -# BOARD_SEPOLICY_DIRS += vendor/oxmc/vesperprofiled/sepolicy +# BOARD_SEPOLICY_DIRS += vendor/oxmc/pawletprofiled/sepolicy # ── Type declarations ────────────────────────────────────────────────────── -type vesperprofiled, domain; -type vesperprofiled_exec, exec_type, file_type, system_file_type; -type vesperprofiled_data_file, file_type, data_file_type; -type vesperprofiled_service, service_manager_type; +type pawletprofiled, domain; +type pawletprofiled_exec, exec_type, file_type, system_file_type; +type pawletprofiled_data_file, file_type, data_file_type; +type pawletprofiled_service, service_manager_type; # ── Domain transition ────────────────────────────────────────────────────── -init_daemon_domain(vesperprofiled) +init_daemon_domain(pawletprofiled) # ── Binder IPC ──────────────────────────────────────────────────────────── -binder_use(vesperprofiled) -add_service(vesperprofiled, vesperprofiled_service) +binder_use(pawletprofiled) +add_service(pawletprofiled, pawletprofiled_service) -# Allow system apps and shell to call into vesperprofiled via Binder -binder_call(system_app, vesperprofiled) -binder_call(shell, vesperprofiled) +# Allow system apps and shell to call into pawletprofiled via Binder +binder_call(system_app, pawletprofiled) +binder_call(shell, pawletprofiled) # ── Profile data directory ──────────────────────────────────────────────── -allow vesperprofiled vesperprofiled_data_file:dir { create search getattr setattr add_name remove_name }; -allow vesperprofiled vesperprofiled_data_file:file { create open read write getattr setattr unlink rename }; +allow pawletprofiled pawletprofiled_data_file:dir { create search getattr setattr add_name remove_name }; +allow pawletprofiled pawletprofiled_data_file:file { create open read write getattr setattr unlink rename }; # ── System file access (CA certs for signature chain validation) ────────── -allow vesperprofiled system_file:dir { search getattr }; -allow vesperprofiled system_file:file { open read getattr }; +allow pawletprofiled system_file:dir { search getattr }; +allow pawletprofiled system_file:file { open read getattr }; # ── Network (ZTE HTTPS lookups) ─────────────────────────────────────────── -allow vesperprofiled self:tcp_socket { create connect read write shutdown }; -allow vesperprofiled self:udp_socket { create connect read write }; -allow vesperprofiled port:tcp_socket name_connect; +allow pawletprofiled self:tcp_socket { create connect read write shutdown }; +allow pawletprofiled self:udp_socket { create connect read write }; +allow pawletprofiled port:tcp_socket name_connect; # ── Logging ─────────────────────────────────────────────────────────────── -allow vesperprofiled log_device:chr_file { open read write }; +allow pawletprofiled log_device:chr_file { open read write }; # ── System properties (ZTE state and MDM enrollment state) ─────────────── -set_prop(vesperprofiled, vesperos_prop) -get_prop(vesperprofiled, vesperos_prop) +set_prop(pawletprofiled, pawletos_prop) +get_prop(pawletprofiled, pawletos_prop) # ── DevicePolicyManager / KeyStore Binder calls ─────────────────────────── -allow vesperprofiled device_policy_service:service_manager { find }; -allow vesperprofiled keystore_service:service_manager { find }; -binder_call(vesperprofiled, system_server) -binder_call(vesperprofiled, keystore) +allow pawletprofiled device_policy_service:service_manager { find }; +allow pawletprofiled keystore_service:service_manager { find }; +binder_call(pawletprofiled, system_server) +binder_call(pawletprofiled, keystore) # ── Process self-permissions ────────────────────────────────────────────── -allow vesperprofiled self:process { fork sigchld }; -allow vesperprofiled self:unix_stream_socket { create connect read write }; +allow pawletprofiled self:process { fork sigchld }; +allow pawletprofiled self:unix_stream_socket { create connect read write }; # ── content-cache payload's policy override file (PawletOS-fork-specific) ── # Type declared in android_packages_apps_PawletCache/sepolicy/pawlet_cache.te # (both dirs land in BOARD_SEPOLICY_DIRS) — see ContentCacheHandler and # PolicyOverride.kt for the read/write contract on this file. -allow vesperprofiled pawletcache_policy_file:dir { create search getattr add_name }; -allow vesperprofiled pawletcache_policy_file:file create_file_perms; +allow pawletprofiled pawletcache_policy_file:dir { create search getattr add_name }; +allow pawletprofiled pawletcache_policy_file:file create_file_perms; diff --git a/sepolicy/property_contexts b/sepolicy/property_contexts index 3ebe93d..e851ef2 100644 --- a/sepolicy/property_contexts +++ b/sepolicy/property_contexts @@ -1,4 +1,4 @@ -# vendor/oxmc/vesperprofiled/sepolicy/property_contexts -# Declares the persist.vesperos.* property namespace. +# vendor/oxmc/pawletprofiled/sepolicy/property_contexts +# Declares the persist.pawletos.* property namespace. -persist.vesperos. u:object_r:vesperos_prop:s0 +persist.pawletos. u:object_r:pawletos_prop:s0 diff --git a/sepolicy/service_contexts b/sepolicy/service_contexts index 8612e61..3a14cd3 100644 --- a/sepolicy/service_contexts +++ b/sepolicy/service_contexts @@ -1,6 +1,6 @@ -# vendor/oxmc/vesperprofiled/sepolicy/service_contexts +# vendor/oxmc/pawletprofiled/sepolicy/service_contexts # Maps the Binder service name to its SELinux type. # This is what allows AServiceManager_addService / getService to work # under SELinux enforcement. -me.oxmc.vesperos.profile.IVesperProfileService/default u:object_r:vesperprofiled_service:s0 +os.pawlet.profiled.IPawletProfileService/default u:object_r:pawletprofiled_service:s0 diff --git a/src/VesperProfileBinderService.cpp b/src/PawletProfileBinderService.cpp similarity index 89% rename from src/VesperProfileBinderService.cpp rename to src/PawletProfileBinderService.cpp index 9f76380..e6d0a52 100644 --- a/src/VesperProfileBinderService.cpp +++ b/src/PawletProfileBinderService.cpp @@ -1,16 +1,16 @@ -#include "VesperProfileBinderService.h" +#include "PawletProfileBinderService.h" #include "payloads/PayloadHandler.h" #include #include #include -namespace vesperos::profile { +namespace pawletos::profile { using ::ndk::ScopedAStatus; // Service-specific error codes returned via ScopedAStatus — mirrors -// VesperProfileService's D-Bus error domain (kErrNotFound etc.) one-for-one +// PawletProfileService's D-Bus error domain (kErrNotFound etc.) one-for-one // so a future shared client-side error mapping stays simple. namespace { constexpr int kErrNotFound = 1; @@ -21,8 +21,8 @@ constexpr int kErrWrongPassword = 5; constexpr int kErrSigningRequired = 6; } // namespace -ScopedAStatus VesperProfileBinderService::serviceError(const char* name, const std::string& message) { - syslog(LOG_WARNING, "vesperprofiled: %s: %s", name, message.c_str()); +ScopedAStatus PawletProfileBinderService::serviceError(const char* name, const std::string& message) { + syslog(LOG_WARNING, "pawletprofiled: %s: %s", name, message.c_str()); int code = 0; if (strcmp(name, "NotFound") == 0) code = kErrNotFound; else if (strcmp(name, "Signature") == 0) code = kErrSignature; @@ -33,14 +33,14 @@ ScopedAStatus VesperProfileBinderService::serviceError(const char* name, const s return ScopedAStatus::fromServiceSpecificErrorWithMessage(code, message.c_str()); } -VesperProfileBinderService::VesperProfileBinderService() { - syslog(LOG_INFO, "vesperprofiled: Binder service starting"); +PawletProfileBinderService::PawletProfileBinderService() { + syslog(LOG_INFO, "pawletprofiled: Binder service starting"); mStore.load(); } // ── installProfileDirect (preinstalled profiles, same as D-Bus version) ──── -bool VesperProfileBinderService::installProfileDirect( +bool PawletProfileBinderService::installProfileDirect( const std::vector& profileData, std::string& outUuid) { std::lock_guard lock(mLock); @@ -103,7 +103,7 @@ bool VesperProfileBinderService::installProfileDirect( // ── installProfile ────────────────────────────────────────────────────── -ScopedAStatus VesperProfileBinderService::installProfile( +ScopedAStatus PawletProfileBinderService::installProfile( const std::vector& in_profileData, std::string* _aidl_return) { std::lock_guard lock(mLock); @@ -147,7 +147,7 @@ ScopedAStatus VesperProfileBinderService::installProfile( } applyProfile(profile); - syslog(LOG_INFO, "vesperprofiled: installed profile uuid=%s", profile.uuid.c_str()); + syslog(LOG_INFO, "pawletprofiled: installed profile uuid=%s", profile.uuid.c_str()); *_aidl_return = profile.uuid; return ScopedAStatus::ok(); @@ -155,7 +155,7 @@ ScopedAStatus VesperProfileBinderService::installProfile( // ── removeProfile ──────────────────────────────────────────────────────── -ScopedAStatus VesperProfileBinderService::removeProfile( +ScopedAStatus PawletProfileBinderService::removeProfile( const std::string& in_uuid, const std::string& in_removalPassword) { std::lock_guard lock(mLock); @@ -175,13 +175,13 @@ ScopedAStatus VesperProfileBinderService::removeProfile( revertProfile(profile); mStore.remove(in_uuid); - syslog(LOG_INFO, "vesperprofiled: removed profile uuid=%s", in_uuid.c_str()); + syslog(LOG_INFO, "pawletprofiled: removed profile uuid=%s", in_uuid.c_str()); return ScopedAStatus::ok(); } // ── listProfiles ───────────────────────────────────────────────────────── -ScopedAStatus VesperProfileBinderService::listProfiles(std::vector* _aidl_return) { +ScopedAStatus PawletProfileBinderService::listProfiles(std::vector* _aidl_return) { std::lock_guard lock(mLock); *_aidl_return = mStore.listUuids(); return ScopedAStatus::ok(); @@ -189,7 +189,7 @@ ScopedAStatus VesperProfileBinderService::listProfiles(std::vector* // ── getProfileInfo ─────────────────────────────────────────────────────── -ScopedAStatus VesperProfileBinderService::getProfileInfo( +ScopedAStatus PawletProfileBinderService::getProfileInfo( const std::string& in_uuid, std::string* _aidl_return) { std::lock_guard lock(mLock); @@ -216,7 +216,7 @@ ScopedAStatus VesperProfileBinderService::getProfileInfo( // ── isDeviceManaged ────────────────────────────────────────────────────── -ScopedAStatus VesperProfileBinderService::isDeviceManaged(bool* _aidl_return) { +ScopedAStatus PawletProfileBinderService::isDeviceManaged(bool* _aidl_return) { std::lock_guard lock(mLock); bool managed = false; for (const auto& uuid : mStore.listUuids()) { @@ -232,7 +232,7 @@ ScopedAStatus VesperProfileBinderService::isDeviceManaged(bool* _aidl_return) { // ── getMdmServerUrl ────────────────────────────────────────────────────── -ScopedAStatus VesperProfileBinderService::getMdmServerUrl(std::string* _aidl_return) { +ScopedAStatus PawletProfileBinderService::getMdmServerUrl(std::string* _aidl_return) { std::lock_guard lock(mLock); std::string url; for (const auto& uuid : mStore.listUuids()) { @@ -254,7 +254,7 @@ ScopedAStatus VesperProfileBinderService::getMdmServerUrl(std::string* _aidl_ret // ── isSupervised ───────────────────────────────────────────────────────── -ScopedAStatus VesperProfileBinderService::isSupervised(bool* _aidl_return) { +ScopedAStatus PawletProfileBinderService::isSupervised(bool* _aidl_return) { std::lock_guard lock(mLock); bool supervised = false; for (const auto& uuid : mStore.listUuids()) { @@ -270,7 +270,7 @@ ScopedAStatus VesperProfileBinderService::isSupervised(bool* _aidl_return) { // ── getPayloadsOfType ──────────────────────────────────────────────────── -ScopedAStatus VesperProfileBinderService::getPayloadsOfType( +ScopedAStatus PawletProfileBinderService::getPayloadsOfType( const std::string& in_payloadType, std::string* _aidl_return) { std::lock_guard lock(mLock); @@ -299,24 +299,24 @@ ScopedAStatus VesperProfileBinderService::getPayloadsOfType( // ── applyProfile / revertProfile ───────────────────────────────────────── -void VesperProfileBinderService::applyProfile(const ParsedProfile& profile) { +void PawletProfileBinderService::applyProfile(const ParsedProfile& profile) { for (const auto& payload : profile.payloads) { auto* handler = PayloadHandlerRegistry::get(payload.type); if (handler) { if (!handler->apply(payload)) - syslog(LOG_WARNING, "vesperprofiled: handler failed type=%s uuid=%s", + syslog(LOG_WARNING, "pawletprofiled: handler failed type=%s uuid=%s", payload.type.c_str(), payload.uuid.c_str()); } else { - syslog(LOG_WARNING, "vesperprofiled: no handler for type=%s", payload.type.c_str()); + syslog(LOG_WARNING, "pawletprofiled: no handler for type=%s", payload.type.c_str()); } } } -void VesperProfileBinderService::revertProfile(const ParsedProfile& profile) { +void PawletProfileBinderService::revertProfile(const ParsedProfile& profile) { for (auto it = profile.payloads.rbegin(); it != profile.payloads.rend(); ++it) { auto* handler = PayloadHandlerRegistry::get(it->type); if (handler) handler->revert(*it); } } -} // namespace vesperos::profile +} // namespace pawletos::profile diff --git a/src/VesperProfileBinderService.h b/src/PawletProfileBinderService.h similarity index 76% rename from src/VesperProfileBinderService.h rename to src/PawletProfileBinderService.h index 89425ba..e9cb946 100644 --- a/src/VesperProfileBinderService.h +++ b/src/PawletProfileBinderService.h @@ -4,27 +4,27 @@ #include "ProfileStore.h" #include "SignatureVerifier.h" -#include +#include #include #include #include -namespace vesperos::profile { +namespace pawletos::profile { -// ── Android Binder counterpart to VesperProfileService (D-Bus) ───────────── +// ── Android Binder counterpart to PawletProfileService (D-Bus) ───────────── // Same install/remove/query logic, same ProfileStore/ProfileParser/ // PayloadHandlerRegistry underneath — only the transport differs. See // main_android.cpp for how this gets registered with servicemanager. // -// Registered service name: "me.oxmc.vesperos.profile.IVesperProfileService/default" -// (must match vesperprofiled.xml's VINTF fragment and sepolicy/service_contexts). -class VesperProfileBinderService - : public aidl::me::oxmc::vesperos::profile::BnVesperProfileService { +// Registered service name: "os.pawlet.profiled.IPawletProfileService/default" +// (must match pawletprofiled.xml's VINTF fragment and sepolicy/service_contexts). +class PawletProfileBinderService + : public aidl::me::oxmc::pawletos::profile::BnPawletProfileService { public: - VesperProfileBinderService(); + PawletProfileBinderService(); - // Same direct-install path VesperProfileService exposes for main.cpp's + // Same direct-install path PawletProfileService exposes for main.cpp's // preinstalled-profile loader — see applyPreinstalledProfiles() in // main_android.cpp. bool installProfileDirect(const std::vector& data, std::string& outUuid); @@ -54,4 +54,4 @@ private: SignatureVerifier mVerifier; }; -} // namespace vesperos::profile +} // namespace pawletos::profile diff --git a/src/VesperProfileService.cpp b/src/PawletProfileService.cpp similarity index 90% rename from src/VesperProfileService.cpp rename to src/PawletProfileService.cpp index 770e63d..ff8e11c 100644 --- a/src/VesperProfileService.cpp +++ b/src/PawletProfileService.cpp @@ -1,4 +1,4 @@ -#include "VesperProfileService.h" +#include "PawletProfileService.h" #include "payloads/PayloadHandler.h" #include @@ -7,16 +7,16 @@ #include #include -namespace vesperos::profile { +namespace pawletos::profile { // ── Constructor / Destructor ─────────────────────────────────────────────── -VesperProfileService::VesperProfileService() { - syslog(LOG_INFO, "vesperprofiled: starting"); +PawletProfileService::PawletProfileService() { + syslog(LOG_INFO, "pawletprofiled: starting"); mStore.load(); } -VesperProfileService::~VesperProfileService() { +PawletProfileService::~PawletProfileService() { if (mConn) { dbus_connection_unref(mConn); mConn = nullptr; @@ -25,14 +25,14 @@ VesperProfileService::~VesperProfileService() { // ── run ─────────────────────────────────────────────────────────────────── -void VesperProfileService::run() { +void PawletProfileService::run() { DBusError err; dbus_error_init(&err); // Connect to the system bus mConn = dbus_bus_get(DBUS_BUS_SYSTEM, &err); if (dbus_error_is_set(&err)) { - syslog(LOG_ERR, "vesperprofiled: D-Bus connection error: %s", err.message); + syslog(LOG_ERR, "pawletprofiled: D-Bus connection error: %s", err.message); dbus_error_free(&err); return; } @@ -41,26 +41,26 @@ void VesperProfileService::run() { int ret = dbus_bus_request_name(mConn, kServiceName, DBUS_NAME_FLAG_REPLACE_EXISTING, &err); if (dbus_error_is_set(&err)) { - syslog(LOG_ERR, "vesperprofiled: request name error: %s", err.message); + syslog(LOG_ERR, "pawletprofiled: request name error: %s", err.message); dbus_error_free(&err); return; } if (ret != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER) { - syslog(LOG_ERR, "vesperprofiled: not primary owner of %s", kServiceName); + syslog(LOG_ERR, "pawletprofiled: not primary owner of %s", kServiceName); return; } // Register our object path handler static const DBusObjectPathVTable vtable = { nullptr, - &VesperProfileService::messageHandler, + &PawletProfileService::messageHandler, nullptr, nullptr, nullptr, nullptr }; dbus_connection_register_object_path(mConn, kObjectPath, &vtable, this); // Notify systemd we're ready sd_notify(0, "READY=1\nSTATUS=Serving profiles"); - syslog(LOG_INFO, "vesperprofiled: registered as %s", kServiceName); + syslog(LOG_INFO, "pawletprofiled: registered as %s", kServiceName); mRunning = true; while (mRunning) { @@ -68,19 +68,19 @@ void VesperProfileService::run() { } } -void VesperProfileService::stop() { +void PawletProfileService::stop() { mRunning = false; sd_notify(0, "STOPPING=1"); } // ── D-Bus message dispatcher ────────────────────────────────────────────── -DBusHandlerResult VesperProfileService::messageHandler( +DBusHandlerResult PawletProfileService::messageHandler( DBusConnection* conn, DBusMessage* msg, void* userData) { - return static_cast(userData)->dispatch(conn, msg); + return static_cast(userData)->dispatch(conn, msg); } -DBusHandlerResult VesperProfileService::dispatch( +DBusHandlerResult PawletProfileService::dispatch( DBusConnection* conn, DBusMessage* msg) { if (dbus_message_get_type(msg) != DBUS_MESSAGE_TYPE_METHOD_CALL) @@ -108,9 +108,9 @@ DBusHandlerResult VesperProfileService::dispatch( // ── Error helper ────────────────────────────────────────────────────────── -void VesperProfileService::sendError(DBusConnection* conn, DBusMessage* msg, +void PawletProfileService::sendError(DBusConnection* conn, DBusMessage* msg, const char* name, const char* message) { - syslog(LOG_WARNING, "vesperprofiled: error %s: %s", name, message); + syslog(LOG_WARNING, "pawletprofiled: error %s: %s", name, message); DBusMessage* reply = dbus_message_new_error(msg, name, message); if (reply) { dbus_connection_send(conn, reply, nullptr); @@ -122,7 +122,7 @@ void VesperProfileService::sendError(DBusConnection* conn, DBusMessage* msg, // Called from main() for preinstalled profiles before D-Bus is open. // Idempotent: if the profile UUID is already in the store, it skips silently. -bool VesperProfileService::installProfileDirect( +bool PawletProfileService::installProfileDirect( const std::vector& profileData, std::string& outUuid) { @@ -191,7 +191,7 @@ bool VesperProfileService::installProfileDirect( // ── InstallProfile (D-Bus) ──────────────────────────────────────────────── -bool VesperProfileService::installProfile(DBusConnection* conn, DBusMessage* msg) { +bool PawletProfileService::installProfile(DBusConnection* conn, DBusMessage* msg) { std::lock_guard lock(mLock); // Read the byte array argument (profile data) @@ -254,7 +254,7 @@ bool VesperProfileService::installProfile(DBusConnection* conn, DBusMessage* msg applyProfile(profile); - syslog(LOG_INFO, "vesperprofiled: installed profile uuid=%s", profile.uuid.c_str()); + syslog(LOG_INFO, "pawletprofiled: installed profile uuid=%s", profile.uuid.c_str()); DBusMessage* reply = dbus_message_new_method_return(msg); dbus_message_append_args(reply, @@ -267,7 +267,7 @@ bool VesperProfileService::installProfile(DBusConnection* conn, DBusMessage* msg // ── RemoveProfile ───────────────────────────────────────────────────────── -bool VesperProfileService::removeProfile(DBusConnection* conn, DBusMessage* msg) { +bool PawletProfileService::removeProfile(DBusConnection* conn, DBusMessage* msg) { std::lock_guard lock(mLock); const char* uuid = nullptr; @@ -301,7 +301,7 @@ bool VesperProfileService::removeProfile(DBusConnection* conn, DBusMessage* msg) revertProfile(profile); mStore.remove(uuid); - syslog(LOG_INFO, "vesperprofiled: removed profile uuid=%s", uuid); + syslog(LOG_INFO, "pawletprofiled: removed profile uuid=%s", uuid); DBusMessage* reply = dbus_message_new_method_return(msg); dbus_connection_send(conn, reply, nullptr); @@ -311,7 +311,7 @@ bool VesperProfileService::removeProfile(DBusConnection* conn, DBusMessage* msg) // ── ListProfiles ────────────────────────────────────────────────────────── -bool VesperProfileService::listProfiles(DBusConnection* conn, DBusMessage* msg) { +bool PawletProfileService::listProfiles(DBusConnection* conn, DBusMessage* msg) { std::lock_guard lock(mLock); auto uuids = mStore.listUuids(); @@ -334,7 +334,7 @@ bool VesperProfileService::listProfiles(DBusConnection* conn, DBusMessage* msg) // ── GetProfileInfo ──────────────────────────────────────────────────────── -bool VesperProfileService::getProfileInfo(DBusConnection* conn, DBusMessage* msg) { +bool PawletProfileService::getProfileInfo(DBusConnection* conn, DBusMessage* msg) { std::lock_guard lock(mLock); const char* uuid = nullptr; dbus_message_get_args(msg, nullptr, DBUS_TYPE_STRING, &uuid, DBUS_TYPE_INVALID); @@ -369,7 +369,7 @@ bool VesperProfileService::getProfileInfo(DBusConnection* conn, DBusMessage* msg // ── IsDeviceManaged ─────────────────────────────────────────────────────── -bool VesperProfileService::isDeviceManaged(DBusConnection* conn, DBusMessage* msg) { +bool PawletProfileService::isDeviceManaged(DBusConnection* conn, DBusMessage* msg) { std::lock_guard lock(mLock); dbus_bool_t managed = FALSE; for (const auto& uuid : mStore.listUuids()) { @@ -388,7 +388,7 @@ bool VesperProfileService::isDeviceManaged(DBusConnection* conn, DBusMessage* ms // ── GetMdmServerUrl ─────────────────────────────────────────────────────── -bool VesperProfileService::getMdmServerUrl(DBusConnection* conn, DBusMessage* msg) { +bool PawletProfileService::getMdmServerUrl(DBusConnection* conn, DBusMessage* msg) { std::lock_guard lock(mLock); std::string url; for (const auto& uuid : mStore.listUuids()) { @@ -415,7 +415,7 @@ bool VesperProfileService::getMdmServerUrl(DBusConnection* conn, DBusMessage* ms // ── IsSupervised ────────────────────────────────────────────────────────── -bool VesperProfileService::isSupervised(DBusConnection* conn, DBusMessage* msg) { +bool PawletProfileService::isSupervised(DBusConnection* conn, DBusMessage* msg) { std::lock_guard lock(mLock); dbus_bool_t supervised = FALSE; for (const auto& uuid : mStore.listUuids()) { @@ -434,7 +434,7 @@ bool VesperProfileService::isSupervised(DBusConnection* conn, DBusMessage* msg) // ── GetPayloadsOfType ───────────────────────────────────────────────────── -bool VesperProfileService::getPayloadsOfType(DBusConnection* conn, DBusMessage* msg) { +bool PawletProfileService::getPayloadsOfType(DBusConnection* conn, DBusMessage* msg) { std::lock_guard lock(mLock); const char* payloadType = nullptr; dbus_message_get_args(msg, nullptr, DBUS_TYPE_STRING, &payloadType, DBUS_TYPE_INVALID); @@ -470,24 +470,24 @@ bool VesperProfileService::getPayloadsOfType(DBusConnection* conn, DBusMessage* // ── applyProfile / revertProfile ────────────────────────────────────────── -void VesperProfileService::applyProfile(const ParsedProfile& profile) { +void PawletProfileService::applyProfile(const ParsedProfile& profile) { for (const auto& payload : profile.payloads) { auto* handler = PayloadHandlerRegistry::get(payload.type); if (handler) { if (!handler->apply(payload)) - syslog(LOG_WARNING, "vesperprofiled: handler failed type=%s uuid=%s", + syslog(LOG_WARNING, "pawletprofiled: handler failed type=%s uuid=%s", payload.type.c_str(), payload.uuid.c_str()); } else { - syslog(LOG_WARNING, "vesperprofiled: no handler for type=%s", payload.type.c_str()); + syslog(LOG_WARNING, "pawletprofiled: no handler for type=%s", payload.type.c_str()); } } } -void VesperProfileService::revertProfile(const ParsedProfile& profile) { +void PawletProfileService::revertProfile(const ParsedProfile& profile) { for (auto it = profile.payloads.rbegin(); it != profile.payloads.rend(); ++it) { auto* handler = PayloadHandlerRegistry::get(it->type); if (handler) handler->revert(*it); } } -} // namespace vesperos::profile +} // namespace pawletos::profile diff --git a/src/VesperProfileService.h b/src/PawletProfileService.h similarity index 74% rename from src/VesperProfileService.h rename to src/PawletProfileService.h index e9594aa..67e9449 100644 --- a/src/VesperProfileService.h +++ b/src/PawletProfileService.h @@ -10,30 +10,30 @@ #include #include -namespace vesperos::profile { +namespace pawletos::profile { // ── D-Bus service constants ─────────────────────────────────────────────── // Clients connect to this well-known name on the system bus. -static constexpr const char* kServiceName = "me.oxmc.vesperos.ProfileService"; -static constexpr const char* kObjectPath = "/me/oxmc/vesperos/ProfileService"; -static constexpr const char* kInterface = "me.oxmc.vesperos.IProfileService"; +static constexpr const char* kServiceName = "os.pawlet.ProfiledService"; +static constexpr const char* kObjectPath = "/os/pawlet/ProfiledService"; +static constexpr const char* kInterface = "os.pawlet.IProfiledService"; // ── Error domain ────────────────────────────────────────────────────────── -static constexpr const char* kErrNotFound = "me.oxmc.vesperos.Error.NotFound"; -static constexpr const char* kErrSignature = "me.oxmc.vesperos.Error.Signature"; -static constexpr const char* kErrParse = "me.oxmc.vesperos.Error.Parse"; -static constexpr const char* kErrLocked = "me.oxmc.vesperos.Error.Locked"; -static constexpr const char* kErrWrongPassword = "me.oxmc.vesperos.Error.WrongPassword"; -static constexpr const char* kErrSigningRequired = "me.oxmc.vesperos.Error.SigningRequired"; +static constexpr const char* kErrNotFound = "os.pawlet.profiled.Error.NotFound"; +static constexpr const char* kErrSignature = "os.pawlet.profiled.Error.Signature"; +static constexpr const char* kErrParse = "os.pawlet.profiled.Error.Parse"; +static constexpr const char* kErrLocked = "os.pawlet.profiled.Error.Locked"; +static constexpr const char* kErrWrongPassword = "os.pawlet.profiled.Error.WrongPassword"; +static constexpr const char* kErrSigningRequired = "os.pawlet.profiled.Error.SigningRequired"; // ── Service class ───────────────────────────────────────────────────────── -class VesperProfileService { +class PawletProfileService { public: - VesperProfileService(); - ~VesperProfileService(); + PawletProfileService(); + ~PawletProfileService(); // Run the D-Bus main loop. Blocks until Stop() is called. void run(); @@ -79,4 +79,4 @@ private: bool mRunning = false; }; -} // namespace vesperos::profile +} // namespace pawletos::profile diff --git a/src/ProfileParser.cpp b/src/ProfileParser.cpp index 9d9b462..8bb942d 100644 --- a/src/ProfileParser.cpp +++ b/src/ProfileParser.cpp @@ -7,7 +7,7 @@ #include #include -namespace vesperos::profile { +namespace pawletos::profile { // ── Internal YAML DOM builder ───────────────────────────────────────────── // libyaml is SAX/event-based. We walk the event stream and build a simple @@ -240,7 +240,7 @@ bool ProfileParser::validateProfile(const ParsedProfile& profile) { // Load singleton constraints from the installed schema // For now use the compiled-in list; the schema-aware validator - // reads /usr/share/vesperprofiled/schema/profile.schema.yml at runtime. + // reads /usr/share/pawletprofiled/schema/profile.schema.yml at runtime. static const std::vector singletons = { "mdm", "passcode", "restrictions", "kiosk", "asam", "proxy-http", "web-filter", "global-preferences", @@ -260,4 +260,4 @@ bool ProfileParser::validateProfile(const ParsedProfile& profile) { return true; } -} // namespace vesperos::profile +} // namespace pawletos::profile diff --git a/src/ProfileParser.h b/src/ProfileParser.h index fdaa76f..98753a1 100644 --- a/src/ProfileParser.h +++ b/src/ProfileParser.h @@ -6,7 +6,7 @@ #include #include -namespace vesperos::profile { +namespace pawletos::profile { struct ParsedPayload { std::string type; @@ -61,4 +61,4 @@ private: bool validateProfile(const ParsedProfile& profile); }; -} // namespace vesperos::profile +} // namespace pawletos::profile diff --git a/src/ProfileStore.cpp b/src/ProfileStore.cpp index 68eccf6..4f601ec 100644 --- a/src/ProfileStore.cpp +++ b/src/ProfileStore.cpp @@ -16,7 +16,7 @@ #include #include -namespace vesperos::profile { +namespace pawletos::profile { // ── POSIX file helpers ──────────────────────────────────────────────────── @@ -28,7 +28,7 @@ static bool fileExists(const std::string& path) { static bool writeFile(const std::string& path, const std::string& content) { std::ofstream f(path, std::ios::binary | std::ios::trunc); if (!f) { - syslog(LOG_ERR, "vesperprofiled: cannot write %s: %s", + syslog(LOG_ERR, "pawletprofiled: cannot write %s: %s", path.c_str(), strerror(errno)); return false; } @@ -94,7 +94,7 @@ void ProfileStore::ensureDir(const std::string& path) { } void ProfileStore::load() { - ensureDir("/var/lib/vesperprofiled"); + ensureDir("/var/lib/pawletprofiled"); ensureDir(kProfilesDir); mUuids.clear(); @@ -108,7 +108,7 @@ void ProfileStore::load() { mUuids.push_back(name); } closedir(d); - syslog(LOG_INFO, "vesperprofiled: loaded %zu profiles", mUuids.size()); + syslog(LOG_INFO, "pawletprofiled: loaded %zu profiles", mUuids.size()); } bool ProfileStore::save(const ParsedProfile& profile) { @@ -205,4 +205,4 @@ void ProfileStore::rebuildIndex() { writeFile(kIndexFile, j.str()); } -} // namespace vesperos::profile +} // namespace pawletos::profile diff --git a/src/ProfileStore.h b/src/ProfileStore.h index 5b24fd7..ba664eb 100644 --- a/src/ProfileStore.h +++ b/src/ProfileStore.h @@ -6,7 +6,7 @@ #include #include -namespace vesperos::profile { +namespace pawletos::profile { // Persists installed profiles under kProfilesDir. // @@ -18,20 +18,20 @@ namespace vesperos::profile { // meta.json install time, trust level, payload count // removal_hash.bin PBKDF2-SHA256 hash of removal password (if set) // -// Android's path matches what vesperprofiled.rc already mkdir's at +// Android's path matches what pawletprofiled.rc already mkdir's at // post-fs-data and what sepolicy/file_contexts already labels -// vesperprofiled_data_file — see android_packages_apps_PawletCache's +// pawletprofiled_data_file — see android_packages_apps_PawletCache's // equivalent PolicyOverride.kt contract for the analogous device-side path. #if defined(__ANDROID__) static constexpr const char* kProfilesDir = - "/data/system/vesperos/profiles"; + "/data/system/pawletos/profiles"; static constexpr const char* kIndexFile = - "/data/system/vesperos/profiles/index.json"; + "/data/system/pawletos/profiles/index.json"; #else static constexpr const char* kProfilesDir = - "/var/lib/vesperprofiled/profiles"; + "/var/lib/pawletprofiled/profiles"; static constexpr const char* kIndexFile = - "/var/lib/vesperprofiled/profiles/index.json"; + "/var/lib/pawletprofiled/profiles/index.json"; #endif class ProfileStore { @@ -50,4 +50,4 @@ private: std::string profileDir(const std::string& uuid); }; -} // namespace vesperos::profile +} // namespace pawletos::profile diff --git a/src/SignatureVerifier.cpp b/src/SignatureVerifier.cpp index adbc630..abe4a8e 100644 --- a/src/SignatureVerifier.cpp +++ b/src/SignatureVerifier.cpp @@ -18,7 +18,7 @@ #include #include -namespace vesperos::profile { +namespace pawletos::profile { struct BioDeleter { void operator()(BIO* p) { BIO_free(p); } }; struct CmsDeleter { void operator()(CMS_ContentInfo* p) { CMS_ContentInfo_free(p); } }; @@ -51,10 +51,10 @@ static StorePtr buildTrustStore() { X509_STORE_load_locations(store, SignatureVerifier::kTrustStorePath, nullptr); #endif - // Load VesperOS profile signing CA if installed + // Load PawletOS profile signing CA if installed struct stat st{}; - if (::stat(SignatureVerifier::kVesperCaPath, &st) == 0) - X509_STORE_load_locations(store, SignatureVerifier::kVesperCaPath, nullptr); + if (::stat(SignatureVerifier::kPawletCaPath, &st) == 0) + X509_STORE_load_locations(store, SignatureVerifier::kPawletCaPath, nullptr); return StorePtr(store); } @@ -66,13 +66,13 @@ SignatureVerifier::VerifyResult SignatureVerifier::verify( BioPtr in(BIO_new_mem_buf(cmsData.data(), (int)cmsData.size())); CmsPtr cms(d2i_CMS_bio(in.get(), nullptr)); if (!cms) { - syslog(LOG_ERR, "vesperprofiled: failed to parse CMS envelope"); + syslog(LOG_ERR, "pawletprofiled: failed to parse CMS envelope"); return VerifyResult::INVALID; } StorePtr store = buildTrustStore(); if (!store) { - syslog(LOG_ERR, "vesperprofiled: failed to build trust store"); + syslog(LOG_ERR, "pawletprofiled: failed to build trust store"); return VerifyResult::INVALID; } @@ -97,7 +97,7 @@ SignatureVerifier::VerifyResult SignatureVerifier::verify( char buf[256]; while ((e = ERR_get_error()) != 0) { ERR_error_string_n(e, buf, sizeof(buf)); - syslog(LOG_ERR, "vesperprofiled: CMS verify: %s", buf); + syslog(LOG_ERR, "pawletprofiled: CMS verify: %s", buf); } return VerifyResult::INVALID; } @@ -108,4 +108,4 @@ SignatureVerifier::VerifyResult SignatureVerifier::verify( return VerifyResult::UNVERIFIED; } -} // namespace vesperos::profile +} // namespace pawletos::profile diff --git a/src/SignatureVerifier.h b/src/SignatureVerifier.h index 9f2a30b..ccdbb40 100644 --- a/src/SignatureVerifier.h +++ b/src/SignatureVerifier.h @@ -4,7 +4,7 @@ #include #include -namespace vesperos::profile { +namespace pawletos::profile { class SignatureVerifier { public: @@ -31,18 +31,18 @@ public: // via X509_STORE's CApath, not CAfile. See SignatureVerifier.cpp. static constexpr const char* kTrustStorePath = "/system/etc/security/cacerts"; - // VesperOS profile signing CA (optional) — writable partition, covered - // by sepolicy's vesperprofiled_data_file type. - static constexpr const char* kVesperCaPath = - "/data/system/vesperos/profile_ca.pem"; + // PawletOS profile signing CA (optional) — writable partition, covered + // by sepolicy's pawletprofiled_data_file type. + static constexpr const char* kPawletCaPath = + "/data/system/pawletos/profile_ca.pem"; #else // System CA trust bundle static constexpr const char* kTrustStorePath = "/etc/ssl/certs/ca-certificates.crt"; - // VesperOS profile signing CA (optional; installed by the vesperos-ca package) - static constexpr const char* kVesperCaPath = - "/etc/vesperprofiled/profile_ca.pem"; + // PawletOS profile signing CA (optional; installed by the pawletos-ca package) + static constexpr const char* kPawletCaPath = + "/etc/pawletprofiled/profile_ca.pem"; #endif }; -} // namespace vesperos::profile +} // namespace pawletos::profile diff --git a/src/main.cpp b/src/main.cpp index 5ef0c71..3730823 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,4 +1,4 @@ -#include "VesperProfileService.h" +#include "PawletProfileService.h" #include "payloads/PayloadHandler.h" #include "zte/ConnectivityWatcher.h" @@ -14,12 +14,12 @@ #include // ───────────────────────────────────────────────────────────────────────── -// vesperprofiled — unified daemon +// pawletprofiled — unified daemon // // Runs two subsystems in one process: // -// 1. VesperProfileService (main thread) -// D-Bus system service at me.oxmc.vesperos.ProfileService. +// 1. PawletProfileService (main thread) +// D-Bus system service at os.pawlet.ProfiledService. // Handles InstallProfile, RemoveProfile, ListProfiles, etc. // Applies all payload handlers (WiFi, VPN, certs, MDM, …). // @@ -29,12 +29,12 @@ // hardware identity. If managed, downloads and installs the MDM // enrollment profile via the profile service. // -// Preinstalled profiles in /etc/vesperprofiled/preinstalled/ are applied +// Preinstalled profiles in /etc/pawletprofiled/preinstalled/ are applied // at startup, before cloud-init runs (enforced by systemd ordering). // ───────────────────────────────────────────────────────────────────────── static constexpr const char* kPreinstalledDir = - "/etc/vesperprofiled/preinstalled"; + "/etc/pawletprofiled/preinstalled"; static std::atomic gRunning{true}; @@ -45,11 +45,11 @@ static bool fileExists(const std::string& path) { // ── Preinstalled profile loader ─────────────────────────────────────────── -static void applyPreinstalledProfiles(vesperos::profile::VesperProfileService& svc) { +static void applyPreinstalledProfiles(pawletos::profile::PawletProfileService& svc) { DIR* d = opendir(kPreinstalledDir); if (!d) return; - syslog(LOG_INFO, "vesperprofiled: scanning %s for preinstalled profiles", + syslog(LOG_INFO, "pawletprofiled: scanning %s for preinstalled profiles", kPreinstalledDir); struct dirent* ent; @@ -61,7 +61,7 @@ static void applyPreinstalledProfiles(vesperos::profile::VesperProfileService& s std::string path = std::string(kPreinstalledDir) + "/" + name; std::ifstream f(path, std::ios::binary); if (!f) { - syslog(LOG_WARNING, "vesperprofiled: cannot read %s", path.c_str()); + syslog(LOG_WARNING, "pawletprofiled: cannot read %s", path.c_str()); continue; } std::ostringstream buf; @@ -72,21 +72,21 @@ static void applyPreinstalledProfiles(vesperos::profile::VesperProfileService& s std::string uuid; bool ok = svc.installProfileDirect(data, uuid); if (ok) - syslog(LOG_INFO, "vesperprofiled: preinstalled %s → uuid=%s", + syslog(LOG_INFO, "pawletprofiled: preinstalled %s → uuid=%s", name.c_str(), uuid.c_str()); else - syslog(LOG_WARNING, "vesperprofiled: failed to apply %s", name.c_str()); + syslog(LOG_WARNING, "pawletprofiled: failed to apply %s", name.c_str()); } closedir(d); } // ── Signal handler ──────────────────────────────────────────────────────── -static vesperos::profile::VesperProfileService* gProfileSvc = nullptr; -static vesperos::zte::ConnectivityWatcher* gZteWatcher = nullptr; +static pawletos::profile::PawletProfileService* gProfileSvc = nullptr; +static pawletos::zte::ConnectivityWatcher* gZteWatcher = nullptr; static void onSignal(int sig) { - syslog(LOG_INFO, "vesperprofiled: signal %d — stopping", sig); + syslog(LOG_INFO, "pawletprofiled: signal %d — stopping", sig); gRunning = false; if (gProfileSvc) gProfileSvc->stop(); if (gZteWatcher) gZteWatcher->stop(); @@ -95,11 +95,11 @@ static void onSignal(int sig) { // ── main ────────────────────────────────────────────────────────────────── int main() { - openlog("vesperprofiled", LOG_PID | LOG_CONS, LOG_DAEMON); - syslog(LOG_INFO, "vesperprofiled starting"); + openlog("pawletprofiled", LOG_PID | LOG_CONS, LOG_DAEMON); + syslog(LOG_INFO, "pawletprofiled starting"); // Register payload handlers first - vesperos::profile::PayloadHandlerRegistry::registerAll(); + pawletos::profile::PayloadHandlerRegistry::registerAll(); // Signal handling struct sigaction sa{}; @@ -109,7 +109,7 @@ int main() { sigaction(SIGINT, &sa, nullptr); // ── Profile service ──────────────────────────────────────────────────── - vesperos::profile::VesperProfileService profileSvc; + pawletos::profile::PawletProfileService profileSvc; gProfileSvc = &profileSvc; // Apply any profiles baked into the image before opening D-Bus. @@ -120,13 +120,13 @@ int main() { // ── ZTE watcher (background thread) ─────────────────────────────────── // Starts watching for NM connectivity after the profile service is up, // so that if ZTE triggers an enrollment, InstallProfile is available. - vesperos::zte::ConnectivityWatcher zteWatcher; + pawletos::zte::ConnectivityWatcher zteWatcher; gZteWatcher = &zteWatcher; std::thread zteThread([&]() { - syslog(LOG_INFO, "vesperprofiled: ZTE watcher thread starting"); + syslog(LOG_INFO, "pawletprofiled: ZTE watcher thread starting"); zteWatcher.run(); // blocks until stop() - syslog(LOG_INFO, "vesperprofiled: ZTE watcher thread stopped"); + syslog(LOG_INFO, "pawletprofiled: ZTE watcher thread stopped"); }); // ── Open D-Bus service and notify systemd ────────────────────────────── @@ -142,7 +142,7 @@ int main() { gProfileSvc = nullptr; gZteWatcher = nullptr; - syslog(LOG_INFO, "vesperprofiled stopped"); + syslog(LOG_INFO, "pawletprofiled stopped"); closelog(); return 0; } diff --git a/src/main_android.cpp b/src/main_android.cpp index 6380257..abd8383 100644 --- a/src/main_android.cpp +++ b/src/main_android.cpp @@ -1,4 +1,4 @@ -#include "VesperProfileBinderService.h" +#include "PawletProfileBinderService.h" #include "payloads/PayloadHandler.h" #include @@ -11,11 +11,11 @@ #include // ───────────────────────────────────────────────────────────────────────── -// vesperprofiled — Android entry point +// pawletprofiled — Android entry point // -// Counterpart to main.cpp (Linux/D-Bus). Registers VesperProfileBinderService -// as "me.oxmc.vesperos.profile.IVesperProfileService/default" — the exact -// name vesperprofiled.xml's VINTF fragment and sepolicy/service_contexts +// Counterpart to main.cpp (Linux/D-Bus). Registers PawletProfileBinderService +// as "os.pawlet.profiled.IPawletProfileService/default" — the exact +// name pawletprofiled.xml's VINTF fragment and sepolicy/service_contexts // already declare — and applies preinstalled profiles the same way // main.cpp does, from an Android-appropriate path. // @@ -26,18 +26,18 @@ // ───────────────────────────────────────────────────────────────────────── static constexpr const char* kPreinstalledDir = - "/data/system/vesperos/preinstalled"; + "/data/system/pawletos/preinstalled"; static bool fileExists(const std::string& path) { struct stat st{}; return ::stat(path.c_str(), &st) == 0; } -static void applyPreinstalledProfiles(vesperos::profile::VesperProfileBinderService& svc) { +static void applyPreinstalledProfiles(pawletos::profile::PawletProfileBinderService& svc) { DIR* d = opendir(kPreinstalledDir); if (!d) return; - syslog(LOG_INFO, "vesperprofiled: scanning %s for preinstalled profiles", kPreinstalledDir); + syslog(LOG_INFO, "pawletprofiled: scanning %s for preinstalled profiles", kPreinstalledDir); struct dirent* ent; while ((ent = readdir(d)) != nullptr) { @@ -48,7 +48,7 @@ static void applyPreinstalledProfiles(vesperos::profile::VesperProfileBinderServ std::string path = std::string(kPreinstalledDir) + "/" + name; std::ifstream f(path, std::ios::binary); if (!f) { - syslog(LOG_WARNING, "vesperprofiled: cannot read %s", path.c_str()); + syslog(LOG_WARNING, "pawletprofiled: cannot read %s", path.c_str()); continue; } std::ostringstream buf; @@ -59,38 +59,38 @@ static void applyPreinstalledProfiles(vesperos::profile::VesperProfileBinderServ std::string uuid; bool ok = svc.installProfileDirect(data, uuid); if (ok) - syslog(LOG_INFO, "vesperprofiled: preinstalled %s -> uuid=%s", name.c_str(), uuid.c_str()); + syslog(LOG_INFO, "pawletprofiled: preinstalled %s -> uuid=%s", name.c_str(), uuid.c_str()); else - syslog(LOG_WARNING, "vesperprofiled: failed to apply %s", name.c_str()); + syslog(LOG_WARNING, "pawletprofiled: failed to apply %s", name.c_str()); } closedir(d); } int main() { - openlog("vesperprofiled", LOG_PID | LOG_CONS, LOG_DAEMON); - syslog(LOG_INFO, "vesperprofiled starting (Android/Binder)"); + openlog("pawletprofiled", LOG_PID | LOG_CONS, LOG_DAEMON); + syslog(LOG_INFO, "pawletprofiled starting (Android/Binder)"); - vesperos::profile::PayloadHandlerRegistry::registerAll(); + pawletos::profile::PayloadHandlerRegistry::registerAll(); - auto service = ndk::SharedRefBase::make(); + auto service = ndk::SharedRefBase::make(); if (fileExists(kPreinstalledDir)) { applyPreinstalledProfiles(*service); } - const char* instanceName = "me.oxmc.vesperos.profile.IVesperProfileService/default"; + const char* instanceName = "os.pawlet.profiled.IPawletProfileService/default"; binder_status_t status = AServiceManager_addService(service->asBinder().get(), instanceName); if (status != STATUS_OK) { - syslog(LOG_ERR, "vesperprofiled: AServiceManager_addService failed: %d", status); + syslog(LOG_ERR, "pawletprofiled: AServiceManager_addService failed: %d", status); return 1; } - syslog(LOG_INFO, "vesperprofiled: registered as %s", instanceName); + syslog(LOG_INFO, "pawletprofiled: registered as %s", instanceName); ABinderProcess_setThreadPoolMaxThreadCount(4); ABinderProcess_startThreadPool(); ABinderProcess_joinThreadPool(); // blocks forever - syslog(LOG_INFO, "vesperprofiled stopped"); + syslog(LOG_INFO, "pawletprofiled stopped"); closelog(); return 0; } diff --git a/src/payloads/PayloadHandler.h b/src/payloads/PayloadHandler.h index 8c2a539..e6a1e4d 100644 --- a/src/payloads/PayloadHandler.h +++ b/src/payloads/PayloadHandler.h @@ -8,7 +8,7 @@ #include #include -namespace vesperos::profile { +namespace pawletos::profile { // ── PayloadHandler ──────────────────────────────────────────────────────── // Each payload type has one handler that knows how to apply/revert it @@ -55,4 +55,4 @@ private: static std::map>& handlers(); }; -} // namespace vesperos::profile +} // namespace pawletos::profile diff --git a/src/payloads/PayloadHandlers.cpp b/src/payloads/PayloadHandlers.cpp index d1efede..56a3c91 100644 --- a/src/payloads/PayloadHandlers.cpp +++ b/src/payloads/PayloadHandlers.cpp @@ -8,7 +8,7 @@ // src/platform/.h. The *real* logic lives in exactly one of: // // src/platform/linux/.cpp (CMakeLists.txt builds these) -// src/platform/android/.cpp (vesperprofiled/Android.bp builds these) +// src/platform/android/.cpp (pawletprofiled/Android.bp builds these) // // Only one half gets compiled per target, so there's no #ifdef in this // file and no linker conflict — the build system picks the platform, not @@ -21,9 +21,9 @@ // See each stub's header comment for what a real port would need. // // content-cache is PawletOS-fork-specific — talks to PawletCache/ -// pawletcache-server, which don't exist in a bare VesperOS install. It's +// pawletcache-server, which don't exist in a bare PawletOS install. It's // registered here because this checkout *is* the PawletOS fork of -// vesperprofiled; the upstream/default VesperOS build omits it. +// pawletprofiled; the upstream/default PawletOS build omits it. // ───────────────────────────────────────────────────────────────────────── #include "../platform/Wifi.h" @@ -46,34 +46,34 @@ #include -namespace vesperos::profile { +namespace pawletos::profile { -#define VESPER_DISPATCH_HANDLER(ClassName, ns) \ +#define PAWLET_DISPATCH_HANDLER(ClassName, ns) \ class ClassName : public PayloadHandler { \ public: \ bool apply(const ParsedPayload& p) override { return platform::ns::apply(p); } \ void revert(const ParsedPayload& p) override { platform::ns::revert(p); } \ } -VESPER_DISPATCH_HANDLER(WifiHandler, wifi); -VESPER_DISPATCH_HANDLER(EthernetHandler, ethernet); -VESPER_DISPATCH_HANDLER(VpnHandler, vpn); -VESPER_DISPATCH_HANDLER(CertHandler, cert); -VESPER_DISPATCH_HANDLER(Pkcs12Handler, pkcs12); -VESPER_DISPATCH_HANDLER(PasscodeHandler, passcode); -VESPER_DISPATCH_HANDLER(MdmHandler, mdm); -VESPER_DISPATCH_HANDLER(SoftwareUpdateHandler, software_update); -VESPER_DISPATCH_HANDLER(TimeServerHandler, time_server); -VESPER_DISPATCH_HANDLER(ProxyHandler, proxy); -VESPER_DISPATCH_HANDLER(DnsProxyHandler, dns_proxy); -VESPER_DISPATCH_HANDLER(FirewallHandler, firewall); -VESPER_DISPATCH_HANDLER(LdapHandler, ldap); -VESPER_DISPATCH_HANDLER(WallpaperHandler, wallpaper); -VESPER_DISPATCH_HANDLER(ScreensaverHandler, screensaver); -VESPER_DISPATCH_HANDLER(FirstBootHandler, first_boot); -VESPER_DISPATCH_HANDLER(ContentCacheHandler, content_cache); +PAWLET_DISPATCH_HANDLER(WifiHandler, wifi); +PAWLET_DISPATCH_HANDLER(EthernetHandler, ethernet); +PAWLET_DISPATCH_HANDLER(VpnHandler, vpn); +PAWLET_DISPATCH_HANDLER(CertHandler, cert); +PAWLET_DISPATCH_HANDLER(Pkcs12Handler, pkcs12); +PAWLET_DISPATCH_HANDLER(PasscodeHandler, passcode); +PAWLET_DISPATCH_HANDLER(MdmHandler, mdm); +PAWLET_DISPATCH_HANDLER(SoftwareUpdateHandler, software_update); +PAWLET_DISPATCH_HANDLER(TimeServerHandler, time_server); +PAWLET_DISPATCH_HANDLER(ProxyHandler, proxy); +PAWLET_DISPATCH_HANDLER(DnsProxyHandler, dns_proxy); +PAWLET_DISPATCH_HANDLER(FirewallHandler, firewall); +PAWLET_DISPATCH_HANDLER(LdapHandler, ldap); +PAWLET_DISPATCH_HANDLER(WallpaperHandler, wallpaper); +PAWLET_DISPATCH_HANDLER(ScreensaverHandler, screensaver); +PAWLET_DISPATCH_HANDLER(FirstBootHandler, first_boot); +PAWLET_DISPATCH_HANDLER(ContentCacheHandler, content_cache); -#undef VESPER_DISPATCH_HANDLER +#undef PAWLET_DISPATCH_HANDLER // ── Stub handler for payload types with no platform implementation at all // (not even a per-platform split — nothing to dispatch to yet) ───────── @@ -157,7 +157,7 @@ void PayloadHandlerRegistry::registerAll() { m[t] = std::make_unique(t); } - syslog(LOG_INFO, "vesperprofiled: registered %zu payload handlers", m.size()); + syslog(LOG_INFO, "pawletprofiled: registered %zu payload handlers", m.size()); } -} // namespace vesperos::profile +} // namespace pawletos::profile diff --git a/src/payloads/PayloadUtil.h b/src/payloads/PayloadUtil.h index 6b37736..f987997 100644 --- a/src/payloads/PayloadUtil.h +++ b/src/payloads/PayloadUtil.h @@ -23,7 +23,7 @@ #include #include -namespace vesperos::profile::util { +namespace pawletos::profile::util { // Was PayloadHandler::field/fieldBool (protected statics only reachable from // a subclass body) — moved here as free functions so platform/*/*.cpp files, @@ -47,10 +47,10 @@ inline bool fieldBool(const ParsedPayload& p, const std::string& key, bool def = } inline bool runCmd(const std::string& cmd) { - syslog(LOG_DEBUG, "vesperprofiled: exec: %s", cmd.c_str()); + syslog(LOG_DEBUG, "pawletprofiled: exec: %s", cmd.c_str()); int ret = ::system(cmd.c_str()); if (ret != 0) - syslog(LOG_WARNING, "vesperprofiled: command exited %d: %s", ret, cmd.c_str()); + syslog(LOG_WARNING, "pawletprofiled: command exited %d: %s", ret, cmd.c_str()); return ret == 0; } @@ -58,12 +58,12 @@ inline bool writeFile(const std::string& path, const std::string& content, mode_ std::string tmp = path + ".tmp"; { std::ofstream f(tmp, std::ios::binary | std::ios::trunc); - if (!f) { syslog(LOG_ERR, "vesperprofiled: cannot write %s", tmp.c_str()); return false; } + if (!f) { syslog(LOG_ERR, "pawletprofiled: cannot write %s", tmp.c_str()); return false; } f << content; } chmod(tmp.c_str(), mode); if (::rename(tmp.c_str(), path.c_str()) != 0) { - syslog(LOG_ERR, "vesperprofiled: rename failed: %s -> %s", tmp.c_str(), path.c_str()); + syslog(LOG_ERR, "pawletprofiled: rename failed: %s -> %s", tmp.c_str(), path.c_str()); ::unlink(tmp.c_str()); return false; } @@ -109,4 +109,4 @@ inline std::string extractJson(const std::string& json, const std::string& key) return json.substr(pos, end - pos); } -} // namespace vesperos::profile::util +} // namespace pawletos::profile::util diff --git a/src/platform/Cert.h b/src/platform/Cert.h index 51e2aca..941c227 100644 --- a/src/platform/Cert.h +++ b/src/platform/Cert.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::cert { +namespace pawletos::profile::platform::cert { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::cert +} // namespace pawletos::profile::platform::cert diff --git a/src/platform/ContentCache.h b/src/platform/ContentCache.h index 8f8d525..80f03c1 100644 --- a/src/platform/ContentCache.h +++ b/src/platform/ContentCache.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::content_cache { +namespace pawletos::profile::platform::content_cache { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::content_cache +} // namespace pawletos::profile::platform::content_cache diff --git a/src/platform/DnsProxy.h b/src/platform/DnsProxy.h index c1ed685..f0e9e1e 100644 --- a/src/platform/DnsProxy.h +++ b/src/platform/DnsProxy.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::dns_proxy { +namespace pawletos::profile::platform::dns_proxy { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::dns_proxy +} // namespace pawletos::profile::platform::dns_proxy diff --git a/src/platform/Ethernet.h b/src/platform/Ethernet.h index 644b191..f57c330 100644 --- a/src/platform/Ethernet.h +++ b/src/platform/Ethernet.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::ethernet { +namespace pawletos::profile::platform::ethernet { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::ethernet +} // namespace pawletos::profile::platform::ethernet diff --git a/src/platform/Firewall.h b/src/platform/Firewall.h index 9607c56..80994ad 100644 --- a/src/platform/Firewall.h +++ b/src/platform/Firewall.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::firewall { +namespace pawletos::profile::platform::firewall { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::firewall +} // namespace pawletos::profile::platform::firewall diff --git a/src/platform/FirstBoot.h b/src/platform/FirstBoot.h index 7545fb3..33a3d72 100644 --- a/src/platform/FirstBoot.h +++ b/src/platform/FirstBoot.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::first_boot { +namespace pawletos::profile::platform::first_boot { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::first_boot +} // namespace pawletos::profile::platform::first_boot diff --git a/src/platform/Ldap.h b/src/platform/Ldap.h index 24b51de..de8dfe5 100644 --- a/src/platform/Ldap.h +++ b/src/platform/Ldap.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::ldap { +namespace pawletos::profile::platform::ldap { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::ldap +} // namespace pawletos::profile::platform::ldap diff --git a/src/platform/Mdm.h b/src/platform/Mdm.h index 0b6737e..7be6b1f 100644 --- a/src/platform/Mdm.h +++ b/src/platform/Mdm.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::mdm { +namespace pawletos::profile::platform::mdm { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::mdm +} // namespace pawletos::profile::platform::mdm diff --git a/src/platform/Passcode.h b/src/platform/Passcode.h index 0d99a03..2c3abaf 100644 --- a/src/platform/Passcode.h +++ b/src/platform/Passcode.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::passcode { +namespace pawletos::profile::platform::passcode { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::passcode +} // namespace pawletos::profile::platform::passcode diff --git a/src/platform/Pkcs12.h b/src/platform/Pkcs12.h index 4fd1e46..0f95347 100644 --- a/src/platform/Pkcs12.h +++ b/src/platform/Pkcs12.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::pkcs12 { +namespace pawletos::profile::platform::pkcs12 { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::pkcs12 +} // namespace pawletos::profile::platform::pkcs12 diff --git a/src/platform/Proxy.h b/src/platform/Proxy.h index 3adc3ef..973904a 100644 --- a/src/platform/Proxy.h +++ b/src/platform/Proxy.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::proxy { +namespace pawletos::profile::platform::proxy { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::proxy +} // namespace pawletos::profile::platform::proxy diff --git a/src/platform/Screensaver.h b/src/platform/Screensaver.h index 0b2d4c7..82d3340 100644 --- a/src/platform/Screensaver.h +++ b/src/platform/Screensaver.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::screensaver { +namespace pawletos::profile::platform::screensaver { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::screensaver +} // namespace pawletos::profile::platform::screensaver diff --git a/src/platform/SoftwareUpdate.h b/src/platform/SoftwareUpdate.h index 76da493..aaa9fa6 100644 --- a/src/platform/SoftwareUpdate.h +++ b/src/platform/SoftwareUpdate.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::software_update { +namespace pawletos::profile::platform::software_update { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::software_update +} // namespace pawletos::profile::platform::software_update diff --git a/src/platform/TimeServer.h b/src/platform/TimeServer.h index 7f7bc70..358ae27 100644 --- a/src/platform/TimeServer.h +++ b/src/platform/TimeServer.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::time_server { +namespace pawletos::profile::platform::time_server { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::time_server +} // namespace pawletos::profile::platform::time_server diff --git a/src/platform/Vpn.h b/src/platform/Vpn.h index 7470399..381ada4 100644 --- a/src/platform/Vpn.h +++ b/src/platform/Vpn.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::vpn { +namespace pawletos::profile::platform::vpn { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::vpn +} // namespace pawletos::profile::platform::vpn diff --git a/src/platform/Wallpaper.h b/src/platform/Wallpaper.h index 49148d6..b5903b8 100644 --- a/src/platform/Wallpaper.h +++ b/src/platform/Wallpaper.h @@ -1,7 +1,7 @@ #pragma once #include "../ProfileParser.h" -namespace vesperos::profile::platform::wallpaper { +namespace pawletos::profile::platform::wallpaper { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::wallpaper +} // namespace pawletos::profile::platform::wallpaper diff --git a/src/platform/Wifi.h b/src/platform/Wifi.h index afca542..cf8b753 100644 --- a/src/platform/Wifi.h +++ b/src/platform/Wifi.h @@ -5,7 +5,7 @@ // implement. Only one gets compiled per target (CMakeLists.txt vs // Android.bp), so there's no #ifdef and no linker conflict — see // PayloadHandlers.cpp's WifiHandler for the shared dispatch that calls this. -namespace vesperos::profile::platform::wifi { +namespace pawletos::profile::platform::wifi { bool apply(const ParsedPayload& p); void revert(const ParsedPayload& p); -} // namespace vesperos::profile::platform::wifi +} // namespace pawletos::profile::platform::wifi diff --git a/src/platform/android/Cert.cpp b/src/platform/android/Cert.cpp index 67cf9b2..eb07ece 100644 --- a/src/platform/android/Cert.cpp +++ b/src/platform/android/Cert.cpp @@ -6,7 +6,7 @@ // installCaCert() (device-owner) or the KeyChain install-cert intent flow — // AOSP has no /etc/ssl/certs-equivalent a daemon can just write files into. -namespace vesperos::profile::platform::cert { +namespace pawletos::profile::platform::cert { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[cert] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -17,4 +17,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[cert] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::cert +} // namespace pawletos::profile::platform::cert diff --git a/src/platform/android/ContentCache.cpp b/src/platform/android/ContentCache.cpp index 1a77fc7..397c96f 100644 --- a/src/platform/android/ContentCache.cpp +++ b/src/platform/android/ContentCache.cpp @@ -6,16 +6,16 @@ // ═══════════════════════════════════════════════════════════════════════════ // CONTENT CACHE HANDLER (Android) -// PawletOS-fork-specific — vesperprofiled's default VesperOS build doesn't +// PawletOS-fork-specific — pawletprofiled's default PawletOS build doesn't // register this handler at all (see PayloadHandlers.cpp). Writes the // local-network-cache discovery override PawletCacheService reads — see // pawletcache-server/README.md and // android_packages_apps_PawletCache/src/os/pawlet/cache/PolicyOverride.kt. // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::content_cache { +namespace pawletos::profile::platform::content_cache { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { constexpr const char* kPolicyDir = "/data/misc/pawletcache"; @@ -49,4 +49,4 @@ void revert(const ParsedPayload& /*p*/) { removeFile(kPolicyFile); } -} // namespace vesperos::profile::platform::content_cache +} // namespace pawletos::profile::platform::content_cache diff --git a/src/platform/android/DnsProxy.cpp b/src/platform/android/DnsProxy.cpp index faf9bfc..a3ec714 100644 --- a/src/platform/android/DnsProxy.cpp +++ b/src/platform/android/DnsProxy.cpp @@ -6,7 +6,7 @@ // Settings.Global.PRIVATE_DNS_MODE / PRIVATE_DNS_SPECIFIER (needs // WRITE_SECURE_SETTINGS) — no systemd-resolved.conf.d equivalent. -namespace vesperos::profile::platform::dns_proxy { +namespace pawletos::profile::platform::dns_proxy { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[dns-proxy] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -17,4 +17,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[dns-proxy] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::dns_proxy +} // namespace pawletos::profile::platform::dns_proxy diff --git a/src/platform/android/Ethernet.cpp b/src/platform/android/Ethernet.cpp index 385efed..79ab91d 100644 --- a/src/platform/android/Ethernet.cpp +++ b/src/platform/android/Ethernet.cpp @@ -5,7 +5,7 @@ // Not yet implemented on Android. A real port would use the hidden/system // android.net.EthernetManager API — no NetworkManager equivalent exists. -namespace vesperos::profile::platform::ethernet { +namespace pawletos::profile::platform::ethernet { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[ethernet] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -16,4 +16,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[ethernet] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::ethernet +} // namespace pawletos::profile::platform::ethernet diff --git a/src/platform/android/Firewall.cpp b/src/platform/android/Firewall.cpp index fd965f4..f452fff 100644 --- a/src/platform/android/Firewall.cpp +++ b/src/platform/android/Firewall.cpp @@ -6,7 +6,7 @@ // AOSP — a real port would need NetworkPolicyManager rules or a local // VpnService-based firewall, a fundamentally different mechanism. -namespace vesperos::profile::platform::firewall { +namespace pawletos::profile::platform::firewall { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[firewall] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -17,4 +17,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[firewall] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::firewall +} // namespace pawletos::profile::platform::firewall diff --git a/src/platform/android/FirstBoot.cpp b/src/platform/android/FirstBoot.cpp index 084632e..2a16fd7 100644 --- a/src/platform/android/FirstBoot.cpp +++ b/src/platform/android/FirstBoot.cpp @@ -6,7 +6,7 @@ // SetupWizard (Settings.Global DEVICE_PROVISIONED / USER_SETUP_COMPLETE) — // no cloud-init/GNOME Initial Setup equivalent here. -namespace vesperos::profile::platform::first_boot { +namespace pawletos::profile::platform::first_boot { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[first-boot] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -17,4 +17,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[first-boot] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::first_boot +} // namespace pawletos::profile::platform::first_boot diff --git a/src/platform/android/Ldap.cpp b/src/platform/android/Ldap.cpp index e3fe3c5..e85f0d5 100644 --- a/src/platform/android/Ldap.cpp +++ b/src/platform/android/Ldap.cpp @@ -7,7 +7,7 @@ // equivalent); this payload type doesn't map onto anything the platform // exposes. Logged for visibility rather than silently accepted. -namespace vesperos::profile::platform::ldap { +namespace pawletos::profile::platform::ldap { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[ldap] not supported on Android (no system LDAP client), uuid=%s", p.uuid.c_str()); @@ -18,4 +18,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[ldap] not supported on Android (no system LDAP client), uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::ldap +} // namespace pawletos::profile::platform::ldap diff --git a/src/platform/android/Mdm.cpp b/src/platform/android/Mdm.cpp index 116bda2..5e30126 100644 --- a/src/platform/android/Mdm.cpp +++ b/src/platform/android/Mdm.cpp @@ -6,7 +6,7 @@ // device-owner/EMM provisioning flow (DevicePolicyManager), a fundamentally // different enrollment model than cloud-init drop-ins. -namespace vesperos::profile::platform::mdm { +namespace pawletos::profile::platform::mdm { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[mdm] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -17,4 +17,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[mdm] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::mdm +} // namespace pawletos::profile::platform::mdm diff --git a/src/platform/android/Passcode.cpp b/src/platform/android/Passcode.cpp index 7c5bdcc..ec184f6 100644 --- a/src/platform/android/Passcode.cpp +++ b/src/platform/android/Passcode.cpp @@ -6,7 +6,7 @@ // DevicePolicyManager.setPasswordQuality()/setPasswordMinimumLength() etc // (device-owner) — no pam_pwquality-equivalent config file to write. -namespace vesperos::profile::platform::passcode { +namespace pawletos::profile::platform::passcode { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[passcode] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -17,4 +17,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[passcode] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::passcode +} // namespace pawletos::profile::platform::passcode diff --git a/src/platform/android/Pkcs12.cpp b/src/platform/android/Pkcs12.cpp index 3f3190e..a28492c 100644 --- a/src/platform/android/Pkcs12.cpp +++ b/src/platform/android/Pkcs12.cpp @@ -6,7 +6,7 @@ // DevicePolicyManager.installKeyPair() (device-owner) — no system NSSDB // equivalent a daemon can write a .p12 into directly. -namespace vesperos::profile::platform::pkcs12 { +namespace pawletos::profile::platform::pkcs12 { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[pkcs12] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -17,4 +17,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[pkcs12] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::pkcs12 +} // namespace pawletos::profile::platform::pkcs12 diff --git a/src/platform/android/Proxy.cpp b/src/platform/android/Proxy.cpp index c1cafe5..29433b4 100644 --- a/src/platform/android/Proxy.cpp +++ b/src/platform/android/Proxy.cpp @@ -6,7 +6,7 @@ // DevicePolicyManager.setRecommendedGlobalProxy()/ProxyInfo (device-owner) — // no /etc/environment-equivalent to write. -namespace vesperos::profile::platform::proxy { +namespace pawletos::profile::platform::proxy { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[proxy] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -17,4 +17,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[proxy] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::proxy +} // namespace pawletos::profile::platform::proxy diff --git a/src/platform/android/Screensaver.cpp b/src/platform/android/Screensaver.cpp index 02932f7..88a03f3 100644 --- a/src/platform/android/Screensaver.cpp +++ b/src/platform/android/Screensaver.cpp @@ -7,7 +7,7 @@ // Settings.System SCREEN_OFF_TIMEOUT for the idle delay — no dconf profile // to write. -namespace vesperos::profile::platform::screensaver { +namespace pawletos::profile::platform::screensaver { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[screensaver] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -18,4 +18,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[screensaver] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::screensaver +} // namespace pawletos::profile::platform::screensaver diff --git a/src/platform/android/SoftwareUpdate.cpp b/src/platform/android/SoftwareUpdate.cpp index b83ad03..a6b65cf 100644 --- a/src/platform/android/SoftwareUpdate.cpp +++ b/src/platform/android/SoftwareUpdate.cpp @@ -8,7 +8,7 @@ // automatic/deferral fields into BgUpd's manifest/policy rather than apt // settings, which don't apply here at all. -namespace vesperos::profile::platform::software_update { +namespace pawletos::profile::platform::software_update { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[software-update] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -19,4 +19,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[software-update] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::software_update +} // namespace pawletos::profile::platform::software_update diff --git a/src/platform/android/TimeServer.cpp b/src/platform/android/TimeServer.cpp index 6bae68a..37414f8 100644 --- a/src/platform/android/TimeServer.cpp +++ b/src/platform/android/TimeServer.cpp @@ -6,7 +6,7 @@ // Settings.Global.NTP_SERVER (requires WRITE_SECURE_SETTINGS, same // permission pattern BgUpd already holds for its own settings writes). -namespace vesperos::profile::platform::time_server { +namespace pawletos::profile::platform::time_server { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[time-server] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -17,4 +17,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[time-server] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::time_server +} // namespace pawletos::profile::platform::time_server diff --git a/src/platform/android/Vpn.cpp b/src/platform/android/Vpn.cpp index 92eddff..4de5c9e 100644 --- a/src/platform/android/Vpn.cpp +++ b/src/platform/android/Vpn.cpp @@ -7,7 +7,7 @@ // this would mean shipping a companion VPN app or a system VpnService, not // just writing a config file). -namespace vesperos::profile::platform::vpn { +namespace pawletos::profile::platform::vpn { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[vpn] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -18,4 +18,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[vpn] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::vpn +} // namespace pawletos::profile::platform::vpn diff --git a/src/platform/android/Wallpaper.cpp b/src/platform/android/Wallpaper.cpp index f2439f6..e4cfafe 100644 --- a/src/platform/android/Wallpaper.cpp +++ b/src/platform/android/Wallpaper.cpp @@ -6,7 +6,7 @@ // android.app.WallpaperManager (setStream/setResource) — no dconf profile // to write. -namespace vesperos::profile::platform::wallpaper { +namespace pawletos::profile::platform::wallpaper { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[wallpaper] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -17,4 +17,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[wallpaper] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::wallpaper +} // namespace pawletos::profile::platform::wallpaper diff --git a/src/platform/android/Wifi.cpp b/src/platform/android/Wifi.cpp index a8e06d1..68ada08 100644 --- a/src/platform/android/Wifi.cpp +++ b/src/platform/android/Wifi.cpp @@ -6,7 +6,7 @@ // WifiNetworkSuggestion (API 29+) or a privileged wpa_supplicant config // write — NetworkManager keyfiles (the Linux implementation) don't apply. -namespace vesperos::profile::platform::wifi { +namespace pawletos::profile::platform::wifi { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[wifi] not implemented on Android yet, uuid=%s", p.uuid.c_str()); @@ -17,4 +17,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[wifi] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::wifi +} // namespace pawletos::profile::platform::wifi diff --git a/src/platform/linux/Cert.cpp b/src/platform/linux/Cert.cpp index 7e3116a..280028f 100644 --- a/src/platform/linux/Cert.cpp +++ b/src/platform/linux/Cert.cpp @@ -7,16 +7,16 @@ // ═══════════════════════════════════════════════════════════════════════════ // CERTIFICATE HANDLER (Linux) -// Root/intermediate CAs → /usr/local/share/ca-certificates/vesperos/ +// Root/intermediate CAs → /usr/local/share/ca-certificates/pawletos/ // + update-ca-certificates // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::cert { +namespace pawletos::profile::platform::cert { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { -constexpr const char* kCaDir = "/usr/local/share/ca-certificates/vesperos"; +constexpr const char* kCaDir = "/usr/local/share/ca-certificates/pawletos"; } bool apply(const ParsedPayload& p) { @@ -45,4 +45,4 @@ void revert(const ParsedPayload& p) { runCmd("update-ca-certificates --fresh 2>/dev/null"); } -} // namespace vesperos::profile::platform::cert +} // namespace pawletos::profile::platform::cert diff --git a/src/platform/linux/ContentCache.cpp b/src/platform/linux/ContentCache.cpp index 69be75f..7012593 100644 --- a/src/platform/linux/ContentCache.cpp +++ b/src/platform/linux/ContentCache.cpp @@ -6,17 +6,17 @@ // ═══════════════════════════════════════════════════════════════════════════ // CONTENT CACHE HANDLER (Linux) -// PawletOS-fork-specific — vesperprofiled's default VesperOS build doesn't +// PawletOS-fork-specific — pawletprofiled's default PawletOS build doesn't // register this handler at all (see PayloadHandlers.cpp). Writes a -// placeholder path for a possible future VesperOS-side cache client — see +// placeholder path for a possible future PawletOS-side cache client — see // pawletcache-server/README.md. The Android implementation // (platform/android/ContentCache.cpp) is the one that actually matters on // PawletOS devices; PawletCacheService reads that one. // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::content_cache { +namespace pawletos::profile::platform::content_cache { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { constexpr const char* kPolicyDir = "/etc/pawletcache"; @@ -48,4 +48,4 @@ void revert(const ParsedPayload& /*p*/) { removeFile(kPolicyFile); } -} // namespace vesperos::profile::platform::content_cache +} // namespace pawletos::profile::platform::content_cache diff --git a/src/platform/linux/DnsProxy.cpp b/src/platform/linux/DnsProxy.cpp index 367e9d4..18df8a4 100644 --- a/src/platform/linux/DnsProxy.cpp +++ b/src/platform/linux/DnsProxy.cpp @@ -6,16 +6,16 @@ // ═══════════════════════════════════════════════════════════════════════════ // DNS PROXY HANDLER (Linux) -// Writes /etc/systemd/resolved.conf.d/vesperos-dns.conf +// Writes /etc/systemd/resolved.conf.d/pawletos-dns.conf // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::dns_proxy { +namespace pawletos::profile::platform::dns_proxy { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { constexpr const char* kResolvedDir = "/etc/systemd/resolved.conf.d"; -constexpr const char* kResolvedConf = "/etc/systemd/resolved.conf.d/vesperos-dns.conf"; +constexpr const char* kResolvedConf = "/etc/systemd/resolved.conf.d/pawletos-dns.conf"; } bool apply(const ParsedPayload& p) { @@ -50,4 +50,4 @@ void revert(const ParsedPayload& /*p*/) { runCmd("systemctl restart systemd-resolved 2>/dev/null"); } -} // namespace vesperos::profile::platform::dns_proxy +} // namespace pawletos::profile::platform::dns_proxy diff --git a/src/platform/linux/Ethernet.cpp b/src/platform/linux/Ethernet.cpp index 08cf8c7..2583ded 100644 --- a/src/platform/linux/Ethernet.cpp +++ b/src/platform/linux/Ethernet.cpp @@ -11,20 +11,20 @@ // Same approach as Wifi — direct keyfile write, no nmcli exec. // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::ethernet { +namespace pawletos::profile::platform::ethernet { -using namespace vesperos::profile::util; -using namespace vesperos::profile::platform::nm; +using namespace pawletos::profile::util; +using namespace pawletos::profile::platform::nm; namespace { std::string keyfilePath(const ParsedPayload& p) { - return std::string(kNMConnDir) + "/vesperos-ethernet-" + p.uuid + ".nmconnection"; + return std::string(kNMConnDir) + "/pawletos-ethernet-" + p.uuid + ".nmconnection"; } } // namespace bool apply(const ParsedPayload& p) { std::string iface = field(p, "interface", ""); - // Translate VesperOS interface names to Linux names. + // Translate PawletOS interface names to Linux names. // Leave blank to let NM pick the first available wired interface. if (iface == "first-active" || iface == "first" || iface == "first-ethernet") iface = ""; @@ -50,7 +50,7 @@ bool apply(const ParsedPayload& p) { serverName = extractJson(eapJson.substr(trustPos), "server-names"); std::string anchorUuid = extractJson(eapJson.substr(trustPos), "anchor-cert-uuids"); if (!anchorUuid.empty()) - caCertPath = "/usr/local/share/ca-certificates/vesperos/" + caCertPath = "/usr/local/share/ca-certificates/pawletos/" + anchorUuid + ".crt"; } @@ -58,7 +58,7 @@ bool apply(const ParsedPayload& p) { std::ostringstream kf; kf << "[connection]\n" - << "id=vesperos-ethernet-" << p.uuid << "\n" + << "id=pawletos-ethernet-" << p.uuid << "\n" << "uuid=" << p.uuid << "\n" << "type=ethernet\n" << "autoconnect=true\n"; @@ -103,4 +103,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_INFO, "[ethernet] removed keyfile uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::ethernet +} // namespace pawletos::profile::platform::ethernet diff --git a/src/platform/linux/Firewall.cpp b/src/platform/linux/Firewall.cpp index af39f7f..36c4399 100644 --- a/src/platform/linux/Firewall.cpp +++ b/src/platform/linux/Firewall.cpp @@ -6,15 +6,15 @@ // ═══════════════════════════════════════════════════════════════════════════ // FIREWALL HANDLER (Linux) -// Writes nftables rules to /etc/nftables.d/vesperos.nft +// Writes nftables rules to /etc/nftables.d/pawletos.nft // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::firewall { +namespace pawletos::profile::platform::firewall { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { -constexpr const char* kNftFile = "/etc/nftables.d/vesperos.nft"; +constexpr const char* kNftFile = "/etc/nftables.d/pawletos.nft"; } bool apply(const ParsedPayload& p) { @@ -26,8 +26,8 @@ bool apply(const ParsedPayload& p) { ensureDir("/etc/nftables.d"); std::ostringstream nft; - nft << "# VesperOS managed firewall — do not edit\n" - << "table inet vesperos_fw {\n" + nft << "# PawletOS managed firewall — do not edit\n" + << "table inet pawletos_fw {\n" << " chain input {\n" << " type filter hook input priority 0; policy " << (blockAll ? "drop" : "accept") << ";\n"; @@ -60,8 +60,8 @@ bool apply(const ParsedPayload& p) { } void revert(const ParsedPayload& /*p*/) { - runCmd("nft delete table inet vesperos_fw 2>/dev/null"); + runCmd("nft delete table inet pawletos_fw 2>/dev/null"); removeFile(kNftFile); } -} // namespace vesperos::profile::platform::firewall +} // namespace pawletos::profile::platform::firewall diff --git a/src/platform/linux/FirstBoot.cpp b/src/platform/linux/FirstBoot.cpp index 041ec8b..dd7bd9b 100644 --- a/src/platform/linux/FirstBoot.cpp +++ b/src/platform/linux/FirstBoot.cpp @@ -11,9 +11,9 @@ // FIRST-BOOT HANDLER (Linux) (renamed from setup-assistant) // // This handler runs BEFORE cloud-init on first boot. The systemd ordering -// in vesperprofiled.service (Before=cloud-init-local.service) ensures that +// in pawletprofiled.service (Before=cloud-init-local.service) ensures that // when a preinstalled profile baked into the image contains a first-boot -// payload, vesperprofiled applies it first so that: +// payload, pawletprofiled applies it first so that: // // 1. The cloud-init drop-in is already on disk when cloud-init starts. // 2. Any WiFi or VPN profile is already written to NM so cloud-init can @@ -22,36 +22,36 @@ // runs, letting the MDM server inject additional cloud-init config. // // What it does: -// - Writes /etc/cloud/cloud.cfg.d/99-vesperos-firstboot.cfg to suppress +// - Writes /etc/cloud/cloud.cfg.d/99-pawletos-firstboot.cfg to suppress // cloud-init wizard modules that are replaced by managed profiles. // - Writes cloud-init's 'disabled' modules list so it skips anything // explicitly listed in the profile's skip array. -// - Suppresses the VesperOS first-boot GNOME Initial Setup wizard +// - Suppresses the PawletOS first-boot GNOME Initial Setup wizard // via a GSettings override and a .done semaphore file. -// - Writes a /etc/vesperprofiled/firstboot.done stamp so subsequent +// - Writes a /etc/pawletprofiled/firstboot.done stamp so subsequent // daemon starts (and cloud-init re-runs) know first-boot is complete. // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::first_boot { +namespace pawletos::profile::platform::first_boot { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { // cloud-init drop-in — written before cloud-init starts -constexpr const char* kCloudInitDrop = "/etc/cloud/cloud.cfg.d/99-vesperos-firstboot.cfg"; +constexpr const char* kCloudInitDrop = "/etc/cloud/cloud.cfg.d/99-pawletos-firstboot.cfg"; // GNOME Initial Setup bypass constexpr const char* kGnomeSetupDone = "/var/lib/gnome-initial-setup/.gnome-initial-setup-done"; // dconf override disabling GNOME Initial Setup on all accounts -constexpr const char* kGnomeDconfOverride = "/etc/dconf/db/local.d/00-vesperos-firstboot"; +constexpr const char* kGnomeDconfOverride = "/etc/dconf/db/local.d/00-pawletos-firstboot"; // Semaphore: written last, after all other drops are in place -constexpr const char* kDoneStamp = "/etc/vesperprofiled/firstboot.done"; +constexpr const char* kDoneStamp = "/etc/pawletprofiled/firstboot.done"; -// Map of VesperOS skip-pane names to cloud-init module names to disable. +// Map of PawletOS skip-pane names to cloud-init module names to disable. // cloud-init reads cloud_final_modules / cloud_config_modules; we inject // a disabled_modules list which cloud-init (>=22.1) honours directly. const std::pair kSkipMap[] = { - // VesperOS pane name → cloud-init module name + // PawletOS pane name → cloud-init module name {"software-update", "package-update-upgrade-install"}, {"location", "ntp"}, {"privacy", "users-groups"}, @@ -80,10 +80,10 @@ bool apply(const ParsedPayload& p) { ensureDir("/etc/cloud/cloud.cfg.d"); std::ostringstream ci; - ci << "# VesperOS first-boot configuration — managed by vesperprofiled\n" + ci << "# PawletOS first-boot configuration — managed by pawletprofiled\n" << "# Applied before cloud-init runs. Do not edit manually.\n" << "#\n" - << "# vesperprofiled has already written all managed network,\n" + << "# pawletprofiled has already written all managed network,\n" << "# certificate, and policy configurations. cloud-init only\n" << "# needs to handle datasource-specific work.\n\n"; @@ -94,7 +94,7 @@ bool apply(const ParsedPayload& p) { << "final_message: \"\"\n\n"; // Don't let cloud-init clobber NM-managed network config - ci << "# Preserve vesperprofiled-managed network settings\n" + ci << "# Preserve pawletprofiled-managed network settings\n" << "network:\n" << " config: disabled\n\n"; @@ -130,7 +130,7 @@ bool apply(const ParsedPayload& p) { // dconf system default: tell gnome-initial-setup it has already run ensureDir("/etc/dconf/db/local.d"); writeFile(kGnomeDconfOverride, - "# VesperOS managed — skip GNOME Initial Setup\n" + "# PawletOS managed — skip GNOME Initial Setup\n" "[org/gnome/initial-setup]\n" "run-on-guest=false\n", 0644); @@ -142,7 +142,7 @@ bool apply(const ParsedPayload& p) { // This is the signal to main.cpp that first-boot profiles have been // fully applied. The stamp is checked on subsequent starts so we // don't re-apply first-boot payloads on every boot. - ensureDir("/etc/vesperprofiled"); + ensureDir("/etc/pawletprofiled"); { std::ofstream f(kDoneStamp); // Write the profile UUID so we know which profile ran @@ -157,10 +157,10 @@ bool apply(const ParsedPayload& p) { void revert(const ParsedPayload& p) { removeFile(kCloudInitDrop); removeFile(kGnomeDconfOverride); - removeFile("/etc/dconf/db/local.d/locks/vesperos-firstboot"); + removeFile("/etc/dconf/db/local.d/locks/pawletos-firstboot"); removeFile(kDoneStamp); runCmd("dconf update 2>/dev/null"); syslog(LOG_INFO, "[first-boot] reverted first-boot config uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::first_boot +} // namespace pawletos::profile::platform::first_boot diff --git a/src/platform/linux/Ldap.cpp b/src/platform/linux/Ldap.cpp index bd5bf7c..ca91e7a 100644 --- a/src/platform/linux/Ldap.cpp +++ b/src/platform/linux/Ldap.cpp @@ -10,9 +10,9 @@ // Also configures libpam-ldapd / nss-ldapd if installed. // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::ldap { +namespace pawletos::profile::platform::ldap { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { constexpr const char* kLdapConf = "/etc/ldap/ldap.conf"; @@ -42,7 +42,7 @@ bool apply(const ParsedPayload& p) { // /etc/ldap/ldap.conf std::ostringstream lc; - lc << "# VesperOS managed\n" + lc << "# PawletOS managed\n" << "URI " << uri << "\n"; if (!base.empty()) lc << "BASE " << base << "\n"; lc << "TLS_CACERT /etc/ssl/certs/ca-certificates.crt\n"; @@ -50,7 +50,7 @@ bool apply(const ParsedPayload& p) { // /etc/nslcd.conf (if nslcd / libnss-ldapd is installed) std::ostringstream nc; - nc << "# VesperOS managed\n" + nc << "# PawletOS managed\n" << "uid nslcd\ngid nslcd\n" << "uri " << uri << "\n"; if (!base.empty()) nc << "base " << base << "\n"; @@ -72,4 +72,4 @@ void revert(const ParsedPayload& /*p*/) { runCmd("systemctl try-restart nslcd 2>/dev/null"); } -} // namespace vesperos::profile::platform::ldap +} // namespace pawletos::profile::platform::ldap diff --git a/src/platform/linux/Mdm.cpp b/src/platform/linux/Mdm.cpp index 1a912ca..1755c4d 100644 --- a/src/platform/linux/Mdm.cpp +++ b/src/platform/linux/Mdm.cpp @@ -8,17 +8,17 @@ // MDM HANDLER (Linux) // Writes a cloud-init user-data drop-in so the MDM server URL and // enrollment state survive reboots and cloud-init re-runs. -// Also writes a vesperos MDM config to /etc/vesperprofiled/mdm.conf -// which the MDM client agent (future VesperOS package) reads. +// Also writes a pawletos MDM config to /etc/pawletprofiled/mdm.conf +// which the MDM client agent (future PawletOS package) reads. // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::mdm { +namespace pawletos::profile::platform::mdm { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { -constexpr const char* kMdmConf = "/etc/vesperprofiled/mdm.conf"; -constexpr const char* kCloudInitDrop = "/etc/cloud/cloud.cfg.d/99-vesperos-mdm.cfg"; +constexpr const char* kMdmConf = "/etc/pawletprofiled/mdm.conf"; +constexpr const char* kCloudInitDrop = "/etc/cloud/cloud.cfg.d/99-pawletos-mdm.cfg"; } bool apply(const ParsedPayload& p) { @@ -29,10 +29,10 @@ bool apply(const ParsedPayload& p) { std::string accessStr = field(p, "access-rights", "0"); int accessRights = std::stoi(accessStr); - // ── /etc/vesperprofiled/mdm.conf ─────────────────────────────── - ensureDir("/etc/vesperprofiled"); + // ── /etc/pawletprofiled/mdm.conf ─────────────────────────────── + ensureDir("/etc/pawletprofiled"); std::ostringstream conf; - conf << "# VesperOS MDM enrollment — managed by vesperprofiled\n" + conf << "# PawletOS MDM enrollment — managed by pawletprofiled\n" << "server_url=" << serverUrl << "\n" << "checkin_url=" << (checkinUrl.empty() ? serverUrl : checkinUrl) << "\n" << "push_topic=" << pushTopic << "\n" @@ -46,14 +46,14 @@ bool apply(const ParsedPayload& p) { // can query via `cloud-init query`. ensureDir("/etc/cloud/cloud.cfg.d"); std::ostringstream ci; - ci << "# VesperOS MDM — generated by vesperprofiled\n" + ci << "# PawletOS MDM — generated by pawletprofiled\n" << "# Do not edit manually.\n" << "system_info:\n" << " default_user:\n" << " lock_passwd: false\n" << "\n" << "# MDM server endpoints\n" - << "vesperos_mdm:\n" + << "pawletos_mdm:\n" << " server_url: " << serverUrl << "\n" << " checkin_url: " << (checkinUrl.empty() ? serverUrl : checkinUrl) << "\n" << " push_topic: " << pushTopic << "\n" @@ -74,4 +74,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_INFO, "[mdm] unenrolled MDM uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::mdm +} // namespace pawletos::profile::platform::mdm diff --git a/src/platform/linux/NetworkManagerUtil.h b/src/platform/linux/NetworkManagerUtil.h index 7193aa3..aede04f 100644 --- a/src/platform/linux/NetworkManagerUtil.h +++ b/src/platform/linux/NetworkManagerUtil.h @@ -9,7 +9,7 @@ #include -namespace vesperos::profile::platform::nm { +namespace pawletos::profile::platform::nm { inline constexpr const char* kNMConnDir = "/etc/NetworkManager/system-connections"; @@ -18,7 +18,7 @@ inline constexpr const char* kNMConnDir = "/etc/NetworkManager/system-connection // If NM is not running yet (early first-boot), this is a no-op; NM picks up // the keyfiles on its own startup. inline void nmReload() { - vesperos::profile::util::runCmd( + pawletos::profile::util::runCmd( "dbus-send --system --print-reply " "--dest=org.freedesktop.NetworkManager " "/org/freedesktop/NetworkManager " @@ -26,4 +26,4 @@ inline void nmReload() { "2>/dev/null || true"); } -} // namespace vesperos::profile::platform::nm +} // namespace pawletos::profile::platform::nm diff --git a/src/platform/linux/Passcode.cpp b/src/platform/linux/Passcode.cpp index ac7fe2d..98fc04b 100644 --- a/src/platform/linux/Passcode.cpp +++ b/src/platform/linux/Passcode.cpp @@ -6,18 +6,18 @@ // ═══════════════════════════════════════════════════════════════════════════ // PASSCODE POLICY HANDLER (Linux) -// Writes /etc/security/pwquality.conf.d/vesperos.conf +// Writes /etc/security/pwquality.conf.d/pawletos.conf // and sets /etc/login.defs values for max age, min age, etc. // Also writes a PAM faillock config for lockout policy. // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::passcode { +namespace pawletos::profile::platform::passcode { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { constexpr const char* kPwqualityDir = "/etc/security/pwquality.conf.d"; -constexpr const char* kFaillockConf = "/etc/security/faillock.conf.d/vesperos.conf"; +constexpr const char* kFaillockConf = "/etc/security/faillock.conf.d/pawletos.conf"; } bool apply(const ParsedPayload& p) { @@ -33,14 +33,14 @@ bool apply(const ParsedPayload& p) { // ── pam_pwquality ────────────────────────────────────────────── ensureDir(kPwqualityDir); std::ostringstream pq; - pq << "# Managed by vesperprofiled — do not edit manually\n"; + pq << "# Managed by pawletprofiled — do not edit manually\n"; pq << "minlen = " << minLen << "\n"; if (minComplex > 0) pq << "minclass = " << minComplex << "\n"; if (reqAlpha) pq << "dcredit = -1\n" << "ucredit = -1\n"; if (!allowSimp) pq << "maxrepeat = 2\nmaxsequence = 2\n"; if (history > 0) pq << "# remember=" << history << " set in /etc/pam.d/common-password\n"; - writeFile(std::string(kPwqualityDir) + "/vesperos.conf", pq.str()); + writeFile(std::string(kPwqualityDir) + "/pawletos.conf", pq.str()); // ── /etc/login.defs overrides via conf.d drop-in ─────────────── // Debian reads /etc/login.defs directly; we append a comment-marked @@ -48,16 +48,16 @@ bool apply(const ParsedPayload& p) { // dedicated management file; here we write a separate snippet // that a PAM module or login wrapper can source. std::ostringstream ld; - ld << "# vesperprofiled managed\n"; + ld << "# pawletprofiled managed\n"; if (maxAge > 0) ld << "PASS_MAX_DAYS\t" << maxAge << "\n"; if (history > 0) ld << "# PASS_REUSE_LIMIT=" << history << "\n"; - writeFile("/etc/vesperprofiled/login.defs.snippet", ld.str()); + writeFile("/etc/pawletprofiled/login.defs.snippet", ld.str()); // ── pam_faillock ─────────────────────────────────────────────── if (maxFailed > 0) { ensureDir("/etc/security/faillock.conf.d"); std::ostringstream fl; - fl << "# Managed by vesperprofiled\n" + fl << "# Managed by pawletprofiled\n" << "deny = " << maxFailed << "\n"; if (inactivity > 0) fl << "unlock_time = " << (inactivity * 60) << "\n"; @@ -69,10 +69,10 @@ bool apply(const ParsedPayload& p) { } void revert(const ParsedPayload& /*p*/) { - removeFile(std::string(kPwqualityDir) + "/vesperos.conf"); + removeFile(std::string(kPwqualityDir) + "/pawletos.conf"); removeFile(kFaillockConf); - removeFile("/etc/vesperprofiled/login.defs.snippet"); + removeFile("/etc/pawletprofiled/login.defs.snippet"); syslog(LOG_INFO, "[passcode] reverted password policy"); } -} // namespace vesperos::profile::platform::passcode +} // namespace pawletos::profile::platform::passcode diff --git a/src/platform/linux/Pkcs12.cpp b/src/platform/linux/Pkcs12.cpp index 6b8baf1..4376c4a 100644 --- a/src/platform/linux/Pkcs12.cpp +++ b/src/platform/linux/Pkcs12.cpp @@ -7,17 +7,17 @@ // ═══════════════════════════════════════════════════════════════════════════ // PKCS#12 HANDLER (Linux) -// Identity cert + key → /etc/ssl/private/vesperos/ +// Identity cert + key → /etc/ssl/private/pawletos/ // Also imports into the system NSS DB (shared NSSDB at /etc/pki/nssdb) // via certutil/pk12util if available. // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::pkcs12 { +namespace pawletos::profile::platform::pkcs12 { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { -constexpr const char* kKeyDir = "/etc/ssl/private/vesperos"; +constexpr const char* kKeyDir = "/etc/ssl/private/pawletos"; } bool apply(const ParsedPayload& p) { @@ -50,4 +50,4 @@ void revert(const ParsedPayload& p) { // Remove from NSSDB — we'd need to track the cert nickname; skip for now. } -} // namespace vesperos::profile::platform::pkcs12 +} // namespace pawletos::profile::platform::pkcs12 diff --git a/src/platform/linux/Proxy.cpp b/src/platform/linux/Proxy.cpp index ee3fe58..7f2b565 100644 --- a/src/platform/linux/Proxy.cpp +++ b/src/platform/linux/Proxy.cpp @@ -7,17 +7,17 @@ // ═══════════════════════════════════════════════════════════════════════════ // GLOBAL HTTP PROXY HANDLER (Linux) // Writes /etc/environment proxy vars and -// /etc/apt/apt.conf.d/99-vesperos-proxy -// /etc/profile.d/vesperos-proxy.sh +// /etc/apt/apt.conf.d/99-pawletos-proxy +// /etc/profile.d/pawletos-proxy.sh // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::proxy { +namespace pawletos::profile::platform::proxy { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { -constexpr const char* kAptProxy = "/etc/apt/apt.conf.d/99-vesperos-proxy"; -constexpr const char* kProfileProxy = "/etc/profile.d/vesperos-proxy.sh"; +constexpr const char* kAptProxy = "/etc/apt/apt.conf.d/99-pawletos-proxy"; +constexpr const char* kProfileProxy = "/etc/profile.d/pawletos-proxy.sh"; } bool apply(const ParsedPayload& p) { @@ -47,9 +47,9 @@ bool apply(const ParsedPayload& p) { std::string auth = user.empty() ? "" : (user + ":" + pass + "@"); std::string proxyUrl = "http://" + auth + host + ":" + port; - // /etc/profile.d/vesperos-proxy.sh — sets env vars for all users + // /etc/profile.d/pawletos-proxy.sh — sets env vars for all users std::ostringstream sh; - sh << "# VesperOS managed proxy\n" + sh << "# PawletOS managed proxy\n" << "export http_proxy=" << proxyUrl << "\n" << "export https_proxy=" << proxyUrl << "\n" << "export HTTP_PROXY=" << proxyUrl << "\n" @@ -59,7 +59,7 @@ bool apply(const ParsedPayload& p) { // apt proxy std::ostringstream apt; - apt << "// VesperOS managed\n" + apt << "// PawletOS managed\n" << "Acquire::http::Proxy \"" << proxyUrl << "\";\n" << "Acquire::https::Proxy \"" << proxyUrl << "\";\n"; writeFile(kAptProxy, apt.str()); @@ -71,7 +71,7 @@ bool apply(const ParsedPayload& p) { << "[main]\n" << "proxy=http\n" << "proxy-url=" << proxyUrl << "\n"; - writeFile("/etc/NetworkManager/conf.d/vesperos-proxy.conf", nmConf.str()); + writeFile("/etc/NetworkManager/conf.d/pawletos-proxy.conf", nmConf.str()); runCmd("nmcli general reload 2>/dev/null"); } else { // PAC auto-proxy — write to NM and GNOME @@ -79,7 +79,7 @@ bool apply(const ParsedPayload& p) { if (!pacUrl.empty()) { std::ostringstream nmConf; nmConf << "[main]\nproxy=auto\nproxy-url=" << pacUrl << "\n"; - writeFile("/etc/NetworkManager/conf.d/vesperos-proxy.conf", nmConf.str()); + writeFile("/etc/NetworkManager/conf.d/pawletos-proxy.conf", nmConf.str()); runCmd("nmcli general reload 2>/dev/null"); } } @@ -91,8 +91,8 @@ bool apply(const ParsedPayload& p) { void revert(const ParsedPayload& /*p*/) { removeFile(kAptProxy); removeFile(kProfileProxy); - removeFile("/etc/NetworkManager/conf.d/vesperos-proxy.conf"); + removeFile("/etc/NetworkManager/conf.d/pawletos-proxy.conf"); runCmd("nmcli general reload 2>/dev/null"); } -} // namespace vesperos::profile::platform::proxy +} // namespace pawletos::profile::platform::proxy diff --git a/src/platform/linux/Screensaver.cpp b/src/platform/linux/Screensaver.cpp index d39b687..91d93f7 100644 --- a/src/platform/linux/Screensaver.cpp +++ b/src/platform/linux/Screensaver.cpp @@ -9,12 +9,12 @@ // Configures GNOME screensaver/lock via dconf system profile. // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::screensaver { +namespace pawletos::profile::platform::screensaver { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { -constexpr const char* kDconfFile = "/etc/dconf/db/local.d/00-vesperos-screensaver"; +constexpr const char* kDconfFile = "/etc/dconf/db/local.d/00-pawletos-screensaver"; } bool apply(const ParsedPayload& p) { @@ -32,7 +32,7 @@ bool apply(const ParsedPayload& p) { if (locked) { ensureDir("/etc/dconf/db/local.d/locks"); - writeFile("/etc/dconf/db/local.d/locks/vesperos-screensaver", + writeFile("/etc/dconf/db/local.d/locks/pawletos-screensaver", "/org/gnome/desktop/session/idle-delay\n" "/org/gnome/desktop/screensaver/lock-enabled\n"); } @@ -44,8 +44,8 @@ bool apply(const ParsedPayload& p) { void revert(const ParsedPayload& /*p*/) { removeFile(kDconfFile); - removeFile("/etc/dconf/db/local.d/locks/vesperos-screensaver"); + removeFile("/etc/dconf/db/local.d/locks/pawletos-screensaver"); runCmd("dconf update 2>/dev/null"); } -} // namespace vesperos::profile::platform::screensaver +} // namespace pawletos::profile::platform::screensaver diff --git a/src/platform/linux/SoftwareUpdate.cpp b/src/platform/linux/SoftwareUpdate.cpp index 1b152f2..aa124ff 100644 --- a/src/platform/linux/SoftwareUpdate.cpp +++ b/src/platform/linux/SoftwareUpdate.cpp @@ -6,17 +6,17 @@ // ═══════════════════════════════════════════════════════════════════════════ // SOFTWARE UPDATE HANDLER (Linux) -// Writes /etc/apt/apt.conf.d/99-vesperos for update settings. +// Writes /etc/apt/apt.conf.d/99-pawletos for update settings. // Sets up unattended-upgrades for automatic updates. // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::software_update { +namespace pawletos::profile::platform::software_update { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { -constexpr const char* kAptConf = "/etc/apt/apt.conf.d/99-vesperos-update"; -constexpr const char* kUnattendedConf = "/etc/apt/apt.conf.d/51-vesperos-unattended"; +constexpr const char* kAptConf = "/etc/apt/apt.conf.d/99-pawletos-update"; +constexpr const char* kUnattendedConf = "/etc/apt/apt.conf.d/51-pawletos-unattended"; } bool apply(const ParsedPayload& p) { @@ -43,7 +43,7 @@ bool apply(const ParsedPayload& p) { // ── apt.conf.d drop-in ───────────────────────────────────────── std::ostringstream apt; - apt << "// VesperOS managed — do not edit\n" + apt << "// PawletOS managed — do not edit\n" << "APT::Periodic::Update-Package-Lists \"" << (autoCheck ? "1" : "0") << "\";\n" << "APT::Periodic::Download-Upgradeable-Packages \"" @@ -55,7 +55,7 @@ bool apply(const ParsedPayload& p) { // ── unattended-upgrades deferral ─────────────────────────────── if (osDeferDays > 0) { std::ostringstream ua; - ua << "// VesperOS managed\n" + ua << "// PawletOS managed\n" << "Unattended-Upgrade::MinimalSteps \"true\";\n" << "Unattended-Upgrade::InstallOnShutdown \"false\";\n"; // Delay upgrades by pinning to a date offset @@ -73,4 +73,4 @@ void revert(const ParsedPayload& /*p*/) { removeFile(kUnattendedConf); } -} // namespace vesperos::profile::platform::software_update +} // namespace pawletos::profile::platform::software_update diff --git a/src/platform/linux/TimeServer.cpp b/src/platform/linux/TimeServer.cpp index 58117f5..b4c48a1 100644 --- a/src/platform/linux/TimeServer.cpp +++ b/src/platform/linux/TimeServer.cpp @@ -6,16 +6,16 @@ // ═══════════════════════════════════════════════════════════════════════════ // TIME SERVER HANDLER (Linux) -// Writes /etc/systemd/timesyncd.conf.d/vesperos.conf +// Writes /etc/systemd/timesyncd.conf.d/pawletos.conf // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::time_server { +namespace pawletos::profile::platform::time_server { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { constexpr const char* kTimesyncDir = "/etc/systemd/timesyncd.conf.d"; -constexpr const char* kTimesyncConf = "/etc/systemd/timesyncd.conf.d/vesperos.conf"; +constexpr const char* kTimesyncConf = "/etc/systemd/timesyncd.conf.d/pawletos.conf"; } bool apply(const ParsedPayload& p) { @@ -39,4 +39,4 @@ void revert(const ParsedPayload& /*p*/) { runCmd("systemctl restart systemd-timesyncd 2>/dev/null"); } -} // namespace vesperos::profile::platform::time_server +} // namespace pawletos::profile::platform::time_server diff --git a/src/platform/linux/Vpn.cpp b/src/platform/linux/Vpn.cpp index a15bbe5..2c13a1a 100644 --- a/src/platform/linux/Vpn.cpp +++ b/src/platform/linux/Vpn.cpp @@ -11,9 +11,9 @@ // Custom → write OpenVPN .ovpn or WireGuard .conf // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::vpn { +namespace pawletos::profile::platform::vpn { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { @@ -95,8 +95,8 @@ bool applyCustom(const ParsedPayload& p, const std::string& /*connId*/) { } // namespace bool apply(const ParsedPayload& p) { - std::string displayName = field(p, "display-name", "VesperOS VPN"); - std::string connId = "vesperos-vpn-" + p.uuid; + std::string displayName = field(p, "display-name", "PawletOS VPN"); + std::string connId = "pawletos-vpn-" + p.uuid; bool hasIkev2 = p.fields.count("ikev2"); bool hasL2tp = p.fields.count("l2tp"); @@ -111,10 +111,10 @@ bool apply(const ParsedPayload& p) { } void revert(const ParsedPayload& p) { - std::string connId = "vesperos-vpn-" + p.uuid; + std::string connId = "pawletos-vpn-" + p.uuid; runCmd("nmcli connection delete id '" + connId + "' 2>/dev/null"); removeFile("/etc/NetworkManager/system-connections/" + connId + ".nmconnection"); - removeFile("/etc/wireguard/vesperos-" + p.uuid + ".conf"); + removeFile("/etc/wireguard/pawletos-" + p.uuid + ".conf"); } -} // namespace vesperos::profile::platform::vpn +} // namespace pawletos::profile::platform::vpn diff --git a/src/platform/linux/Wallpaper.cpp b/src/platform/linux/Wallpaper.cpp index 05d7e83..61556ef 100644 --- a/src/platform/linux/Wallpaper.cpp +++ b/src/platform/linux/Wallpaper.cpp @@ -9,13 +9,13 @@ // Sets GNOME wallpaper via gsettings (runs as root → sets system default). // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::wallpaper { +namespace pawletos::profile::platform::wallpaper { -using namespace vesperos::profile::util; +using namespace pawletos::profile::util; namespace { -constexpr const char* kGdmDefaults = "/etc/dconf/db/local.d/00-vesperos-wallpaper"; -constexpr const char* kGdmLock = "/etc/dconf/db/local.d/locks/vesperos-wallpaper"; +constexpr const char* kGdmDefaults = "/etc/dconf/db/local.d/00-pawletos-wallpaper"; +constexpr const char* kGdmLock = "/etc/dconf/db/local.d/locks/pawletos-wallpaper"; } bool apply(const ParsedPayload& p) { @@ -67,4 +67,4 @@ void revert(const ParsedPayload& /*p*/) { runCmd("dconf update 2>/dev/null"); } -} // namespace vesperos::profile::platform::wallpaper +} // namespace pawletos::profile::platform::wallpaper diff --git a/src/platform/linux/Wifi.cpp b/src/platform/linux/Wifi.cpp index 4d2acea..40b590c 100644 --- a/src/platform/linux/Wifi.cpp +++ b/src/platform/linux/Wifi.cpp @@ -8,7 +8,7 @@ // ═══════════════════════════════════════════════════════════════════════════ // WIFI HANDLER (Linux) // Writes a NetworkManager keyfile to -// /etc/NetworkManager/system-connections/vesperos-wifi-.nmconnection +// /etc/NetworkManager/system-connections/pawletos-wifi-.nmconnection // // Why keyfiles instead of nmcli exec: // - No subprocess / shell injection risk from SSIDs or passwords that @@ -22,14 +22,14 @@ // - Consistent with EthernetHandler — one code path, one format. // ═══════════════════════════════════════════════════════════════════════════ -namespace vesperos::profile::platform::wifi { +namespace pawletos::profile::platform::wifi { -using namespace vesperos::profile::util; -using namespace vesperos::profile::platform::nm; +using namespace pawletos::profile::util; +using namespace pawletos::profile::platform::nm; namespace { std::string keyfilePath(const ParsedPayload& p) { - return std::string(kNMConnDir) + "/vesperos-wifi-" + p.uuid + ".nmconnection"; + return std::string(kNMConnDir) + "/pawletos-wifi-" + p.uuid + ".nmconnection"; } } // namespace @@ -91,7 +91,7 @@ bool apply(const ParsedPayload& p) { // [connection] kf << "[connection]\n" - << "id=vesperos-wifi-" << ssid << "\n" + << "id=pawletos-wifi-" << ssid << "\n" << "uuid=" << p.uuid << "\n" << "type=wifi\n" << "autoconnect=" << (autoJoin ? "true" : "false") << "\n\n"; @@ -136,7 +136,7 @@ bool apply(const ParsedPayload& p) { if (!anchorUuid.empty()) // NM references a cert stored in the system keyring by uuid-hash; // for simplicity write the path if the CertHandler already wrote it. - kf << "# ca-cert=/usr/local/share/ca-certificates/vesperos/" + kf << "# ca-cert=/usr/local/share/ca-certificates/pawletos/" << anchorUuid << ".crt\n"; kf << "\n"; } @@ -174,4 +174,4 @@ void revert(const ParsedPayload& p) { syslog(LOG_INFO, "[wifi] removed keyfile uuid=%s", p.uuid.c_str()); } -} // namespace vesperos::profile::platform::wifi +} // namespace pawletos::profile::platform::wifi diff --git a/src/zte/ConnectivityWatcher.cpp b/src/zte/ConnectivityWatcher.cpp index 8f7a2ba..88d81c5 100644 --- a/src/zte/ConnectivityWatcher.cpp +++ b/src/zte/ConnectivityWatcher.cpp @@ -4,7 +4,7 @@ #include #include -namespace vesperos::zte { +namespace pawletos::zte { // NM connectivity states static constexpr uint32_t NM_STATE_CONNECTED_GLOBAL = 70; @@ -218,8 +218,8 @@ void ConnectivityWatcher::attemptEnrollment() { switch (result) { case EnrollmentState::ENROLLED: syslog(LOG_INFO, "[ZTE watcher] enrollment complete"); - // The profile is now installed in vesperprofiled. - // No further action needed — vesperprofiled applied all payloads. + // The profile is now installed in pawletprofiled. + // No further action needed — pawletprofiled applied all payloads. break; case EnrollmentState::NOT_MANAGED: @@ -242,4 +242,4 @@ void ConnectivityWatcher::attemptEnrollment() { } } -} // namespace vesperos::zte +} // namespace pawletos::zte diff --git a/src/zte/ConnectivityWatcher.h b/src/zte/ConnectivityWatcher.h index 10f78a5..b80de5d 100644 --- a/src/zte/ConnectivityWatcher.h +++ b/src/zte/ConnectivityWatcher.h @@ -7,7 +7,7 @@ #include #include -namespace vesperos::zte { +namespace pawletos::zte { // ── ConnectivityWatcher ─────────────────────────────────────────────────── // Subscribes to NetworkManager's StateChanged signal on the system D-Bus. @@ -53,4 +53,4 @@ private: bool mIdentityCollected = false; }; -} // namespace vesperos::zte +} // namespace pawletos::zte diff --git a/src/zte/DeviceIdentity.cpp b/src/zte/DeviceIdentity.cpp index aa99732..1cdffe1 100644 --- a/src/zte/DeviceIdentity.cpp +++ b/src/zte/DeviceIdentity.cpp @@ -17,7 +17,7 @@ #include #include -namespace vesperos::zte { +namespace pawletos::zte { // ── File reader ─────────────────────────────────────────────────────────── @@ -247,4 +247,4 @@ bool DeviceIdentityCollector::collect(DeviceIdentity& out) { return true; } -} // namespace vesperos::zte +} // namespace pawletos::zte diff --git a/src/zte/DeviceIdentity.h b/src/zte/DeviceIdentity.h index 62994fa..2dce3ba 100644 --- a/src/zte/DeviceIdentity.h +++ b/src/zte/DeviceIdentity.h @@ -3,7 +3,7 @@ #include #include -namespace vesperos::zte { +namespace pawletos::zte { // ── DeviceIdentity ──────────────────────────────────────────────────────── // Collects every stable hardware identifier available on the device. @@ -78,4 +78,4 @@ private: static bool looksVirtual(const DeviceIdentity& id); }; -} // namespace vesperos::zte +} // namespace pawletos::zte diff --git a/src/zte/ZTELookupClient.cpp b/src/zte/ZTELookupClient.cpp index 222a37d..a304853 100644 --- a/src/zte/ZTELookupClient.cpp +++ b/src/zte/ZTELookupClient.cpp @@ -14,7 +14,7 @@ #include #include -namespace vesperos::zte { +namespace pawletos::zte { // ── curl write callbacks ────────────────────────────────────────────────── @@ -59,7 +59,7 @@ std::string ZTELookupClient::buildLookupRequest(const DeviceIdentity& id) { std::ostringstream j; j << "{\n" - << " \"protocol\": \"vesper-zte/1\",\n" + << " \"protocol\": \"pawlet-zte/1\",\n" << " \"identity\": {\n" << " \"primarySerial\": \"" << esc(id.primarySerial) << "\",\n" << " \"hardwareFingerprint\": \"" << esc(id.hardwareFingerprint) << "\",\n" @@ -138,7 +138,7 @@ bool ZTELookupClient::httpPost(const std::string& url, const std::string& body, struct curl_slist* headers = nullptr; headers = curl_slist_append(headers, "Content-Type: application/json"); headers = curl_slist_append(headers, "Accept: application/json"); - headers = curl_slist_append(headers, "User-Agent: VesperOS-ZTE/1.0"); + headers = curl_slist_append(headers, "User-Agent: PawletOS-ZTE/1.0"); curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); curl_easy_setopt(curl, CURLOPT_POSTFIELDS, body.c_str()); @@ -175,8 +175,8 @@ bool ZTELookupClient::httpDownload(const std::string& url, struct curl_slist* headers = nullptr; headers = curl_slist_append(headers, - "Accept: application/x-vesperos-profile, application/pkcs7-mime"); - headers = curl_slist_append(headers, "User-Agent: VesperOS-ZTE/1.0"); + "Accept: application/x-pawletos-profile, application/pkcs7-mime"); + headers = curl_slist_append(headers, "User-Agent: PawletOS-ZTE/1.0"); curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); @@ -228,9 +228,9 @@ bool ZTELookupClient::installViaDbus(const std::vector& profileData, } DBusMessage* msg = dbus_message_new_method_call( - "me.oxmc.vesperos.ProfileService", - "/me/oxmc/vesperos/ProfileService", - "me.oxmc.vesperos.IProfileService", + "os.pawlet.ProfiledService", + "/os/pawlet/ProfiledService", + "os.pawlet.IProfiledService", "InstallProfile"); if (!msg) { dbus_connection_unref(conn); return false; } @@ -299,7 +299,7 @@ bool ZTELookupClient::downloadAndInstall(const EnrollmentRecord& record) { std::vector data; if (!httpDownload(record.profileUrl, data)) return false; - // Quick UUID sanity check before handing to vesperprofiled + // Quick UUID sanity check before handing to pawletprofiled if (!record.profileUuid.empty()) { std::string s(data.begin(), data.end()); if (s.find(record.profileUuid) == std::string::npos) { @@ -378,7 +378,7 @@ void ZTELookupClient::saveState(EnrollmentState state, const std::string& uuid) } std::string ZTELookupClient::loadConfiguredServerUrl() { - std::ifstream f("/etc/vesperprofiled/zte.conf"); + std::ifstream f("/etc/pawletprofiled/zte.conf"); if (!f) return kDefaultServerUrl; std::string line; while (std::getline(f, line)) { @@ -390,4 +390,4 @@ std::string ZTELookupClient::loadConfiguredServerUrl() { return kDefaultServerUrl; } -} // namespace vesperos::zte +} // namespace pawletos::zte diff --git a/src/zte/ZTELookupClient.h b/src/zte/ZTELookupClient.h index 4841bc8..b9bc8d9 100644 --- a/src/zte/ZTELookupClient.h +++ b/src/zte/ZTELookupClient.h @@ -7,7 +7,7 @@ #include #include -namespace vesperos::zte { +namespace pawletos::zte { // ── Enrollment state ────────────────────────────────────────────────────── @@ -15,7 +15,7 @@ enum class EnrollmentState { UNKNOWN, // Not yet checked NOT_MANAGED, // Server confirmed: this device is not in any MDM record PENDING, // Device is registered but enrollment profile not ready yet - ENROLLED, // vesperprofiled has installed the MDM profile successfully + ENROLLED, // pawletprofiled has installed the MDM profile successfully ENROLL_FAILED, // Download or install failed (will retry) DISABLED, // ZTE disabled locally (e.g. user opted out in installer) }; @@ -35,18 +35,18 @@ struct EnrollmentRecord { class ZTELookupClient { public: - // ZTE server base URL. Overridable via /etc/vesperprofiled/zte.conf. + // ZTE server base URL. Overridable via /etc/pawletprofiled/zte.conf. // Default points to oxmc's hosted ZTE server; organisations self-host this. static constexpr const char* kDefaultServerUrl = - "https://zte.vesperos.oxmc.me"; + "https://zte.pawletos.oxmc.me"; // Local state file — persists enrollment state across reboots. static constexpr const char* kStateFile = - "/var/lib/vesperprofiled/zte_state.json"; + "/var/lib/pawletprofiled/zte_state.json"; // Lock file — prevents concurrent enrollment attempts. static constexpr const char* kLockFile = - "/run/vesperprofiled/zte.lock"; + "/run/pawletprofiled/zte.lock"; explicit ZTELookupClient(const std::string& serverUrl = kDefaultServerUrl); ~ZTELookupClient(); @@ -60,7 +60,7 @@ public: // Step 2: Download the enrollment profile from record.profileUrl. // Verifies the TLS chain, checks the downloaded profile's UUID matches, - // then hands it to vesperprofiled via D-Bus InstallProfile. + // then hands it to pawletprofiled via D-Bus InstallProfile. // Returns true if the profile was downloaded and installed successfully. bool downloadAndInstall(const EnrollmentRecord& record); @@ -75,7 +75,7 @@ public: // ── Configuration ───────────────────────────────────────────────────── - // Load ZTE server URL from /etc/vesperprofiled/zte.conf if present. + // Load ZTE server URL from /etc/pawletprofiled/zte.conf if present. static std::string loadConfiguredServerUrl(); private: @@ -92,7 +92,7 @@ private: bool httpDownload(const std::string& url, std::vector& bytesOut); - // Install the profile bytes via vesperprofiled D-Bus. + // Install the profile bytes via pawletprofiled D-Bus. bool installViaDbus(const std::vector& profileData, std::string& uuidOut); @@ -103,4 +103,4 @@ private: bool parseLookupResponse(const std::string& json, EnrollmentRecord& record); }; -} // namespace vesperos::zte +} // namespace pawletos::zte diff --git a/systemd/vesperprofiled.service b/systemd/pawletprofiled.service similarity index 79% rename from systemd/vesperprofiled.service rename to systemd/pawletprofiled.service index 3be8cd3..4b9c2f0 100644 --- a/systemd/vesperprofiled.service +++ b/systemd/pawletprofiled.service @@ -1,6 +1,6 @@ [Unit] -Description=VesperOS Profile Daemon (profiles + Zero-Touch Enrollment) -Documentation=https://vesperos.oxmc.me/docs/vesperprofiled +Description=PawletOS Profile Daemon (profiles + Zero-Touch Enrollment) +Documentation=https://pawletos.oxmc.me/docs/pawletprofiled # Must run before cloud-init so preinstalled profiles (WiFi, MDM drop-ins, # first-boot config) are on disk when cloud-init starts. @@ -17,7 +17,7 @@ Wants=NetworkManager.service Type=notify NotifyAccess=main -ExecStart=/usr/sbin/vesperprofiled +ExecStart=/usr/sbin/pawletprofiled ExecReload=/bin/kill -HUP $MAINPID User=root @@ -28,13 +28,13 @@ Restart=on-failure RestartSec=5s TimeoutStartSec=60 -RuntimeDirectory=vesperprofiled +RuntimeDirectory=pawletprofiled RuntimeDirectoryMode=0750 -StateDirectory=vesperprofiled +StateDirectory=pawletprofiled StateDirectoryMode=0700 # Writable paths — profile daemon writes config drops, ZTE writes state -ReadWritePaths=/etc /var/lib/vesperprofiled /run/vesperprofiled \ +ReadWritePaths=/etc /var/lib/pawletprofiled /run/pawletprofiled \ /var/lib/gnome-initial-setup SystemCallFilter=@system-service @file-system @network-io @process @@ -48,7 +48,7 @@ ProtectControlGroups=true StandardOutput=journal StandardError=journal -SyslogIdentifier=vesperprofiled +SyslogIdentifier=pawletprofiled [Install] WantedBy=multi-user.target diff --git a/third_party/openssl-android/Android.bp b/third_party/openssl-android/Android.bp index a10bdfb..c2ee0b8 100644 --- a/third_party/openssl-android/Android.bp +++ b/third_party/openssl-android/Android.bp @@ -1,11 +1,11 @@ // -// Vendored, statically-linked real OpenSSL — vesperprofiled's Android build +// Vendored, statically-linked real OpenSSL — pawletprofiled's Android build // only, nothing else on the system links against these. See README.md for // why (BoringSSL has no CMS support) and how to populate lib/*/*.a. // cc_prebuilt_library_static { - name: "libcrypto_vesper_static", + name: "libcrypto_pawlet_static", arch: { arm64: { srcs: ["lib/arm64-v8a/libcrypto.a"] }, arm: { srcs: ["lib/armeabi-v7a/libcrypto.a"] }, @@ -17,7 +17,7 @@ cc_prebuilt_library_static { } cc_prebuilt_library_static { - name: "libssl_vesper_static", + name: "libssl_pawlet_static", arch: { arm64: { srcs: ["lib/arm64-v8a/libssl.a"] }, arm: { srcs: ["lib/armeabi-v7a/libssl.a"] }, @@ -28,5 +28,5 @@ cc_prebuilt_library_static { strip: { none: true }, // libssl depends on libcrypto symbols; Soong needs this to order the // static link correctly. - whole_static_libs: ["libcrypto_vesper_static"], + whole_static_libs: ["libcrypto_pawlet_static"], } diff --git a/third_party/openssl-android/README.md b/third_party/openssl-android/README.md index e6c1e8d..814f54a 100644 --- a/third_party/openssl-android/README.md +++ b/third_party/openssl-android/README.md @@ -1,16 +1,16 @@ -# Vendored OpenSSL (Android, static, vesperprofiled-only) +# Vendored OpenSSL (Android, static, pawletprofiled-only) AOSP's system `libcrypto`/`libssl` is BoringSSL, which has no CMS/PKCS#7 support. Rather than touch the platform's crypto stack (used by Keystore, the TLS stack, other HALs — swapping it breaks far more than it fixes), -vesperprofiled statically links its **own** copy of real OpenSSL, scoped to +pawletprofiled statically links its **own** copy of real OpenSSL, scoped to just this one binary. Nothing else on the system links against it or even knows it's there. This directory holds the prebuilt static libs + headers and the Soong modules that expose them. **The `lib/*/` and `include/` directories are empty placeholders** — populate them by cross-compiling OpenSSL yourself -(steps below) before `m vesperprofiled` will link on Android. Nothing here +(steps below) before `m pawletprofiled` will link on Android. Nothing here fabricates or ships a prebuilt binary sight-unseen. --- @@ -67,10 +67,10 @@ third_party/openssl-android/ └── x86/{libcrypto,libssl}.a ``` -Once populated, `m vesperprofiled` picks these up via `Android.bp` in this -directory — see `libcrypto_vesper_static` / `libssl_vesper_static` / -`vesperprofiled_openssl_headers`, referenced from -`vesperprofiled/Android.bp`'s Android `static_libs`. +Once populated, `m pawletprofiled` picks these up via `Android.bp` in this +directory — see `libcrypto_pawlet_static` / `libssl_pawlet_static` / +`pawletprofiled_openssl_headers`, referenced from +`pawletprofiled/Android.bp`'s Android `static_libs`. ## Updating diff --git a/zte.conf.example b/zte.conf.example index 9b4bc47..20b8b97 100644 --- a/zte.conf.example +++ b/zte.conf.example @@ -1,19 +1,19 @@ -# /etc/vesperprofiled/zte.conf -# VesperOS Zero-Touch Enrollment configuration +# /etc/pawletprofiled/zte.conf +# PawletOS Zero-Touch Enrollment configuration # ───────────────────────────────────────────────────────────────────────── -# This file is read by vesper-zte on startup. +# This file is read by pawlet-zte on startup. # Lines beginning with # are comments. # All settings are optional — defaults are shown. # ZTE lookup server URL. -# Default: https://zte.vesperos.oxmc.me (oxmc hosted, public) +# Default: https://zte.pawletos.oxmc.me (oxmc hosted, public) # Set this to your own server for self-hosted ZTE. # -# server_url=https://zte.vesperos.oxmc.me +# server_url=https://zte.pawletos.oxmc.me # Disable ZTE entirely on this device. # Set to "1" to prevent automatic enrollment. -# Can also be set by writing "disabled" to /var/lib/vesperprofiled/zte_state.json +# Can also be set by writing "disabled" to /var/lib/pawletprofiled/zte_state.json # # disabled=0