Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


modified menuconfig to support Mac OSX
Jack Lange [Tue, 29 Mar 2011 02:36:11 +0000 (22:36 -0400)]
scripts/kconfig/lxdialog/check-lxdialog.sh

index 120d624..d54ef2f 100644 (file)
@@ -19,6 +19,21 @@ ldflags()
                echo '-lcurses'
                exit
        fi
+       $cc -print-file-name=libncursesw.dylib | grep -q /
+       if [ $? -eq 0 ]; then
+               echo '-lncursesw'
+               exit
+       fi
+       $cc -print-file-name=libncurses.dylib | grep -q /
+       if [ $? -eq 0 ]; then
+               echo '-lncurses'
+               exit
+       fi
+       $cc -print-file-name=libcurses.dylib | grep -q /
+       if [ $? -eq 0 ]; then
+               echo '-lcurses'
+               exit
+       fi
        exit 1
 }