Add all recipes to filesystem.toml, commented out where not default.
Update cookbook Increase VirtualBox RAM, use Intel HDA for audio
This commit is contained in:
parent
dc7f89cb22
commit
88800adc26
2
cookbook
2
cookbook
|
@ -1 +1 @@
|
|||
Subproject commit 287883e58e28ee6596345d82002897ac12574dad
|
||||
Subproject commit 20db74be75c121814528c597a57e72cd94904376
|
|
@ -12,14 +12,19 @@ sysroot = "build/filesystem"
|
|||
#binutils = {}
|
||||
contain = {}
|
||||
coreutils = {}
|
||||
#dash = {}
|
||||
extrautils = {}
|
||||
#games = {}
|
||||
#gcc = {}
|
||||
#gnu-binutils = {}
|
||||
#gnu-make = {}
|
||||
init = {}
|
||||
installer = {}
|
||||
ion = {}
|
||||
#lua = {}
|
||||
netstack = {}
|
||||
netutils = {}
|
||||
#newlib = {}
|
||||
orbdata = {}
|
||||
orbital = {}
|
||||
orbterm = {}
|
||||
|
@ -29,6 +34,7 @@ pkgutils = {}
|
|||
ptyd = {}
|
||||
randd = {}
|
||||
redoxfs = {}
|
||||
#rust = {}
|
||||
smith = {}
|
||||
#sodium = {}
|
||||
userutils = {}
|
||||
|
|
|
@ -15,8 +15,8 @@ virtualbox: build/harddrive.bin
|
|||
echo "Create VM"
|
||||
$(VBM) createvm --name Redox --register
|
||||
echo "Set Configuration"
|
||||
$(VBM) modifyvm Redox --memory 1024
|
||||
$(VBM) modifyvm Redox --vram 16
|
||||
$(VBM) modifyvm Redox --memory 2048
|
||||
$(VBM) modifyvm Redox --vram 32
|
||||
if [ "$(net)" != "no" ]; \
|
||||
then \
|
||||
$(VBM) modifyvm Redox --nic1 nat; \
|
||||
|
@ -31,7 +31,7 @@ virtualbox: build/harddrive.bin
|
|||
$(VBM) modifyvm Redox --keyboard ps2
|
||||
$(VBM) modifyvm Redox --mouse ps2
|
||||
$(VBM) modifyvm Redox --audio $(VB_AUDIO)
|
||||
$(VBM) modifyvm Redox --audiocontroller ac97
|
||||
$(VBM) modifyvm Redox --audiocontroller hda
|
||||
$(VBM) modifyvm Redox --nestedpaging on
|
||||
echo "Create Disk"
|
||||
$(VBM) convertfromraw $< build/harddrive.vdi
|
||||
|
|
Loading…
Reference in a new issue