Sugar Creation Kit: Difference between revisions
m →Build Your Own Remix -(not included on SCK.DVD): add link to FedoraQA "Creating a Test Day Live Image." |
m →Create/Modify the kickstart file: edits |
||
| Line 330: | Line 330: | ||
<code> | <code> | ||
%include spin-kickstarts/(your).ks | |||
#redefine repo to some local mirror (See below and :[https://fedoraproject.org/wiki/QA/Test_Days/Live_Image#Creating_a_Test_Day_Live_Image]) | |||
%packages | %packages | ||
#provide list of packages (normal, wildcarded, @comps) to be added or removed - dependencies are handled | |||
#packageYouWant | |||
#wildcardedPackagesYouWant* | |||
#@CompYouWant | |||
#-packageYouDontWant | |||
%end | %end | ||
%post | |||
#put any shell commands here | |||
%end | |||
=====More Information===== | =====More Information===== | ||
*In the worst case you can base the whole livecd on Fedora 12 packages with this definition: | |||
# not really rawhide, overriden with F12 'released' repo | |||
repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-12&arch=$basearch | |||
repo --name=updates --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f12&arch=$basearch | |||
* %packages | * %packages | ||
:Add and or remove programs | :Add and or remove programs | ||