pentoo-updater: mount boot a little earlier

also throw some random debugging into srsran while trying to fix bugs
This commit is contained in:
Rick Farina (Zero_Chaos) 2022-05-09 12:17:15 -04:00
parent 292b5c554b
commit f4c1488d11
No known key found for this signature in database
GPG key ID: A29433C0AA431DDC
2 changed files with 6 additions and 1 deletions

View file

@ -50,6 +50,8 @@ BDEPEND="virtual/pkgconfig"
src_prepare() {
sed -i '/ -Werror"/d' CMakeLists.txt || die
unset CFLAGS
unset CXXFLAGS
cmake_src_prepare
}
@ -69,5 +71,8 @@ src_configure() {
-DENABLE_ZEROMQ="$(usex zeromq)"
-DENABLE_HARDSIM="$(usex simcard)"
)
unset CFLAGS
unset CXXFLAGS
cmake_src_configure
sed -i 's/-Os -march=native -mtune=native -pipe -frecord-gcc-switches//g' "${BUILD_DIR}/gentoo_rules.cmake" || die
}

View file

@ -632,9 +632,9 @@ umount_boot() {
}
#execution begins here
mount_boot
main_checks
mount_boot
if [ -z "${KERNEL_ONLY}" ]; then
main_upgrades
else