/***************************************************************************** * Copyright (c) 2009 Ken Gilmer * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Ken Gilmer - initial API and implementation *******************************************************************************/ package org.yocto.bc.bitbake; /** * Constants for commonly used bitbake variables. * @author kgilmer * */ public class BBCommonVars { public final static String WORKDIR = "WORKDIR"; public static final String PN = "PN"; public static final String S = "S"; public static final String PV = "PV"; }