Hi,
"Douglas, William" <william.douglas(a)intel.com> writes:
> On Thu, Oct 31, 2019 at 3:29 PM Leandro Dorileo
> <leandro.maciel.dorileo(a)intel.com> wrote:
>>
>>
>> Hi,
>>
>> "Douglas, William" <william.douglas(a)intel.com> writes:
>>
>> > Ah I'm actually more inclined to remove it from the distro entirely.
>> > syslinux should be able to support any of the cases that grub does.
>>
>> Actually not. What about xsf /boot? or other filesystems?
>
> syslinux works with xfs:
> https://wiki.syslinux.org/wiki/index.php?title=Filesystem.
Nice, in that case we need to add required bits to clr-boot-manager though.
--
Dorileo
Hi,
"Douglas, William" <william.douglas(a)intel.com> writes:
> Ah I'm actually more inclined to remove it from the distro entirely.
> syslinux should be able to support any of the cases that grub does.
Actually not. What about xsf /boot? or other filesystems?
--
Dorileo
>
> On Thu, Oct 31, 2019 at 1:34 PM Leandro Dorileo
> <leandro.maciel.dorileo(a)intel.com> wrote:
>>
>>
>> +1
>>
>> Just a side note, we might want to have grub added to some other bundle
>> (bootloader?) in order to support file systems other than ext* and vfat.
>>
>> --
>> Dorileo
>>
>> William Douglas <william.douglas(a)intel.com> writes:
>>
>> > grub hasn't for some time been the supported method for pxeboot on
>> > Clear Linux so elimate it from the bundle.
>> > ---
>> > bundles/pxe-server | 1 -
>> > 1 file changed, 1 deletion(-)
>> >
>> > diff --git a/bundles/pxe-server b/bundles/pxe-server
>> > index 54389fec..bb820ae8 100644
>> > --- a/bundles/pxe-server
>> > +++ b/bundles/pxe-server
>> > @@ -10,6 +10,5 @@ include(python3-basic)
>> > include(uwsgi)
>> > dhcp
>> > dnsmasq
>> > -grub
>> > ipxe
>> > wol
>> > --
>> > 2.23.0
>> > _______________________________________________
>> > Dev mailing list -- dev(a)lists.clearlinux.org
>> > To unsubscribe send an email to dev-leave(a)lists.clearlinux.org
grub hasn't for some time been the supported method for pxeboot on
Clear Linux so elimate it from the bundle.
---
bundles/pxe-server | 1 -
1 file changed, 1 deletion(-)
diff --git a/bundles/pxe-server b/bundles/pxe-server
index 54389fec..bb820ae8 100644
--- a/bundles/pxe-server
+++ b/bundles/pxe-server
@@ -10,6 +10,5 @@ include(python3-basic)
include(uwsgi)
dhcp
dnsmasq
-grub
ipxe
wol
--
2.23.0
The buildsystem or swig puts them in the wrong dir. CMake is expecting
in LLVM_LIBRARY_OUTPUT_INTDIR (lib64/python<version>), but whatever
generated them put them in lib/python<version>.
Reported at: https://bugs.llvm.org/show_bug.cgi?id=43852
---
scripts/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt
index 1a0ea96ff..a9eae06e2 100644
--- a/scripts/CMakeLists.txt
+++ b/scripts/CMakeLists.txt
@@ -48,7 +48,7 @@ if(NOT LLDB_BUILD_FRAMEWORK)
set(swig_python_subdir python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR})
endif()
- set(SWIG_PYTHON_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/${swig_python_subdir})
+ set(SWIG_PYTHON_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/../lib/${swig_python_subdir})
set(SWIG_INSTALL_DIR lib${LLVM_LIBDIR_SUFFIX})
# Install the LLDB python module
--
2.23.0