DragonFly BSD
DragonFly users List (threaded) for 2012-11
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

Re: cannot upgrade to lastest release v3.2 from 3.0.3.1


From: Justin Sherrill <justin@xxxxxxxxxxxxxxxxxx>
Date: Sat, 3 Nov 2012 21:09:03 -0400

On Sat, Nov 3, 2012 at 7:40 PM, Edward M <martinezedward228@gmail.com> wrote:
> Hello,
>
> Can not upgrade from DragonFly 3.0.3.1 to 3.2.1

As other people noted, there isn't a connection between your local
branch and the remote one.  This complete list of commands should get
you there.  (normal caveats apply, etc.)  Anything with a # in the
front of it is a comment.

    cd /usr/src/
    # switch to a different branch
    git checkout DragonFly_RELEASE_3_0
    # delete the 3.2 branch you created locally
    git branch -d DragonFly_RELEASE_3_2
    # create a new 3.2 branch tied to the remote location where it's stored
    git branch DragonFly_RELEASE_3_2 origin/DragonFly_RELEASE_3_2
    # actually pull 3.2 onto your disk
    git checkout DragonFly_RELEASE_3_2
    # rebuild the system
    make buildworld
    make buildkernel
    make installkernel
    make installworld
    make upgrade
    reboot



[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]