cannot upgrade to lastest release v3.2 from 3.0.3.1

Justin Sherrill justin at shiningsilence.com
Sat Nov 3 18:09:03 PDT 2012


On Sat, Nov 3, 2012 at 7:40 PM, Edward M <martinezedward228 at 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



More information about the Users mailing list