Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - atomicdog

Pages: [1] 2 3
1
Talos II / Re: AST disable jumper doesn't disable AST video
« on: December 02, 2024, 04:54:28 pm »
Looks like 0x0C is for fpga-v1.08.rom and 0x0A is fpga-v1.07.rom so should be new enough.


2
Talos II / Re: AST disable jumper doesn't disable AST video
« on: December 02, 2024, 01:37:28 pm »
Support for VGA disable was added in v1.01, https://wiki.raptorcs.com/wiki/Talos_II/Firmware, so your FPGA version might be older then that.

3
Talos II / Re: SMART repeatedly reporting temperature errors for NVMe SSD
« on: December 02, 2024, 01:16:08 pm »
Is there a fan shroud you can adjust to change the airflow?
The 2U supermicro chassis w/HDD Raptor used has an adjustable fan shroud.

4
Applications and Porting / Re: Chromium for Ubuntu
« on: December 01, 2024, 01:58:26 pm »
Env.sh is a script that adds the Depot_tools directory to the PATH variable so the build system can find the programs in there.

You must have done it correctly since you can run the fetch command without needing to use it's full path.

The instructions in the wiki are a bit old now so maybe somethings changed in how chromium is built.
I've looked at fetch.py --help but don't see any way of telling it not to try and download the helper binary files.

5
Applications and Porting / Re: Chromium for Ubuntu
« on: November 30, 2024, 06:29:10 pm »
If fetch downloads source code into the chromium folder you might be able to ignore those errors.
If the build systems is smart enough it should find those programs like git and gn and ninja that are already on your computer.

6
Applications and Porting / Re: Chromium for Ubuntu
« on: November 30, 2024, 04:00:30 pm »
I know a bit about Clang/LLVM but not an expert on Chromium (never used or compiled it). I just thought I'd go down this rabbit hole with you.

As long as Clang compiles I wouldn't worry about the warnings.

It looks like the errors from the fetch command are from it trying to download ppc64le binaries but there aren't any.
Does the Chromium source code still download even with those errors?

7
Applications and Porting / Re: Chromium for Ubuntu
« on: November 28, 2024, 04:58:27 pm »
The 'not found' stuff is basically optional features for the most part.
Since you're doing a fairly generic build of Clang I don't see anything that would stop it from compiling.

8
Most companies go the fabless route since building a fab is so expensive.
With the trouble Intel is having they could be bought and their fab business split off. If that happens maybe it would open up to making OpenPower chips from companies utilizing IP from Solid Silicon and Red Semiconductor.

I don't think RISC-V will make it in the Desktop/server class market. It seems to work well at the Embedded Linux level though, which is a big market and probable better then trying to get into the desktop market anyways.

9
Applications and Porting / Re: Chromium for Ubuntu
« on: November 28, 2024, 02:50:08 pm »
Sorry, you need to change into the llvm-project directory first (or specify which directory in the git checkout command).

Code: [Select]
$ cd $CHROMIUM_DIR
$ git clone https://chromium.googlesource.com/external/github.com/llvm/llvm-project

$ cd llvm-project

$ git checkout llvmorg-20-init-9764-gb81d8e90

10
Applications and Porting / Re: Chromium for Ubuntu
« on: November 27, 2024, 05:06:13 pm »
Replace this:
Code: [Select]
$ cd $CHROMIUM_DIR
$ export CLANG_SVN_REVISION=357692 # Check the above link for the current version
$ svn checkout --force https://llvm.org/svn/llvm-project/llvm/trunk@$CLANG_SVN_REVISION llvm
$ svn checkout --force https://llvm.org/svn/llvm-project/cfe/trunk@$CLANG_SVN_REVISION llvm/tools/clang
$ svn checkout --force https://llvm.org/svn/llvm-project/compiler-rt/trunk@$CLANG_SVN_REVISION llvm/compiler-rt

With:
Code: [Select]
$ cd $CHROMIUM_DIR
$ git clone https://chromium.googlesource.com/external/github.com/llvm/llvm-project
$ git checkout llvmorg-20-init-9764-gb81d8e90

11
Applications and Porting / Re: Chromium for Ubuntu
« on: November 27, 2024, 03:36:47 pm »
No, that's a different section in the wiki, you still need the helper programs in depot_tools.

The sections below LLVM/Clang is what needs to be updated/modified. Replace the SVN checkout commands with git clone and checkout commands

The number is a git tag. It tells git which exact version to checkout/use so you can compile a known good version.
The 'CLANG_SVN_REVISION=35769' number in the wiki will no longer work since LLVM doesn't use SVN anymore.

12
Applications and Porting / Re: Chromium for Ubuntu
« on: November 27, 2024, 12:21:15 pm »
Looks like that tag isn't from the main LLVM git but chromium has their own repo of LLVM.

Here's a recent build log that shows what you can do.

https://chromium.googlesource.com/chromium/src/+/main/docs/updating_clang.md

I think this might work:
Code: [Select]
# git clone https://chromium.googlesource.com/external/github.com/llvm/llvm-project
# git checkout llvmorg-20-init-9764-gb81d8e90

13
Applications and Porting / Re: Chromium for Ubuntu
« on: November 26, 2024, 08:12:13 pm »
LLVM switched from svn to git.

https://github.com/llvm/llvm-project

14
Firmware / Re: Firmware 2.10 for Talos-II and Blackbird available
« on: March 21, 2024, 10:17:00 pm »
Their gitlab repo has more recent changes so I'm guessing that's where the 2.10 version is.

15
Firmware / Re: Firmware 2.10 for Talos-II and Blackbird available
« on: February 28, 2024, 12:29:12 pm »
Are you trying to build a version with debug info?
Looks like the debug Dwarf version isn't being set properly for some reason.

Pages: [1] 2 3