ghostbsd-build status

Open development discussions

Moderator: Developer

User avatar
ericbsd
Developer
Posts: 2052
Joined: Mon Nov 19, 2012 7:54 pm

ghostbsd-build status

Post by ericbsd »

Hi everyone,

I have been working on converting ghostbsd-build to build GhostBSD from our repository, a lot of complication have been occurring, but it is now compiling iso for MATE, I did not test XFCE yet.

Note: There will be configuration missing since our ports that were made to configure our setting are not compatible with pkg there is still a lot of work left to do. I invite everyone to test build and reports all problem here.
User avatar
ericbsd
Developer
Posts: 2052
Joined: Mon Nov 19, 2012 7:54 pm

Re: ghostbsd-build status

Post by ericbsd »

LightDM does not start at boot time and looking, and one file gets corrupted when I reinstalled it on the live session LightDM work. There is still have some setting it is going missing, but it is getting there.
User avatar
ericbsd
Developer
Posts: 2052
Joined: Mon Nov 19, 2012 7:54 pm

Re: ghostbsd-build status

Post by ericbsd »

After more investigation the lightdm gets broken after extra setting file that mean somewhere in the cloning compressing and making the iso lightdm get broken.
User avatar
ericbsd
Developer
Posts: 2052
Joined: Mon Nov 19, 2012 7:54 pm

Re: ghostbsd-build status

Post by ericbsd »

The latest commit of GhostBSD on GitHub is now working for MATE, I am testing the old code to configure graphics card to see if the issue is gone.
ASX
Posts: 988
Joined: Wed May 06, 2015 12:46 pm

Re: ghostbsd-build status

Post by ASX »

ericbsd, please give me the few lines of code needed to sync with upstream the https://github.com/GhostBSD/freebsd-ports.

I need to semi-automate this task, because it must be run once only, before to start all four build task.
User avatar
ericbsd
Developer
Posts: 2052
Joined: Mon Nov 19, 2012 7:54 pm

Re: ghostbsd-build status

Post by ericbsd »

there is the code:

Code: Select all

#!/bin/sh

pkg info | grep -q git
if [ ! $? -eq 0 ] ; then
  echo "please install git"
  exit
fi

ls | grep -q freebsd-ports
if [ ! $? -eq 0 ] ; then
  read -p "Do you wish to install freebsd-ports?" yn
  case $yn in
        [Yy]* ) git clone https://github.com/GhostBSD/freebsd-ports.git;;
        [Nn]* ) exit;;
        * ) echo "Please answer yes or no.";;
  esac
fi

cd freebsd-ports
git remote -v | grep -q freebsd
if [ ! $? -eq 0 ] ; then
  git remote add freebsd https://github.com/freebsd/freebsd-ports.git
fi

git fetch freebsd
git checkout master
git merge freebsd/master

git push origin master
User avatar
NevilleGoddard
Developer
Posts: 517
Joined: Thu Dec 22, 2016 10:30 pm
Location: Japan

Re: ghostbsd-build status

Post by NevilleGoddard »

Ericbsd I tried to make an xfce iso and I get this:


Installing package xfce-live-settings
Installing package grub2-efi
Cleaning cachedir
Nothing to do.
#### Running plugins ####
-> common-live-setting
-> common-base-setting
-> adduser
Please add xdg-user-dirs in pkglist
-> gitpkg
Downloading pcbsd tools from GitHub
installing pc-syinstall
-> dm
-> finalize
ln: /sbin/mount_ntfs: File exists
*** Error code 1

Stop.
make: stopped in /usr/home/keef/ghostbsd-build

Any ideas?
User avatar
ericbsd
Developer
Posts: 2052
Joined: Mon Nov 19, 2012 7:54 pm

Re: ghostbsd-build status

Post by ericbsd »

Sorry that I did not reply before, but I have fixed the problem this morning. the problem was in finalize.sh.
User avatar
NevilleGoddard
Developer
Posts: 517
Joined: Thu Dec 22, 2016 10:30 pm
Location: Japan

Re: ghostbsd-build status

Post by NevilleGoddard »

Thanks. Will try again.
User avatar
ericbsd
Developer
Posts: 2052
Joined: Mon Nov 19, 2012 7:54 pm

Re: ghostbsd-build status

Post by ericbsd »

I did an update you might want to do a git pull, slim was not setup.
Post Reply